@import url("assets/images/icon/icon.css");
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
iframe,
ol,
ul,
li,
form,
label,
i,
footer,
header,
menu,
nav,
a,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
video,
canvas,
section,
applet,
object,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
hgroup,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
dl,
dt,
dd,
fieldset,
legend,
article,
aside,
details,
embed,
figure,
figcaption,
output,
section,
summary,
time,
mark,
audio,
center,
ruby {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
label {
  display: block;
}
html {
  scroll-behavior: smooth;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
strong {
  font-weight: 600;
}
* {
  outline: none;
  box-sizing: border-box;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a {
  display: inline-block;
  text-decoration: none;
  font: inherit;
}
button {
  cursor: pointer;
  position: relative;
}
input,
button,
select,
textarea {
  display: inline-block;
  padding: 0;
  border: 0;
  font: inherit;
}
img {
  max-width: 100%;
  max-height: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  font-family: "Inter", sans-serif;
  background: #EFF2F5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;


}
.G-flex {
  display: flex;
}
.G-inline-flex {
  display: inline-flex;
}
.G-center {
  justify-content: center;
  align-items: center;
  display: flex;
}
.G-column-center {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.G-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.G-justify-center {
  justify-content: center;
  display: flex;
}
.G-justify-between {
  justify-content: space-between;
  display: flex;
}
.G-justify-around {
  justify-content: space-around;
  display: flex;
}
.G-justify-end {
  justify-content: flex-end;
  display: flex;
}
.G-justify-start {
  justify-content: flex-start;
  display: flex;
}
.G-align-center {
  align-items: center;
  display: flex;
}
.G-align-start {
  align-items: flex-start;
  display: flex;
}
.G-align-end {
  align-items: flex-end;
  display: flex;
}
.G-flex-column {
  flex-direction: column;
  display: flex;
}
.G-flex-wrap {
  flex-wrap: wrap;
  display: flex;
}
/* GENERAL STYLE */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
main {
  flex: 1 1 auto;
}
.container {
  max-width: 1188px;
  width: 100%;
  padding: 0 14px;
  margin: 0 auto;
}
.text-wrap {
  display: block;
}
.desktop-text-wrap {
  display: block;
}
.text-blue {
  color: #1252d3;
}
.text-blue-desktop {
  color: #1252d3;
}


.btn-primary {
  background: #1252d3;
  padding: 4px 24px 4px 4px;
  border-radius: 6px;
  gap: 12px;
  max-width: max-content;
  min-width: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #eff2f5;
  white-space: nowrap;
}
.btn-primary span{
  transition: .4s;
}
.btn-primary:hover .btn-primary-icon {
 transform: translateX(175px) rotate(180deg);
}
.btn-primary:hover span{
 transform: translateX(-35px) ;
}
.btn-primary-icon {
  background: linear-gradient(
    143.94deg,
    rgba(255, 255, 255, 0.2) 0.14%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  transition: .4s;
}
.btn-primary-icon i {
  font-size: 12px;
  background: #eff2f5;
  opacity: 0.6;
}

.btn-primary-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    143.94deg,
    rgba(255, 255, 255, 0.2) 0.14%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}


.btn-big-primary {
  background: #1252d3;
  padding: 4px 24px 4px 4px;
  border-radius: 6px;
  gap: 12px;
  max-width: max-content;
  min-width: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #eff2f5;
  white-space: nowrap;
}
.btn-big-primary span{
  transition: .4s;
}
.btn-big-primary:hover .btn-big-primary-icon {
 transform: translateX(230px) rotate(180deg);
}
.btn-big-primary:hover span{
 transform: translateX(-35px) ;
}
.btn-big-primary-icon {
  background: linear-gradient(
    143.94deg,
    rgba(255, 255, 255, 0.2) 0.14%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  transition: .4s;
}
.btn-big-primary-icon i {
  font-size: 12px;
  background: #eff2f5;
  opacity: 0.6;
}

.btn-big-primary-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    143.94deg,
    rgba(255, 255, 255, 0.2) 0.14%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}


.partners-mobile-media {
  display: none;
}
.fade-left,
.fade-right,
.fade-top,
.fade-bottom {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform, opacity;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateX(60px);
}
.fade-top {
  transform: translateY(-60px);
}
.fade-bottom {
  transform: translateY(60px);
}
.block-cnt {
  margin-top: 34px;
}
.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#formats,
#how-it-works,
#benefits,
#quality,
#faq {
  scroll-margin-top: 120px;
}
.hero-sction {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.hero-sction::after{
  content: '';
     height: 100px;
  width: 100%;
    background: #ffffff;
 position: absolute;
 left: 0;
 top: 0;
 z-index: 2;

}
.hero-description {
  padding: 70px 0 0;
  max-width: 455px;
  width: 100%;
}
.hero-description h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  color: #1f1f1f;
}


.hero-description p {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #1f1f1f;
  margin-top: 24px;
}
.hero-note {
  color: #464551 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-top: 16px !important;
}
.hero-btn {
  margin-top: 40px;
}
.hero-microtrust {
  margin-top: 14px;
  color: #464551;
  font-size: 13px;
  line-height: 18px;
}
.hero-body {
  justify-content: space-between;
  gap: 20px;
  margin-top: 100px;
}

.hero-swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide-main {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  border-radius: 18px;
  object-fit: contain;
}
.hero-swiper-slide picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.hero-slide-lamp {
  position: absolute;
  max-width: 160px;
  width: 100%;
  top: -61px;
  left: 200px;
  transform: rotate(16deg);
}
.hero-slide-book {
  position: absolute;
  max-width: 426px;
  width: 100%;
  z-index: 3;
  height: 426px;
  max-height: 426px;
  top: -60px;
  left: -140px;
}
.hero-slide-gif {
  position: absolute;
  bottom: -75px;
  max-width: 353px;
  width: 100%;
  left: 101px;
}
.hero-slide-cursor {
  max-width: 56px;
  width: 100%;
  position: absolute;
  left: 284px;
  top: 192px;
}
.hero-pagination {
  display: none !important;
}


.splide{
  max-width: 555px;
  width: 100%;
    overflow: visible;
  padding-top: 110px;     
  padding-bottom: 110px;  

}


.splide__track{
  overflow: unset !important;
}

.splide__arrow{
  display: none !important;
}


.splide__pagination {
  display: none !important;
  position: initial !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  padding: 0 !important;
}

.splide__pagination__page {
  width: 6px !important;
  height: 6px !important;
  background: #f0f0f0 !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  transition: 0.3s;
  margin: 0 !important;
}

.splide__pagination__page.is-active {
  width: 18px !important;
  height: 8px !important;
  background: #1252d3 !important;
  border-radius: 8px !important;
}
.splide__pagination__page.is-active:nth-child(1){
     margin-left: 4px !important;
}


.splide__pagination li{
  line-height: 0 !important;
}

.universal-section {
  margin-top: 90px;
  position: relative;
  z-index: 2;
}
.universal-decor {
  position: absolute;
  bottom: -250px;
  right: 0;
  max-width: 370px;
  width: 100%;
}

.section-title {
  font-weight: 600;
  font-size: 44px;
  line-height: 50px;
  text-align: center;
  color: #1f1f1f;
  letter-spacing: 0;
}
.universal-items {
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.universal-star--one {
  max-width: 146px;
  width: 100%;
  position: absolute;
  bottom: -70px;
  left: -70px;
  z-index: -1;
}
.universal-star--two {
  max-width: 146px;
  width: 100%;
  position: absolute;
  top: -65px;
  right: -65px;
  z-index: -1;
}

.universal-item {
  flex: 1 1 49%;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 15px;
  gap: 28px;
  height: max-content;
  transition: 0.4s;
  cursor: pointer;
}
.universal-item:hover {
  transform: scale(1.03);
}
.universal-item-img {
  max-width: 198px;
  width: 100%;
  align-items: center;
}
.universal-item-img img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
}
.universal-item-texts {
  max-width: 257px;
  width: 100%;
}
.universal-item-texts h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #1252d3;
}
.universal-item-texts p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #464551;
}
.universal-item:nth-child(4) {
  margin-top: 0;
}
.universal-small-item-img {
  max-width: 100px;
  width: 100%;
}
.universal-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #464551;
}
.partners-block {
  margin-top: 73px;
}
.partners-block-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.partners-items {
  margin: 30px auto 0;
  max-width: 725px;
  width: 100%;
  row-gap: 10px;
  column-gap: 80px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.partners-item {
  opacity: 0.6;
}
.commercial-proof-items {
  max-width: 850px;
  column-gap: 12px;
  row-gap: 12px;
}
.commercial-proof-chip {
  background: #ffffff;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  color: #464551;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 10px 16px;
}

.personal-section {
  margin-top: 130px;
  padding: 0 0 140px 0;
}

.personal-column {
  gap: 54px;
}
.personal-columns {
  gap: 36px;
}
.personal-body {
  position: relative;
  z-index: 2;
}
.personal-decor {
  position: absolute;
  bottom: -270px;
  left: 77px;
  max-width: 316px;
}
.orange-personal-btn {
  background: #ff6a0a;
}
.blueviolet-personal-btn {
  background: #eb49a7;
}

.personal-img-item {
  max-width: 550px;
  width: 100%;
}
.proposal-export-preview {
  position: relative;
}
.proposal-export-preview img {
  display: block;
  width: 100%;
  height: auto;
}
.proposal-slide-label {
  position: absolute;
  left: 13.6%;
  width: 23%;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(31, 31, 31, 0.18);
  pointer-events: none;
  overflow: hidden;
  min-height: 9.8%;
}
.proposal-slide-label strong,
.proposal-slide-label span {
  display: block;
}
.proposal-slide-label strong {
  font-size: clamp(7px, 0.92vw, 12px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 82%;
}
.proposal-slide-label span {
  font-size: clamp(5px, 0.65vw, 8px);
  font-weight: 500;
  line-height: 1.1;
  margin-top: 2px;
  opacity: 0.92;
  max-width: 78%;
}
.proposal-mini-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3px, 0.42vw, 5px);
  margin-top: clamp(4px, 0.55vw, 8px);
  width: 78%;
  opacity: 0.96;
}
.proposal-mini-layout i,
.proposal-mini-layout b {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  min-width: 0;
}
.proposal-mini-layout i:first-child {
  grid-column: 1 / -1;
  height: clamp(3px, 0.36vw, 5px);
  width: 92%;
}
.proposal-mini-layout i:nth-child(2) {
  height: clamp(3px, 0.32vw, 4px);
  width: 68%;
}
.proposal-mini-layout b {
  width: clamp(12px, 1.65vw, 22px);
  height: clamp(12px, 1.65vw, 22px);
  align-self: end;
  opacity: 0.62;
}
.proposal-mini-layout--cover b {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
}
.proposal-mini-layout--problem b {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}
.proposal-mini-layout--solution {
  width: 72%;
}
.proposal-mini-layout--solution b {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}
.proposal-mini-layout--price {
  grid-template-columns: 1fr 1fr;
  width: 82%;
}
.proposal-mini-layout--price i:first-child,
.proposal-mini-layout--price i:nth-child(2) {
  grid-column: auto;
  width: 100%;
  height: clamp(10px, 1.45vw, 19px);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}
