/* [project]/src/app/[lang]/pricing/page.module.css [app-client] (css) */
.page-module__OPOuQa__pricing .page-module__OPOuQa__content {
  background-color: var(--background);
  min-height: calc(100vh - var(--footer));
  flex-direction: column;
  align-items: center;
  padding: 50px 30px 70px;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__planTitle {
  margin-top: 20px;
  margin-bottom: 40px;
  scroll-margin-top: 130px;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__text {
  text-align: center;
  max-width: 800px;
  line-height: 30px;
  display: block;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__text a {
  color: var(--purple);
  text-decoration: none;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__text a:hover {
  color: var(--orange);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__pricingRow {
  font-size: 16px !important;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__loaderText {
  text-align: center;
  margin: 40px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 50px;
  display: flex;
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu {
    background-color: var(--white);
    border-radius: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab {
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin: 10px;
  padding: 20px 35px;
  display: flex;
  position: relative;
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab {
    background-color: initial;
    display: initial;
    border-radius: initial;
    width: auto;
    margin: 0;
    padding: 20px 35px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab.page-module__OPOuQa__activeTab {
  background-color: var(--grey-dark);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab.page-module__OPOuQa__activeTab .page-module__OPOuQa__tabText {
  color: var(--white);
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab.page-module__OPOuQa__activeTab:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab.page-module__OPOuQa__activeTab:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab:hover {
  background-color: var(--purple);
  cursor: pointer;
  transition: background-color .2s;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab:hover .page-module__OPOuQa__tabText {
  color: var(--white);
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab:hover:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab:hover:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__tabMenu .page-module__OPOuQa__tab .page-module__OPOuQa__tabText {
  font-weight: 500;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__popularCard {
  border: 2px solid var(--purple);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__popularBanner {
  color: var(--white);
  text-align: center;
  background: linear-gradient(90deg, #5520ce 0%, #f05941 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__inactive {
  opacity: .5;
  color: var(--grey-light);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__saveBanner {
  background-color: var(--orange);
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  z-index: 2;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  position: absolute;
  top: -14px;
  right: -8px;
  box-shadow: 0 4px 14px rgba(240, 89, 65, .45);
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__saveBanner {
    margin-bottom: 10px;
    padding: 9px 20px;
    font-size: 15px;
    line-height: 17px;
    top: auto;
    bottom: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__saveBanner:after {
    content: "";
    border: 6px solid rgba(0, 0, 0, 0);
    border-top-color: var(--orange);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureHighlight {
  color: var(--grey-dark);
  font-weight: 700;
  font-size: 16px !important;
}

@media (min-width: 1040px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureHighlight {
    font-size: 18px !important;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureHighlightLabel {
  color: var(--grey-dark);
  font-weight: 700 !important;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineRow {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlinePrice {
  color: var(--grey-dark);
  flex-direction: column;
  align-items: center;
  gap: 4px;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSaleRow {
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSaleTag {
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--orange);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineWas {
  opacity: .45;
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineAmount {
  letter-spacing: -2px;
  white-space: nowrap;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 1040px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__headlineAmount {
    font-size: 48px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineCents {
  vertical-align: baseline;
  letter-spacing: 0;
  font-size: .36em;
  font-weight: 600;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineCurrency {
  vertical-align: .42em;
  letter-spacing: 0;
  opacity: .6;
  margin-right: 2px;
  font-size: .42em;
  font-weight: 600;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlinePeriod {
  letter-spacing: 0;
  vertical-align: baseline;
  opacity: .55;
  margin-left: 4px;
  font-size: .28em;
  font-weight: 500;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSaving {
  white-space: nowrap;
  color: var(--green-dark);
  background-color: var(--active-bg);
  border-radius: 50px;
  margin-top: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 1040px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSaving {
    font-size: 13px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSwitch {
  white-space: nowrap;
  cursor: pointer;
  color: var(--white);
  background-color: var(--orange);
  border: none;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: 10px;
  padding: 8px 16px;
  font-family: inherit;
  line-height: 1.25;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  box-shadow: 0 3px 10px rgba(240, 89, 65, .3);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineSwitch:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(240, 89, 65, .42);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__switchSaving {
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 1040px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__switchSaving {
    font-size: 15px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__switchAction {
  opacity: .9;
  font-size: 11px;
  font-weight: 500;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__switchAction:after {
  content: " →";
}

@media (min-width: 1040px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__switchAction {
    font-size: 12px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__headlineNote {
  opacity: .55;
  margin-top: 6px;
  font-size: 12px;
  line-height: 16px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable .page-module__OPOuQa__headlinePrice {
  align-items: flex-start;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__mobileCards {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 50px;
  display: none;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseCard {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 4px 24px rgba(0, 0, 0, .04);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable {
  table-layout: auto;
  width: 100%;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable th, .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td {
  border-bottom: 1px solid var(--table-borders);
  text-align: left;
  padding: 10px;
  line-height: 20px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable th p, .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td p {
  margin-bottom: 20px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable th p:last-child, .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td p:last-child {
  margin-bottom: 0;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable th {
  width: 40%;
  font-weight: 700;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td {
  width: 60%;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td[data-value="yes"] {
  color: rgba(0, 0, 0, 0);
  position: relative;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td[data-value="yes"]:before {
  content: "";
  opacity: 1;
  background-image: url("/images/check.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translate(-50%, -50%);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td.page-module__OPOuQa__inactive[data-value="yes"]:before {
  opacity: .2;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable {
  display: none;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__mobileCards {
  align-items: center;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable button, .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseCard button {
  padding: 13px 18px;
  font-weight: 600;
  font-size: 15px !important;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseCard {
  width: 100%;
  max-width: 100%;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseImage {
  width: 100px;
  height: 100px;
  margin: 10px auto 0;
  display: block;
  overflow: hidden;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseImage img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseImage img {
    transition: none;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseImage:hover img {
  transform: rotate(-4deg)scale(1.04);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable th, .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseTable td {
  padding: 20px;
  font-size: 14px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__popularBanner {
  padding: 20px;
  font-size: 15px;
  position: relative;
  top: 0;
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__mobileCards {
    display: none;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable {
    margin-top: 50px;
    display: block;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0 0 10px 10px;
    width: 1100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 4px 24px rgba(0, 0, 0, .04);
  }

  @media (min-width: 1040px) {
    .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th:first-child, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td:first-child {
      width: 150px;
    }
  }

  .page-module__OPOuQa__pricing tr {
    transition: transform .2s, box-shadow .2s;
  }

  .page-module__OPOuQa__pricing tr:hover {
    border-radius: 10px;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .page-module__OPOuQa__pricing tr:nth-child(2n) td {
    background-color: var(--table-row-bg);
  }

  .page-module__OPOuQa__pricing tr:nth-child(2n) td td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .page-module__OPOuQa__pricing tr:nth-child(2n) td td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .page-module__OPOuQa__pricing tbody tr:last-child {
    box-shadow: none;
    transform: none;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td {
    max-width: calc((100% - 150px) / (number_of_columns - 1));
    white-space: wrap;
    overflow: hidden;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__licenseImage {
    margin: 0 auto;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__imageStrip {
    width: 1100px;
    margin-top: 50px;
    display: grid;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__imageCell {
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__imageCell:nth-child(2) {
    border-top-left-radius: 10px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__imageCell:last-child {
    border-top-right-radius: 10px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th {
    text-align: center;
    font-weight: 700;
    background-color: var(--background) !important;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th:first-child {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td {
    background-color: var(--white);
    vertical-align: middle;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 22px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th:first-child, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td:first-child {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th p, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td p {
    margin-bottom: 20px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th p:last-child, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td p:last-child {
    margin-bottom: 0;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable th.page-module__OPOuQa__inactive, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td.page-module__OPOuQa__inactive {
    color: var(--grey-light);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td {
    text-align: center;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td:first-child {
    text-align: left;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td[data-value="yes"] {
    color: rgba(0, 0, 0, 0);
    position: relative;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td[data-value="yes"]:before {
    content: "";
    opacity: 1;
    background-image: url("/images/check.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td.page-module__OPOuQa__inactive[data-value="yes"]:before {
    opacity: .2;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable td[data-value="yes"]:before {
    content: "-";
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__emptyRow {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__relativeRow {
    position: relative;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowHorizontal, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularStrip {
    border-left: 3px solid var(--purple);
    border-right: 3px solid var(--orange);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowHorizontal .page-module__OPOuQa__popularBanner, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularStrip .page-module__OPOuQa__popularBanner {
    height: 50px;
    color: var(--white);
    background: linear-gradient(90deg, #5520ce 0%, #f05941 100%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    position: absolute;
    top: -50px;
    left: -3px;
    right: -3px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowHorizontal.page-module__OPOuQa__inactive, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularStrip.page-module__OPOuQa__inactive {
    border: 1px solid var(--table-borders);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowHorizontal.page-module__OPOuQa__inactive .page-module__OPOuQa__popularBanner, .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularStrip.page-module__OPOuQa__inactive .page-module__OPOuQa__popularBanner {
    opacity: .3;
    left: -1px;
    right: -1px;
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowBottom {
    border-left: 3px solid var(--purple);
    border-right: 3px solid var(--orange);
    border-bottom: 3px solid var(--purple);
  }

  .page-module__OPOuQa__pricing .page-module__OPOuQa__desktopTable .page-module__OPOuQa__popularRowBottom.page-module__OPOuQa__emptyRow {
    border: 0;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__subContent {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 80px;
  padding: 0 20px;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__subContent .page-module__OPOuQa__text {
  margin-bottom: 50px;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featuresHighlights {
  background: var(--white);
  border-radius: 16px;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 40px 30px;
  display: grid;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featuresHighlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 40px;
  }
}

@media (min-width: 1200px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featuresHighlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 50px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureItem {
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureItem {
    padding: 24px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureIcon {
  background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureIcon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureIcon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureIcon svg {
    width: 32px;
    height: 32px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureText {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureTitle {
  color: var(--grey-dark);
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureTitle {
    font-size: 18px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__featureDesc {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__featureDesc {
    font-size: 14px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__demoCta {
  text-align: center;
  background: var(--background);
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 50px;
  padding: 40px 30px;
  display: flex;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__demoCta {
    padding: 50px 60px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__demoTitle {
  color: var(--grey-dark);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__demoTitle {
    font-size: 24px;
  }
}

.page-module__OPOuQa__pricing .page-module__OPOuQa__demoText {
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-module__OPOuQa__pricing .page-module__OPOuQa__demoText {
    font-size: 16px;
  }
}

.page-module__OPOuQa__bannerSlot {
  justify-content: center;
  width: 100%;
  display: flex;
}

/* [project]/src/components/reveal/style.module.css [app-client] (css) */
.style-module__CcUCnq__reveal {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), translate .9s cubic-bezier(.22, 1, .36, 1), scale .9s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.style-module__CcUCnq__reveal[data-state="out"], .style-module__CcUCnq__reveal[data-state="out-top"] {
  opacity: 0;
  translate: var(--reveal-x) var(--reveal-y);
  scale: var(--reveal-scale);
  transition-duration: 0s;
  transition-delay: 0s;
}

.style-module__CcUCnq__reveal[data-state="entering"] {
  transition-property: opacity, translate, scale !important;
  transition-duration: .8s, .9s, .9s !important;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
  transition-delay: var(--reveal-delay, 0s) !important;
}

.style-module__CcUCnq__reveal[data-state="out-top"] {
  translate: var(--reveal-x) calc(var(--reveal-y) * -1);
}

.style-module__CcUCnq__left {
  --reveal-x: -80px;
}

.style-module__CcUCnq__right {
  --reveal-x: 80px;
}

.style-module__CcUCnq__bottom {
  --reveal-y: 60px;
}

.style-module__CcUCnq__top {
  --reveal-y: -60px;
}

.style-module__CcUCnq__zoom {
  --reveal-scale: .85;
}

.style-module__CcUCnq__fade {
  --reveal-y: 0px;
}

@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  .style-module__CcUCnq__reveal:not([data-state]) {
    opacity: 0;
    translate: var(--reveal-x) var(--reveal-y);
    scale: var(--reveal-scale);
    transition: none;
    animation: 0s 4s forwards style-module__CcUCnq__revealFallback;
  }
}

@keyframes style-module__CcUCnq__revealFallback {
  to {
    opacity: 1;
    translate: none;
    scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .style-module__CcUCnq__reveal {
    transition: none;
  }
}

/* [project]/src/components/subHeader/style.module.css [app-client] (css) */
.style-module__WE1EEW__subHeaderContainer {
  text-align: center;
  width: 100%;
  min-height: 300px;
  color: var(--white);
  text-shadow: 4px 4px 4px var(--shadow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  display: flex;
  position: relative;
}

@media (min-width: 1040px) {
  .style-module__WE1EEW__subHeaderContainer {
    min-height: 200px;
  }
}

.style-module__WE1EEW__imageContainer {
  width: 100%;
  min-height: 305px;
  position: absolute;
}

@media (min-width: 1040px) {
  .style-module__WE1EEW__imageContainer {
    min-height: 215px;
  }
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__subHeaderImage {
  object-fit: cover;
  z-index: -1;
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeBottom {
  width: 100%;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform: rotate(180deg);
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeBottom .style-module__WE1EEW__svgShape {
  width: calc(150% + 1.3px);
  height: 15px;
  display: block;
  position: relative;
}

@media (min-width: 1040px) {
  .style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeBottom .style-module__WE1EEW__svgShape {
    width: calc(150% + 1.3px);
    height: 35px;
  }
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeBottom .style-module__WE1EEW__shapeFill {
  fill: var(--white);
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeBottom .style-module__WE1EEW__shapeFill.style-module__WE1EEW__grey {
  fill: var(--background);
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeTop {
  transform-origin: top;
  width: 100%;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeTop .style-module__WE1EEW__svgShape {
  width: calc(150% + 1.3px);
  height: 15px;
  display: block;
  position: relative;
}

@media (min-width: 1040px) {
  .style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeTop .style-module__WE1EEW__svgShape {
    width: calc(150% + 1.3px);
    height: 35px;
  }
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeTop .style-module__WE1EEW__shapeFill {
  fill: var(--white);
}

.style-module__WE1EEW__imageContainer .style-module__WE1EEW__waveSvgShapeTop .style-module__WE1EEW__shapeFill.style-module__WE1EEW__grey {
  fill: var(--background);
}

.style-module__WE1EEW__subHeaderDefaultText {
  z-index: 2;
  padding: 0 50px;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  position: relative;
}

@media (min-width: 1040px) {
  .style-module__WE1EEW__subHeaderDefaultText {
    font-size: 30px;
    line-height: 40px;
  }
}

.style-module__WE1EEW__subHeaderLineTop {
  background-color: var(--background);
  width: 2px;
  height: 48px;
  margin-left: -1px;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.style-module__WE1EEW__subHeaderLineBottom {
  background-color: var(--purple);
  width: 2px;
  height: 48px;
  margin-left: -1px;
  position: absolute;
  bottom: -48px;
  left: 50%;
}

/* [project]/src/components/pageHeader/style.module.css [app-client] (css) */
.style-module__-RtKZW__mediaBanner {
  width: 100%;
  display: block;
  position: relative;
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader {
  width: 100%;
  height: calc(var(--imageBannerHeight) + 20vh);
  text-align: center;
  background-color: var(--grey);
  background: linear-gradient(87deg, #1a1b23 0%, #3a3d52 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px 0;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader {
    height: var(--imageBannerHeight);
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__image {
  z-index: 1;
  width: 100%;
  height: calc(var(--imageBannerHeight) + 20vh);
  background-color: var(--grey);
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__image {
    height: var(--imageBannerHeight);
  }
}

@media (min-width: 1400px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__image {
    object-position: top;
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__imageBgOverlay {
  background: var(--grey-dark);
  z-index: 2;
  opacity: .7;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__imageBg {
  z-index: 3;
  opacity: .3;
  pointer-events: none;
  background: linear-gradient(167deg, #460955 0%, rgba(132, 14, 148, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__title {
  color: var(--white);
  z-index: 4;
  text-align: center;
  text-shadow: 2px 2px 4px var(--grey-dark);
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__title {
    font-size: 40px;
    line-height: 50px;
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__text {
  color: var(--white);
  z-index: 5;
  text-align: center;
  text-shadow: 2px 2px 4px var(--grey-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__text {
    font-size: 16px;
    line-height: 40px;
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow {
  display: flex;
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow .style-module__-RtKZW__phoneBlock {
  display: none;
}

@media (min-width: 1040px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow .style-module__-RtKZW__phoneBlock {
    z-index: 5;
    border-radius: 10px;
    width: 280px;
    display: block;
    position: relative;
    box-shadow: -10px 10px rgba(0, 0, 0, .3);
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow > div {
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  display: flex;
}

@media (min-width: 1040px) {
  .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow.style-module__-RtKZW__imageAlignment .style-module__-RtKZW__text, .style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__bannerRow.style-module__-RtKZW__imageAlignment .style-module__-RtKZW__title {
    text-align: left;
    padding-left: 70px;
  }
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__waveSvgShape {
  z-index: 4;
  width: 100%;
  line-height: 0;
  position: absolute;
  bottom: -.5px;
  left: 0;
  overflow: hidden;
  transform: rotate(180deg);
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__svgShape {
  width: calc(140% + 1.3px);
  height: 35px;
  display: block;
  position: relative;
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__shapeFill {
  fill: var(--white);
}

.style-module__-RtKZW__mediaBanner .style-module__-RtKZW__imageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__shapeFill.style-module__-RtKZW__grey {
  fill: var(--background);
}

.style-module__-RtKZW__pageHeader {
  background: var(--grey-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 22vh;
  padding: 0 20px;
  display: flex;
  position: relative;
}

@media (min-width: 1200px) {
  .style-module__-RtKZW__pageHeader {
    height: 17vh;
  }
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__title {
  color: var(--white);
  z-index: 2;
  text-align: center;
  text-shadow: 4px 4px 4px var(--shadow);
  font-size: 25px;
  font-weight: 500;
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .style-module__-RtKZW__pageHeader .style-module__-RtKZW__title {
    font-size: 30px;
  }
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__subtitle {
  color: var(--white);
  z-index: 2;
  text-align: center;
  margin-top: 50px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 30px;
  display: block;
  position: relative;
}

@media (min-width: 1040px) {
  .style-module__-RtKZW__pageHeader .style-module__-RtKZW__subtitle {
    max-width: 500px;
  }
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__waveSvgShape {
  width: 100%;
  line-height: 0;
  position: absolute;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  transform: rotate(180deg);
}

@media (min-width: 1040px) {
  .style-module__-RtKZW__pageHeader .style-module__-RtKZW__waveSvgShape {
    bottom: 0;
  }
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__svgShape {
  width: calc(130% + 1.3px);
  height: 35px;
  display: block;
  position: relative;
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__shapeFill {
  fill: var(--white);
}

.style-module__-RtKZW__pageHeader .style-module__-RtKZW__waveSvgShape .style-module__-RtKZW__shapeFill.style-module__-RtKZW__grey {
  fill: var(--background);
}

/* [project]/src/components/reviewBlock/style.module.css [app-client] (css) */
.style-module__B3c8wG__showOnDesktop {
  display: none;
}

@media (min-width: 1040px) {
  .style-module__B3c8wG__showOnDesktop {
    display: block;
  }

  .style-module__B3c8wG__showOnMobile {
    display: none;
  }
}

.style-module__B3c8wG__reviewSection {
  background-color: var(--white);
  flex-direction: column;
  align-items: center;
  padding: 24px;
  display: flex;
}

.style-module__B3c8wG__appReviewContainerHorizontal {
  color: var(--white);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  justify-content: center;
  padding-bottom: 6px;
  display: flex;
  position: relative;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__topLineWhite {
  background-color: var(--white);
  width: 2px;
  height: 27px;
  position: absolute;
  top: 0;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__topLinePurple {
  background-color: var(--purple);
  width: 2px;
  height: 48px;
  position: absolute;
  top: -48px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__bottomLineWhite {
  background-color: var(--white);
  width: 2px;
  height: 27px;
  position: absolute;
  bottom: 6px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__bottomLinePurple {
  background-color: var(--purple);
  width: 2px;
  height: 70px;
  position: absolute;
  bottom: -64px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__bgImage {
  border-radius: 10px;
  flex-direction: row;
  justify-content: space-between;
  width: 1040px;
  height: 300px;
  display: flex;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__leftCol {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__rightCol {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__text1 {
  text-transform: uppercase;
  background-color: var(--orange);
  border-radius: 5px;
  margin-bottom: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__text2 {
  text-transform: uppercase;
  background-color: var(--orange);
  border-radius: 5px;
  margin-bottom: 22px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__text3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__text4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__text5 {
  margin-bottom: 13px;
  font-size: 60px;
  font-weight: 700;
  line-height: 40px;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__block1 {
  display: flex;
}

.style-module__B3c8wG__appReviewContainerHorizontal .style-module__B3c8wG__block1 .style-module__B3c8wG__item {
  margin-left: 2.88px;
  margin-right: 2.88px;
}

.style-module__B3c8wG__appReviewContainerVertical {
  color: var(--white);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  justify-content: center;
  display: flex;
  position: relative;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__topLinePurple {
  background-color: var(--purple);
  width: 2px;
  height: 48px;
  position: absolute;
  top: -48px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__bottomLinePurple {
  background-color: var(--purple);
  width: 2px;
  height: 48px;
  position: absolute;
  bottom: -48px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__bgImage {
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 327px;
  height: 592px;
  display: flex;
}

@media (min-width: 768px) {
  .style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__bgImage {
    width: 280px;
    height: 520px;
  }
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__topRow, .style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__bottomRpw {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__text1 {
  text-transform: uppercase;
  background-color: var(--orange);
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  margin-bottom: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__text2 {
  text-transform: uppercase;
  background-color: var(--orange);
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 14px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__text3 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__text4 {
  margin-top: -4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__text5 {
  margin-bottom: 13px;
  font-size: 60px;
  font-weight: 700;
  line-height: 40px;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__block1 {
  margin-bottom: 22px;
  display: flex;
}

.style-module__B3c8wG__appReviewContainerVertical .style-module__B3c8wG__block1 .style-module__B3c8wG__item {
  margin-left: 2.88px;
  margin-right: 2.88px;
}

/* [project]/src/components/reviewBlock/reviewCards/style.module.css [app-client] (css) */
.style-module__KTNRRW__wrapper {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.style-module__KTNRRW__sectionTitle {
  margin-top: 96px;
  margin-bottom: 48px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

@media (min-width: 1040px) {
  .style-module__KTNRRW__sectionTitle {
    font-size: 30px;
    line-height: 40px;
  }
}

.style-module__KTNRRW__reviewContainer {
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  display: grid;
}

@media (min-width: 576px) {
  .style-module__KTNRRW__reviewContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .style-module__KTNRRW__reviewContainer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.style-module__KTNRRW__cardSlot {
  flex-direction: column;
  display: flex;
}

.style-module__KTNRRW__cardSlot > .style-module__KTNRRW__card {
  flex: 1;
}

.style-module__KTNRRW__card {
  background-color: var(--white);
  border: 1px solid var(--grey-light);
  text-align: left;
  border-radius: 12px;
  flex-direction: column;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.style-module__KTNRRW__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.style-module__KTNRRW__stars {
  gap: 2px;
  margin-bottom: 12px;
  display: flex;
}

.style-module__KTNRRW__title {
  color: var(--grey-dark);
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.style-module__KTNRRW__content {
  color: var(--grey);
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.style-module__KTNRRW__author {
  color: var(--grey);
  margin-top: auto;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}

/* [project]/src/components/oneLicenseBanner/style.module.css [app-client] (css) */
.style-module__AjCTma__oneLicenseBanner {
  text-align: center;
  width: 100%;
  max-width: 1100px;
  color: var(--grey);
  background: linear-gradient(120deg, #f2edff 0%, #fdf0ec 100%);
  border: 1px solid rgba(89, 31, 226, .1);
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  padding: 30px 25px;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 4px 24px rgba(0, 0, 0, .04);
}

@media (min-width: 1040px) {
  .style-module__AjCTma__oneLicenseBanner {
    padding: 40px;
  }
}

.style-module__AjCTma__oneLicenseTitle {
  color: var(--grey-dark);
  letter-spacing: -.5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__oneLicenseTitle {
    font-size: 40px;
  }
}

.style-module__AjCTma__titleAccent {
  background: linear-gradient(100deg, var(--purple) 0%, var(--orange) 100%);
  color: rgba(0, 0, 0, 0);
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 320px 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.style-module__AjCTma__oneLicenseText {
  opacity: .75;
  max-width: 620px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__oneLicenseText {
    font-size: 16px;
    line-height: 26px;
  }
}

.style-module__AjCTma__oneLicenseHighlights {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

@media (min-width: 768px) {
  .style-module__AjCTma__oneLicenseHighlights {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.style-module__AjCTma__highlight {
  background-color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(89, 31, 226, .1);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 22px 20px;
  display: flex;
}

@media (min-width: 768px) {
  .style-module__AjCTma__highlight {
    flex: 1;
    max-width: 380px;
  }
}

.style-module__AjCTma__highlightTitle {
  color: var(--grey-dark);
  letter-spacing: -.5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__highlightTitle {
    font-size: 28px;
  }
}

.style-module__AjCTma__highlightText {
  opacity: .65;
  font-size: 14px;
}

.style-module__AjCTma__oneLicenseStrong {
  color: var(--grey-dark);
  font-weight: 700;
}

.style-module__AjCTma__platformList {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 28px;
  display: flex;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__platformList {
    gap: 55px;
  }
}

.style-module__AjCTma__platform {
  color: var(--grey-dark);
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.style-module__AjCTma__platformLogo {
  opacity: .85;
  width: 38px;
  height: 38px;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__platformLogo {
    width: 46px;
    height: 46px;
  }
}

.style-module__AjCTma__platformLabel {
  opacity: .7;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__platformLabel {
    font-size: 16px;
  }
}

.style-module__AjCTma__oneLicenseAction {
  margin-top: 30px;
}

.style-module__AjCTma__oneLicenseAction div {
  font-size: 16px;
}

@media (min-width: 1040px) {
  .style-module__AjCTma__oneLicenseAction div {
    font-size: 17px;
  }
}

/* [project]/src/components/toast/style.module.css [app-client] (css) */
.style-module__oRPexW__toastBody {
  font-size: 14px;
  font-weight: 700;
}

.style-module__oRPexW__toastTitle {
  color: var(--grey) !important;
}

.style-module__oRPexW__toastDescription {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--grey) !important;
}

.style-module__oRPexW__iconCloseMargin {
  align-self: baseline;
  margin-top: 5px;
}

.style-module__oRPexW__iconLoading {
  width: 15px;
  animation: 1s linear infinite style-module__oRPexW__rotating;
}

.style-module__oRPexW__iconClose {
  cursor: pointer;
  width: 15px;
}

@keyframes style-module__oRPexW__rotating {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=src_0-8uhps._.css.map*/