body, html {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fff;
  color: #0A0807;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.25;
  overflow-x: hidden;
  font-weight: 300;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

a {
  color: #0A0807;
  text-decoration: none;
}

header a {
  font-weight: 500;
}

nav.nav {
  display: flex;
  gap: 16px;
  width: 25%;
}

nav.nav.flex-end {
  justify-content: flex-end;
}

a.nav-link.nav-link--button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #564EF0;
  color: #fff;
  padding: 8px 48px;
  border-radius: 8px;
}

.newsletter-message {
  font-size: 16px;
  color: #016a01;
  margin-top: 8px;
  display: none;
  font-weight: 400;
}

.shining-text {
  background-image: linear-gradient(to right, #222222 40%, #E164D3FF 50%, #222222 60%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: my-shine-anim 4s infinite;
}

.shining-text.double {
  background-size: 450% 100%;
  animation-duration: 8s;
}

@keyframes my-shine-anim {
  100% {
    background-position: 0 0;
  }
}

.anim-delay-1 {
  animation-delay: 1s;
}

.anim-delay-2 {
  animation-delay: 2s;
}

a.nav-link.nav-link--button:hover {
  background: #463ed1;
}

a.nav-link.nav-link--button:active {
  background: #3630a8;
}

a.nav-link {
  display: flex;
  align-items: center;
}

a.nav-link.active {
  text-decoration: underline;
}

a.mob-menu__link.active {
  text-decoration: underline;
}

.gradient-text {
  background: linear-gradient(90deg, #47C2FF 0%, #8872FF 17.05%, #E164D3 39.67%, #FA413D 63.1%, #FE8422 81.57%, #FDBA52 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header a.gradient-text {
  font-size: 26px;
}

section.section-1 {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100svh - 73px);
  overflow: hidden;
}

.bg1 {
  position: absolute;
  left: 0;
  top: 5vh;
}

.bg2 {
  position: absolute;
  right: 0;
  top: 40vh;
  opacity: .7;
}

.section-1__content {
  width: 800px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12%;
}

.video-animation {
  width: 180px;
  height: 135px;
  position: relative;
}

.video-animation video {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* or 'contain' */
  display: block;
}

h1.section-1__title {
  margin: 0;
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -1.86px;
  text-align: center;
}

p.section-1__subtitle {
  color: #615568;
  font-size: 24px;
  text-align: center;
  margin: 0;
}

.section-1__input-wrapper {
  background: linear-gradient(270deg, #47C2FF 0%, #8872FF 17.05%, #E164D3 39.68%, #FA413D 63.1%, #FE8422 81.57%, #FDBA52 100%);
  border-radius: 18px;
  padding: 2px;
  position: relative;
  margin-top: 40px;
  width: 100%;
  height: 100px;
}

.section-1__input {
  padding: 10px 16px;
  background: #fff;
  border-radius: 18px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-1__input-wrapper:has(.error) {
  background: #FF4D4D;
}

.section-1__input input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 60%;
  height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 14px;
  padding: 0 12px;
  box-sizing: border-box;
}

button.section-1__input-button {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  background: #564EF0;
  border: none;
  color: #fff;
  border-radius: 17px;
  font-weight: 500;
  font-size: 18px;
  box-shadow: 0 0 8px 8px #2C1AF11A;
}

button.section-1__input-button.disabled {
  background: #A3A1CE;
  box-shadow: none;
  cursor: not-allowed;
}

.section-1__note {
  color: #615668;
}

.section-2 {
  background: #100b7f;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  justify-content: center;
  color: #fff;
}

.section-2__title-wrapper {
  max-width: 800px;
  text-align: center;
}

h2.section-2__title {
  font-weight: 300;
  font-size: 56px;
  margin: 12px 0;
}

h2.section-2__title b {
  font-weight: 600;
}

h2.section-2__title b span {
  font-style: italic;
}

.section-2__subtitle {
  font-size: 20px;
  margin: 0;
}

.section-2__content {
  max-width: 1100px;
  margin: 32px 0;
}

.setup-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 36px;
}

.setup-step__number {
  font-weight: 300;
  font-size: 14px;
  color: #A3A1CE;
}

.setup-step__title {
  margin: 4px 0 16px;
  font-size: 20px;
  font-weight: 600;
}

.setup-step__description {
  font-weight: 300;
  color: #A3A1CE;
  margin: 24px 0;
  font-size: 18px;
}

section.section-3 {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  color: #000;
}

.section-3__content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h2.section-3__title {
  margin: 0;
  font-size: 44px;
  font-weight: 300;
}

h2.section-3__title span {
  font-weight: 500;
}

p.section-3__subtitle {
  margin: 0;
  max-width: 650px;
  font-size: 18px;
}

.section-3__channels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 80px 0;
}

.section-3__channel {
  width: 32px;
  height: 32px;
}

.section-3__channel svg {
  fill: #000;
}

.insta-svg .st0 {
  fill: #fff;
}

svg.fb-svg:hover {
  fill: #1778F2;
}

svg.viber-svg:hover {
  fill: #59267C;
}

svg.insta-svg:hover {
  fill: #E1306C;
}

svg.telegram-svg:hover {
  fill: #0088CC;
}

svg.whatsapp-svg:hover {
  fill: #25D366;
}

svg.woo-svg:hover {
  fill: #720EEC;
}

svg.shopify-svg:hover {
  fill: #95BF47;
}

svg.webchat-svg:hover {
  fill: #0077CCDD;
}

footer {
  padding: 48px 48px 24px;
  border-top: 1px solid #F0F0FE;
}

footer .section-3__channels {
  justify-content: flex-start;
  gap: 16px;
  margin: 60px 0;
}

