@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Montserrat+Alternates:wght@400;600;700&display=swap");

:root {
  --color-accent: #6759ff;
  --color-accent2: #18bac6;
  --pink: #e2209e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Helvetica Neue, Arial, sans-serif;
  background: #0d0d18;
  color: #ffffff;
}

.pointer {
  cursor: pointer;
}

.font-alternates {
  font-family: Montserrat Alternates;
}

.font-italic {
  font-style: Italic;
}

.align-items-start {
  align-items: start !important;
}

.align-left {
  text-align: start !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(28, 25, 33, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar ul li {
  margin: 0 15px;
  font-family: Montserrat Alternates;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 100%;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
}

.contact-us {
  padding: 10px 25px;
  border: 2px solid var(--color-accent);
  border-radius: 40px;
  transition: 0.3s;
  color: var(--color-accent) !important;
}

.contact-us:hover {
  background: var(--color-accent);
  color: #ffffff !important;
}

.nav-link.active {
  color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 30px 40px 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #1c1921 0%, #17121d 100%);
}

.container-hero {
  max-width: 1400px;
  padding: 180px 0 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.25rem;
  line-height: 120%;
  margin-bottom: 35px;
  font-weight: 600;
}

.pink {
  color: var(--pink);
  font-family: "Montserrat Alternates", Helvetica Neue, Arial, sans-serif;
}

.blue {
  color: var(--color-accent);
  font-family: "Montserrat Alternates", Helvetica Neue, Arial, sans-serif;
}

.teal {
  color: var(--color-accent2);
  font-family: "Montserrat Alternates", Helvetica Neue, Arial, sans-serif;
}

.buttons {
  display: flex;
  gap: 60px;
  z-index: 2;
}

.btn {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 12px 35px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.btn img {
  width: 30px;
  height: 30px;
}

.btn span {
  font-family: "Montserrat Alternates", Helvetica Neue, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
}

.btn span .shop-name {
  font-family: "Montserrat", Helvetica Neue, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-images .phone {
  width: 850px;
  position: absolute;
  top: -70px;
  z-index: 1;
}

.hero-bg-1 {
  position: absolute;
  width: 950px;
  height: 880px;
  background: radial-gradient(circle, #4200ac, transparent);
  filter: blur(100px);
  top: -125px;
  left: -190px;
}

.hero-bg-2 {
  position: absolute;
  width: 563px;
  height: 563px;
  background: radial-gradient(circle, #00ffe366, transparent);
  filter: blur(100px);
  top: 195px;
  left: 220px;
}

.hero-bg-3 {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #5d3d91cc, transparent);
  filter: blur(100px);
  top: 235px;
  right: 320px;
}

.hero-bg-4 {
  position: absolute;
  width: 352px;
  height: 327px;
  background: radial-gradient(circle, #1cffbfba, transparent);
  filter: blur(100px);
  bottom: -110px;
  right: -15px;
}

.message {
  position: absolute;
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 140%;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 6px rgb(15 50 213 / 20%), inset 0 -2px 8px rgb(48 142 255 / 30%);
}

.message-one {
  top: -45px;
  left: 150px;
}

.message-two {
  top: 210px;
  left: -35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 6px rgb(10 133 20 / 20%), inset 0 -2px 8px rgb(48 255 64 / 30%);
}

.message-three {
  top: 495px;
  left: 25px;
}

.message {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.message-one {
  animation-delay: 0.4s;
}

.message-two {
  animation-delay: 0.8s;
}

.message-three {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.use-easily {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 85px 30px 0 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #1c1921 0%, #17121d 100%);
}

.use-easily h2 {
  margin: 0;
  font-family: Montserrat Alternates;
  font-weight: 600;
  font-size: 3.25rem;
  line-height: 120%;
  text-align: center;
  color: var(--color-accent);
}

.use-easily-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  gap: 100px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  position: relative;
}

.column h3 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
}

.phone-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 100px;
}

.phone-image img {
  width: 400px;
  min-width: 200px;
  max-width: 100%;
  z-index: 2;
}

.timeline-right-bg {
  position: absolute;
  width: 594px;
  height: 594px;
  background: radial-gradient(circle, #00ffe380, transparent);
  filter: blur(150px);
  top: 150px;
  left: -340px;
}

.timeline-left-bg {
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, #751fff80, transparent);
  filter: blur(150px);
  top: 45px;
  right: -430px;
}

.timeline-left {
  position: relative;
  margin-left: 30px;
  padding-left: 28px;
  border-left: 1px solid #432879;
}

.timeline-right {
  position: relative;
  margin-right: 30px;
  padding-right: 28px;
  border-right: 1px solid #2b9098;
}

.timeline-item-left,
.timeline-item-right {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item-left::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 6px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  border: 6px solid #271e39;
  box-shadow: 0px 0px 6px 1px #5a43a9;
}

.timeline-item-right::before {
  content: "";
  position: absolute;
  right: -38px;
  top: 6px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  border: 6px solid #271e39;
  box-shadow: 0px 0px 6px 1px #18bac6;
}

.timeline-item-left h4,
.timeline-item-right h4 {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-accent);
}

.timeline-item-right h4 {
  color: var(--color-accent2);
}

.timeline-item-left p,
.timeline-item-right p,
.advantages-for-fans-container p,
.advantages-for-talents-column p,
.write-to-us-column p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 120%;
}

.advantages-for-fans {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 85px 30px 0 30px;
  overflow: hidden;
  background: #1b1330;
}

.advantages-for-fans h2 {
  margin-bottom: 100px;
  margin-top: 0;
  font-weight: 700;
  font-size: 3.25rem;
  text-align: center;
}

.advantages-for-fans-container {
  display: flex;
  max-width: 1400px;
  gap: 130px;
  flex-wrap: wrap;
}

.advantages-for-fans-column {
  flex: 1;
  position: relative;
}

.advantages-for-fans-column h4 {
  height: 60px;
  font-family: Montserrat Alternates;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  color: var(--color-accent);
}

.advantages-for-fans-column p {
  height: 200px;
}

.try-now-btn {
  display: inline-block;
  margin: 20px 0 100px 0;
  padding: 35px 55px;
  border-radius: 50px;
  color: var(--color-accent);
  background: #ffffff;
  text-decoration: none;
  font-family: Montserrat Alternates;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  transition: 0.3s;
  z-index: 2;
}

.try-now-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.background-number {
  position: absolute;
  top: 150px;
  right: -50px;
  z-index: 1;
}

.advantages-bg-left {
  position: absolute;
  bottom: -240px;
  left: -50px;
  z-index: 0;
}

.advantages-bg-right {
  position: absolute;
  bottom: -195px;
  right: 0;
  z-index: 0;
}

.advantages-for-talents {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0 30px;
  background: linear-gradient(180deg, #1c1921 0%, #17121d 100%);
}

.advantages-for-talents h2 {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 3.25rem;
}

.advantages-for-talents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  max-width: 1400px;
  gap: 130px;
  flex-wrap: wrap;
}

.advantages-phones-column {
  position: relative;
  flex: 1;
}

.advantages-phones {
  position: relative;
  z-index: 1;
}

.advantages-phones img {
  width: 100%;
  max-width: 785px;
}

.back-light {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1abdab, transparent);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.advantages-for-talents-column {
  max-width: 480px;
  flex: 1;
}

.advantages-for-talents-column h4 {
  margin-bottom: 20px;
  font-family: Montserrat Alternates;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  color: var(--color-accent2);
}

.advantages-for-talents-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-for-talents-column li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 24px;
}

.advantages-for-talents-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #192828;
  border-radius: 50%;
  border: 2px solid #18bac6;
  box-shadow: 0px 0px 6px 1px #18bac6;
}

.advantages-for-talents-column .li-right {
  margin-left: 80px;
}

.write-to-us {
  display: flex;
  justify-content: center;
  padding: 0 30px;
  overflow: hidden;
  background: #1b1330;
}

.write-to-us h2 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 3.25rem;
}

.write-to-us-container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 60px 0;
  max-width: 1400px;
  gap: 130px;
}

.contact-us-btn {
  display: inline-block;
  margin: 20px 0 100px 0;
  padding: 35px 140px;
  margin-top: 60px;
  border-radius: 50px;
  color: var(--pink);
  text-decoration: none;
  font-family: Montserrat Alternates;
  border: 2px solid var(--pink);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  transition: 0.3s;
}

.contact-us-btn:hover {
  background: var(--pink);
  color: #ffffff;
}

.write-to-us-picture-column {
  position: relative;
}

.write-to-us-picture {
  position: relative;
  z-index: 1;
}

.write-to-us-picture img {
  width: 100%;
  max-width: 600px;
}

.write-to-us-back-light {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #751fff99, transparent);
  filter: blur(100px);
  top: 0px;
  left: 220px;
  z-index: 0;
}

.footer {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0 30px;
  background: #100c14;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 60px 0;
  width: 100%;
  max-width: 1400px;
  gap: 60px;
}

.footer-back-light-left {
  position: absolute;
  width: 215px;
  height: 215px;
  background: radial-gradient(circle, #5d3d91, transparent);
  filter: blur(70px);
  top: 120px;
  left: -100px;
  z-index: 0;
}

.footer-back-light-right {
  position: absolute;
  width: 550px;
  height: 513px;
  background: radial-gradient(circle, #751fffcc, transparent);
  filter: blur(120px);
  bottom: -250px;
  right: -300px;
  z-index: 0;
}

.footer-logo {
  width: 320px;
}

.contact-us-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
  gap: 20px;
  z-index: 2;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.contact-us-container .buttons {
  display: none;
}

.social-icons img {
  width: 56px;
  transition: 0.3s;
}

.social-icons img:hover {
  filter: brightness(0) invert(39%) sepia(83%) saturate(749%) hue-rotate(205deg)
    brightness(95%);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
  text-align: end;
}

.footer-links a,
.footer-links span {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-links.mail {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-links.mail img {
  width: 38px;
}

.footer-links.mail {
  /* word-break: break-all; */
  text-align: left;
}

.footer-links-mobile {
  display: none;
}

/* Mobile menu */

.menu-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 17px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
  padding-top: 80px;
}

.menu-overlay.active {
  transform: translateY(0);
}

.menu {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1c1921 0%, #17121d 100%);
  padding: 30px 30px 40px 30px;
  border-radius: 0 0 52px 52px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 36px;
  font-size: 1.125rem;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.menu-links a:hover {
  color: var(--color-accent);
}

.menu-links .contact-us {
}

@media (max-width: 1400px) {
  .use-easily-container {
    gap: 50px;
  }

  .advantages-for-talents-container {
    gap: 50px;
  }

  .write-to-us-container {
    gap: 50px;
  }

  .social-icons {
    gap: 30px;
  }
}

@media (max-width: 1040px) {
  .navbar ul {
    display: none;
  }

  .menu-wrapper {
    display: flex;
  }

  .back-light {
    width: 450px;
    height: 450px;
  }

  .footer-container > .buttons {
    display: none;
  }

  .contact-us-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }

  .contact-us-container .buttons {
    display: flex;
  }

  .footer-links.hiden-links {
    display: none;
  }

  .social-icons {
    gap: 40px;
  }

  .footer-links-mobile {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    width: 100%;
    z-index: 2;
  }
}

@media (max-width: 960px) {
  html {
    font-size: 80%;
  }

  .container-hero {
    display: flex;
    flex-direction: column;
    padding: 70px 0 0;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-images {
    height: 450px;
  }

  .hero-images .phone {
    width: 580px;
  }

  .message-one {
    top: -10%;
    right: 10%;
    left: auto;
  }

  .message-two {
    top: 23%;
    left: 10%;
  }

  .message-three {
    top: 60%;
    left: 20%;
  }

  .column {
    flex: initial;
  }

  .phone-image {
    order: 1;
    margin-top: 0;
  }

  .text-right {
    text-align: right;
  }

  .advantages-for-fans-container {
    gap: 80px;
  }

  .write-to-us {
  }

  .write-to-us-container {
    display: flex;
    flex-direction: column;
    align-items: initial;
  }

  .write-to-us-column,
  .write-to-us-picture {
    text-align: center;
  }

  .menu-links {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-text img {
    width: 130px;
  }

  .advantages-for-fans-container {
    gap: initial;
  }

  .advantages-for-fans-column {
    flex: initial;
  }

  .advantages-for-fans-column p {
    height: auto;
  }

  .advantages-for-fans h2 {
    margin-bottom: 10px;
  }

  .advantages-for-fans-column h4 {
    height: auto;
    margin-top: 50px;
    margin-bottom: 14px;
  }

  .try-now-btn {
    margin: 80px 0 40px 0;
    padding: 28px 30px;
  }

  .advantages-phones-column {
    flex: initial;
    order: 1;
  }

  .advantages-for-talents-column {
    max-width: initial;
    flex: initial;
  }

  .advantages-for-talents-container {
    gap: initial;
    padding: 0 0 40px 0;
  }

  .background-number {
    top: 100px;
    right: 0;
  }

  .background-number img {
    width: 110px;
  }
}

@media (max-width: 576px) {
  h1,
  h2 {
    font-size: 2.25rem !important;
  }

  h3 {
    font-size: 1.8rem !important;
  }

  h4 {
    font-size: 1.4rem !important;
  }

  .hero-images {
    height: 380px;
  }

  .hero-images .phone {
    width: 470px;
  }

  .message span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .message-one {
    right: 0;
  }

  .message-two {
    left: 0;
  }

  .message-three {
    left: 10%;
  }

  .hero-bg-1 {
    width: 450px;
    height: 420px;
    filter: blur(70px);
    top: -85px;
    left: -40px;
  }

  .hero-bg-2 {
    width: 287px;
    height: 287px;
    filter: blur(70px);
    top: 75px;
    left: 95px;
  }

  .hero-bg-3 {
    width: 175px;
    height: 175px;
    filter: blur(70px);
    top: 50px;
    right: 230px;
  }

  .hero-bg-4 {
    width: 180px;
    height: 170px;
    filter: blur(70px);
    bottom: 80px;
    right: 41px;
  }

  .back-light {
    width: 300px;
    height: 300px;
  }

  .buttons .btn {
    padding: 8px 16px;
  }

  .btn span {
    font-size: 1rem;
  }

  .btn img {
    width: 20px;
    height: 20px;
  }

  .advantages-for-talents-column li::before {
    top: 3px;
  }

  .advantages-for-talents-column h4 {
    margin-bottom: 10px;
  }

  .advantages-for-talents-column li:nth-child(3) {
    margin-left: 45px;
  }

  .advantages-for-talents-column li:nth-child(4) {
    margin-left: 0;
  }

  .write-to-us-container {
    padding-bottom: 20px;
  }

  .write-to-us h2 {
    margin-bottom: 40px;
  }

  .contact-us-btn {
    padding: 25px 80px;
    margin-bottom: 0;
    margin-top: 40px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons img {
    width: 42px;
  }

  .footer-logo {
    width: 240px;
  }

  .buttons {
    gap: 20px;
  }

  .use-easily-container {
    gap: 20px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a,
  .footer-links span {
    font-size: 1rem;
  }

  .footer-links.mail img {
    display: none;
  }

  .footer {
    padding: 0 15px;
  }

  .phone-image img {
    width: 300px;
  }

  .timeline-left {
    margin-left: 0;
  }

  .timeline-right {
    margin-right: 0;
  }

  .hero-text h1 {
    margin-top: 50px;
  }

  .timeline-right-bg,
  .timeline-left-bg {
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-container {
    padding: 40px 0;
    gap: 40px;
  }

  .footer-back-light-left {
    width: 160px;
    height: 150px;
    top: 50px;
    left: -30px;
    filter: blur(60px);
  }

  .footer-back-light-right {
    width: 170px;
    height: 160px;
    bottom: 135px;
    right: 0;
    filter: blur(60px);
  }

  .modal {
    padding: 16px;
  }
}