.proposal-mini-layout--price b {
  grid-column: 1 / -1;
  width: 72%;
  height: clamp(3px, 0.32vw, 4px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}
.proposal-slide-label--one {
  top: 25.4%;
}
.proposal-slide-label--two {
  top: 40.7%;
}
.proposal-slide-label--three {
  top: 71.3%;
}
.proposal-slide-label--four {
  top: 83.5%;
}
.personal-item-tag {
  padding: 5px 10px;
  border-radius: 999px;
  gap: 7px;
  max-width: max-content;
}
.blue-item-tag {
  background: #dbe5fe;
}
.blueviolet-item-tag {
  background: #fce7f5;
}
.orange-item-tag {
  background: #ffecd3;
}
.personal-item-tag i {
  font-size: 12px;
}

.personal-item-tag p {
  font-weight: 700;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.blue-item-tag p {
  color: #1e2caf;
}
.blue-item-tag i {
  background: #1e2caf;
}
.blueviolet-item-tag i {
  background: #921653;
}
.blueviolet-item-tag p {
  color: #921653;
}

.orange-item-tag p {
  color: #a34406;
}
.orange-item-tag i {
  background: #a34406;
}
.personal-text-item h3 {
  margin-top: 18px;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: #1f1f1f;
}
.personal-text-item ul {
  margin-top: 18px;
  margin-bottom: 18px;
}

.personal-text-item ul li {
  color: #464551;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  margin-left: 20px;
  position: relative;
  z-index: 2;
}

.personal-text-item ul li::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 7px;
  width: 4px;
  height: 4px;
  background: #464551;
  border-radius: 50%;
}

.reviews-section {
  padding: 74px 0 76px 0;
  background: #ffffff;
  border-radius: 15px 15px 0 0;
  position: relative;
  z-index: 3;
}
.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #464551;
  font-size: 17px;
  line-height: 25px;
  text-align: center;
}
.benefits-visual-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: stretch;
}
.benefits-demo {
  background: #f8f9fb;
  border: 1px solid #e6edf7;
  border-radius: 15px;
  padding: 24px;
  min-height: 470px;
  position: relative;
  overflow: hidden;
}
.benefits-demo::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border-radius: 44px;
  background: #dbe5fe;
  transform: rotate(18deg);
  opacity: 0.72;
}
.benefits-demo-top {
  justify-content: flex-start;
  gap: 8px;
  color: #1252d3;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  z-index: 2;
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7deea;
}
.demo-dot:first-child {
  background: #ff8a94;
}
.demo-dot:nth-child(2) {
  background: #ffc278;
}
.demo-dot:nth-child(3) {
  background: #91e326;
}
.demo-prompt {
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  margin-top: 18px;
  padding: 18px;
  position: relative;
  z-index: 2;
}
.demo-prompt span {
  color: #1252d3;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.demo-prompt p {
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}
.demo-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.demo-slide-card {
  border-radius: 12px;
  color: #ffffff;
  min-height: 128px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.demo-slide-card span {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  opacity: 0.82;
}
.demo-slide-card strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.demo-slide-card p {
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  margin-top: 6px;
  opacity: 0.88;
}
.demo-slide-card--blue {
  background: #83a2f7;
}
.demo-slide-card--orange {
  background: #ffbd8d;
}
.demo-slide-card--pink {
  background: #fb858f;
}
.demo-slide-card--green {
  background: #91e326;
}
.benefits-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.benefit-point {
  min-height: 140px;
}
.benefit-point > span {
  color: #1252d3;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}
.benefit-point h3 {
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-top: 14px;
}
.benefit-point p {
  color: #464551;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}
.reviews-author-avatar {
  max-width: 44px;
  width: 100%;
}
.reviews-author-avatar img {
  border-radius: 50%;
  object-fit: cover;
}

.swiper-pagination {
  display: flex;
  position: initial !important;
  margin-top: 21px;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
}
.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: #f0f0f0 !important;

  opacity: 1 !important;
  margin: 0 !important;
  transition: 0.3s;
  border-radius: 8px !important;
}
.swiper-pagination-bullet-active {
  width: 18px !important;
  height: 8px !important;
  background: #1252d3 !important;
  opacity: 1 !important;
  border-radius: 8px !important;
}
.reviews-swiper-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 22px;
  height: max-content;
}
.reviews-author-info {
  gap: 12px;
}
.reviews-card-header {
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-author-titles p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #464551;
}
.reviews-author-name h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #1f1f1f;
}
.reviews-text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #1f1f1f;
}
.reviews-text a {
  color: #1252d3;
}
.reviews-data {
  margin-top: 40px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  display: block;
  color: #464551;
}
.reviews-author-profession {
  border: 1px solid #464551;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  padding: 4px 9px;
  border-radius: 200px;
  color: #464551;
}
.reviews-pagination {
  display: none;
}
.reviews-buttons {
  margin: 40px auto 0;
  gap: 8px;
  justify-content: center;
}
.reviews-button {
  position: initial !important;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #cee2fd;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.reviews-button svg {
  width: 7px;
}
.reviews-button-prev svg {
  transform: rotate(180deg);
}
.reviews-button-next svg {
  margin-left: 2px;
}
.reviews-button svg path {
  stroke: #002253;
}
.reviews-button::after {
  display: none !important;
}
.reviews-button:hover {
  background: #ebf3fe;
}
.reviews-button.active {
  background: #cee2fd;
}