.upper-footer__content {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

footer .gradient-text {
  display: inline-block;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.upper-footer__logo {
  max-width: 250px;
}

.upper-footer__logo p {
  margin: 16px 0;
  line-height: 1.45;
}

.upper-footer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 32px;
  flex-grow: 1;
  padding: 14px 0;
  max-width: 650px;
}

.upper-footer__menu ul {
  text-transform: uppercase;
}

.upper-footer__menu ul li:first-child {
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 1px;
  font-size: 16px;
}

.upper-footer__menu ul li {
  margin-bottom: 12px;
  font-size: 12px;
  max-width: 200px;
  line-height: 20px;
}

.upper-footer__menu ul li a:hover {
  color: #453BFF;
}

.upper-footer__newsletter {
  max-width: 400px;
  padding: 14px 0;
}

.upper-footer__newsletter h3 {
  font-weight: 500;
  margin: 0 0 25px;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
}

.upper-footer__newsletter p {
  color: #787878;
  font-size: 14px;
  line-height: 20px;
}

.upper-footer__newsletter form {
  border: 1px solid #564EF0;
  background: #F5F6FB;
  border-radius: 6px;
  padding: 6px 14px;
  display: flex
;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
}

.upper-footer__newsletter input {
  border: none;
  background: transparent;
  width: 70%;
  height: 100%;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
}

.form-button-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.upper-footer__newsletter button {
  border: none;
  border-radius: 50%;
  display: flex;
  width: 38px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: #564EF0;
  flex: 0 0 36px;
  cursor: pointer;
}

.upper-footer__newsletter button svg {
  width: 18px;
}

.lower-footer {
  border-top: 1px solid #F0F0F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lower-footer p {
  color: #9B9B9B;
  font-weight: 300;
  font-size: 13px;
  margin: 12px 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-legal a {
  font-weight: 300;
  color: #6B6B6B;
}

header a:hover {
  color: #564EF0;
}

.lowercase {
  text-transform: lowercase;
}

/* <div class="mob-menu-icon mobile-only">
    <span></span>
    <span></span>
    <span></span>
  </div>*/
.mob-menu-icon {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
  background: #564EF0;
  border-radius: 50%;
}

.mob-menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.mob-menu-icon.open {
  gap: 6px;
}

.mob-menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mob-menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.mob-menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.err-msg {
  position: absolute;
  top: -14px;
  left: 16px;
  background: #FF4D4D;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  display: none;
}

.mob-menu {
  display: none;
}

.main-logo img {
  width: 86px;
}



/* Large media screen */
@media (min-width: 1800px) {
  .section-2__content {
    min-width: 1400px;
  }
}





























.mobile-only {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .section-1__input-wrapper {
    height: 72px;
  }

  button.section-1__input-button {
    position: absolute;
    width: 100%;
    left: 0;
    height: 72px;
    bottom: -80px;
  }

  .section-1__note {
    margin-top: 100px;
    text-align: center;
  }

  header {
    padding: 12px 20px;
  }

  section.section-1 {
    height: calc(100svh - 64px);
  }

  .pc-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .mob-menu-icon {
    display: flex;
    position: relative;
  }

  .bg1 {
    width: 222px;
    bottom: 0;
    top: auto;
  }

  .bg2 {
    width: 200px;
  }

  .section-1__content {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  h1.section-1__title {
    font-size: 30px;
  }

  .video-animation {
    width: 120px;
    height: 90px;
  }

  p.section-1__subtitle {
    font-size: 16px;
  }

  .section-1__input {
    min-height: 60px;
  }

  section.section-2 {
    padding: 40px 20px;
    gap: 28px;
  }

  h2.section-2__title {
    font-size: 30px;
  }

  p.section-2__subtitle {
    font-size: 16px;
  }

  .setup-steps {
    grid-template-columns: 1fr;
  }

  .setup-step__description {
    margin: 12px 0;
    font-size: 15px;
    color: #BAB8E9;
    line-height: 20px;
    text-align: center;
  }

  .setup-step {
    text-align: center;
  }

  .setup-step__number {
    font-weight: 500;
    color: #BAB8E9;
  }

  h2.section-3__title {
    font-size: 30px;
  }

  p.section-3__subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .section-3__channels {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-gap: 36px;
  }

  .section-3__channel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .section-3__channel svg {
    width: 28px;
  }

  footer {
    padding: 20px 20px 0;
  }

  .upper-footer__content {
    display: block;
  }

  .upper-footer__logo {
    max-width: 280px;
  }

  footer .section-3__channels {
    margin: 20px 0;
    width: 180px;
  }

  .upper-footer__logo p {
    margin: 8px 0;
    font-size: 14px;
    max-width: 230px;
  }

  .upper-footer__newsletter h3 {
    margin-bottom: 12px;
  }

  .upper-footer__newsletter p {
    font-size: 12px;
    line-height: 16px;
  }

  .lower-footer {
    flex-direction: column;
    background: #0B092F;
    margin: 0 -20px;
    padding: 0 20px 20px;
  }

  section.section-3 {
    padding: 20px;
  }

  .upper-footer__newsletter {
    padding: 28px 0 38px;
  }

  .lower-footer p {
    color: #fff;
    font-size: 14px;
    margin: 20px 0 12px;
  }

  .footer-legal a {
    color: #716F92;
  }

  .section-1__input input {
    width: 100%;
  }

  .mob-menu.open {
    display: flex;
  }

  .mob-menu {
    position: absolute;
    background: #544ce3;
    top: calc(100% + 2px);
    right: -20px;
    width: 100vw;
    z-index: 999;
    flex-direction: column;
    box-sizing: border-box;
  }

  .mob-menu a {
    padding: 16px 20px;
    border-bottom: 1px solid #fff3;
    color: #fff;
  }

  .main-logo img {
    width: 50px;
  }

}