.quality-section {
  background: #eff2f5;
  padding: 76px 0;
  position: relative;
  z-index: 2;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.quality-card {
  background: #ffffff;
  border-radius: 15px;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  min-height: 118px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.quality-card::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1252d3;
  position: absolute;
  left: 22px;
  top: 22px;
}

.faq-section {
  background: #ffffff;
  border-radius: 15px 15px 0 0;
  padding: 76px 0;
  position: relative;
  z-index: 3;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.faq-item {
  background: #f8f9fb;
  border-radius: 12px;
  color: #1f1f1f;
  padding: 18px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  list-style: none;
  padding-right: 32px;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #1252d3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  color: #464551;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
}

.trust-section {
  padding: 78px 0 0;
  background: linear-gradient(
    180deg,
    #94b3ff 50.96%,
    #89abfc 75.48%,
    #7fa2f9 100%
  );
}
.trust-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.trust-media {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.trust-body {
  min-height: 660px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.trust-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 360px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(137, 171, 250, 0.99) 0%,
    rgba(137, 171, 250, 0.96) 54%,
    rgba(137, 171, 250, 0) 100%
  );
}
.trust-titles {
  position: relative;
  z-index: 1;
}
.trust-titles .section-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(31, 72, 163, 0.24);
}
.trust-btn {
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .universal-decor {
    display: none;
  }
}

@media (max-width: 1062px) {
  .hero-body {
    flex-direction: column;
    padding: 0 0 60px 0;
    align-items: center;
  }
  .hero-swiper-box {
    max-width: 100%;
  }
  .hero-swiper-box {
    height: unset;
  }
  .hero-description h1 {
    text-align: center;
  }
  .hero-description p {
    margin-top: 18px;
    text-align: center;
  }
  .hero-btn {
    margin: 32px auto 0;
  }
  .hero-slide-lamp {
    max-width: 95px;
    top: -41px;
  }
  .hero-slide-book {
    max-width: 254px;
    left: -70px;
    height: 254px;
      max-height: 254px;
    top: 0;
  }
  .hero-slide-gif {
    bottom: 0;
    max-width: 211px;
    left: 101px;
  }
  .splide{
    max-width: 100%;
    padding: 27px 0 0 ;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 8px;
  }
  .universal-section {
    margin-top: 72px;
  }
  .splide__pagination {
  display: flex !important;

}
}

@media (max-width: 992px) {
  .universal-item:nth-child(4) {
    margin-top: 0;
  }
  .universal-item {
    height: unset;
  }
  .universal-star--two {
    display: none;
  }
  .universal-star--one {
    display: none;
  }
  .universal-item {
    flex: 1 1 70%;
    justify-content: center;
    gap: 15px;
  }
  .personal-column {
    flex-direction: column;
    gap: 34px;
    align-items: stretch;
  }
  .personal-column:nth-child(2) {
    flex-direction: column-reverse;
  }
  .personal-img-item {
    max-width: 100%;
  }
  .personal-decor {
    display: none;
  }
  .personal-section {
    margin-top: 82px;
    padding: 0 0 44px 0;
  }
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefits-visual-block {
    grid-template-columns: 1fr;
  }
  .benefits-demo {
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .trust-body {
    min-height: 370px;
  }
  .trust-section {
    padding: 34px 0 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .mobile-text-wrap {
    display: block;
  }
  .desktop-text-wrap {
    display: inline;
  }
  .universal-item:nth-child(5) {
    display: none;
  }
  .text-blue-desktop {
    color: unset;
  }
  .text-blue-mobile {
    color: #1252d3;
  }
  .hero-description h1 {
    font-size: 34px;
    line-height: 38px;
  }
  .hero-description p {
    font-size: 15px;
    line-height: 21px;
    max-width: 320px;
    margin: 16px auto 0;
  }
  .hero-note {
    max-width: 300px !important;
    margin-top: 12px !important;
  }
  .hero-microtrust {
    max-width: 300px;
    margin: 12px auto 0;
    text-align: center;
  }
  .hero-body {
    gap: 0;
    padding: 0;
  }
  .hero-slide-book {
    max-width: 300px;
    left: -70px;
    top: -30px;
    height: 300px;
    max-height: 300px;
    
  }
  .hero-sction {
    border-radius: 0 0 15px 15px;
  }
  .hero-slide-gif {
  
    display: none;
  }
  .hero-slide-cursor {

    display: none;
  }
  .hero-pagination {
    display: flex !important;
    justify-content: start;
    margin-top: 27px !important;
  }
  .hero-swiper {
    margin-top: 6px;
  }

  .section-title {
    font-size: 25px;
    line-height: 30px;
  }
  .block-cnt {
    margin-top: 22px;
  }
  .universal-item {
    flex-direction: column;
  }
  .universal-item-img {
    max-width: 100%;
  }
  .universal-item-texts h3 {
    font-size: 19px;
    line-height: 23px;
    text-align: center;
  }
  .universal-item-texts p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .partners-block {
    margin-top: 25px;
  }
  .partners-item {
    display: none;
  }
  .partners-mobile-media {
    display: flex;
  }
  .personal-column {
    gap: 18px;
  }
  .personal-text-item h3 {
    margin-top: 16px;
    font-size: 19px;
    line-height: 24px;
  }
  .personal-text-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .personal-text-item ul li {
    font-size: 14px;
    line-height: 20px;
    margin-left: 20px;
  }
  .reviews-section {
    padding: 44px 0 46px 0;
  }
  .section-subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-top: 12px;
  }
  .benefits-demo {
    padding: 16px;
  }
  .demo-prompt {
    padding: 14px;
  }
  .demo-prompt p {
    font-size: 14px;
    line-height: 20px;
  }
  .demo-result-grid,
  .benefits-points {
    grid-template-columns: 1fr;
  }
  .demo-slide-card {
    min-height: 92px;
  }
  .demo-slide-card strong {
    font-size: 18px;
    line-height: 22px;
  }
  .benefit-point {
    min-height: unset;
  }
  .benefit-point h3 {
    font-size: 17px;
    line-height: 22px;
    margin-top: 10px;
  }
  .quality-section,
  .faq-section {
    padding: 44px 0;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .quality-card {
    font-size: 15px;
    line-height: 21px;
    min-height: 88px;
    padding: 30px 18px 18px;
  }
  .quality-card::before {
    left: 18px;
    top: 16px;
  }
  .faq-item {
    padding: 16px;
  }
  .faq-item summary {
    font-size: 15px;
    line-height: 21px;
  }
  .faq-item p {
    font-size: 14px;
    line-height: 20px;
  }
  .reviews-author-profession {
    display: none;
  }
  .reviews-buttons {
    display: none;
  }
  .reviews-pagination {
    display: flex;
    margin-top: 11px !important;
  }
  .trust-btn {
    margin-top: 18px;
  }
  .btn-primary,
  .btn-big-primary {
    font-size: 14px;
    gap: 8px;
    line-height: 18px;
    max-width: 100%;
    padding-right: 14px;
  }
  .btn-primary-icon,
  .btn-big-primary-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .btn-primary:hover .btn-primary-icon,
  .btn-big-primary:hover .btn-big-primary-icon,
  .btn-primary:hover span,
  .btn-big-primary:hover span {
    transform: none;
  }
  .trust-body {
    min-height: 420px;
  }
  .universal-item-texts {
    max-width: 276px;
  }
  .hero-body{
    margin-top: 88px;
  }
  .hero-description{
    padding: 10px 0 0 ;
  }

}

@media (max-width: 500px) {
 
}
@media (max-width: 450px) {
  .hero-slide-lamp {
    left: 128px;
  }


  .trust-body {
    min-height: 370px;
  }

}
@media (max-width: 430px) {
  .hero-slide-gif {
    top: 20px;
  }

    .hero-slide-book {
    max-width: 284px;
    height: 284px;
    max-height: 284px;
  }
}

@media (max-width: 400px) {
  .hero-slide-book {
    max-width: 254px;
    left: -80px;
    height: 254px;
     max-height: 254px;
  }
}


/* Landing Factory HTML+PHP normalization */
.header-body,
.header-actions,
.hero-body,
.hero-description,
.universal-item,
.universal-item-texts,
.reviews-swiper-card,
.quality-card,
.faq-item,
.trust-body {
  min-width: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 82, 211, 0.32);
  outline-offset: 3px;
  border-radius: 10px;
}

.btn-primary,
.btn-big-primary,
.btn-register,
.btn-login {
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary span,
.btn-big-primary span,
.btn-register span,
.btn-login {
  min-width: 0;
  overflow-wrap: normal;
}

.splide.is-local-carousel .splide__list {
  display: grid;
}

.splide.is-local-carousel .splide__slide[hidden] {
  display: none !important;
}

.splide.is-local-carousel .splide__slide.is-active {
  display: block;
}

.splide.is-local-carousel .splide__pagination {
  list-style: none;
}

.splide.is-local-carousel .splide__pagination__page {
  border: 0;
  cursor: pointer;
}

.faq-item summary {
  cursor: pointer;
}

@media (max-width: 576px) {
  body {
    overflow-x: hidden;
  }

  .btn-register,
  .btn-primary,
  .btn-big-primary {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    font-size: clamp(13px, 3.6vw, 15px);
    line-height: 18px;
  }
}

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

  .fade-left,
  .fade-right,
  .fade-top,
  .fade-bottom {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Shared pre-footer sizing: compact, readable and stable across viewports. */
@media (min-width: 769px) {
  .trust-section {
    padding-top: 56px;
  }

  .trust-body {
    min-height: 560px;
  }

  .trust-body::before {
    height: 300px;
  }

  .trust-titles {
    padding-inline: 24px;
  }

  .trust-titles .section-title {
    max-width: 1180px;
    margin-inline: auto;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .trust-btn {
    margin-top: 28px;
  }

  .trust-media {
    width: 100%;
    justify-content: center;
  }

  .trust-media picture {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .trust-media img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .trust-section {
    padding-top: 48px;
  }

  .trust-body {
    min-height: 510px;
  }

  .trust-body::before {
    height: 270px;
  }

  .trust-media img {
    max-height: 470px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding-top: 38px;
  }

  .trust-body {
    min-height: 460px;
  }

  .trust-body::before {
    height: 250px;
  }

  .trust-titles {
    padding-inline: 20px;
  }

  .trust-titles .section-title {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(30px, 5.7vw, 40px);
    line-height: 1.1;
    text-wrap: balance;
  }

  .trust-btn {
    margin-top: 24px;
  }

  .trust-media {
    width: 100%;
    justify-content: center;
  }

  .trust-media picture {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .trust-media img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .trust-section {
    padding-top: 30px;
  }

  .trust-body {
    min-height: 430px;
  }

  .trust-body::before {
    height: 220px;
  }

  .trust-titles {
    padding-inline: 16px;
  }

  .trust-titles .section-title {
    max-width: 390px;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.12;
  }

  .trust-btn {
    margin-top: 20px;
  }

  .trust-media img {
    max-height: 370px;
  }
}

@media (max-width: 430px) {
  .trust-body {
    min-height: 410px;
  }

  .trust-media img {
    max-height: 350px;
  }
}
