body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #1e0f2f;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1200px) {
  .wrapper {
    padding: 0 16px;
  }
}

@media (max-width: 700px) {
  .wrapper {
    padding: 0 6px;
  }
}

.header {
  padding-top: 30px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 82px;
}

@media (max-width: 605px) {
  .header-top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

.logo-row {
  display: flex;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8559ff;
}
.logo-icon {
  width: 60px;
  height: 60px;
}

.header-actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 425px) {
  .header-actions {
    gap: 15px;
  }
}

.create-account {
  background: transparent;
  color: #d7d7d7;
  border: 1px solid #d7d7d7;
  border-radius: 50px;
  padding: 12px 41px;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.create-account:hover {
  background: #ffffff0d;
  color: #fff;
}

.main-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1130px) {
  .main-banner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

.banner-content {
  position: relative;
  max-width: 700px;
}

@media (max-width: 1130px) {
  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.banner-title {
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 72px;
  line-height: 82px;
  background: linear-gradient(90.13deg, #8559ff 0%, #f81dfb 99.96%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 1200px) {
  .banner-title {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (max-width: 700px) {
  .banner-title {
    font-size: 32px;
    line-height: 1.2;
  }
}

.description {
  font-weight: 400;
  font-size: 18px;
  color: #e2e2e2;
}

@media (max-width: 700px) {
  .description {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .description {
    text-align: center;
  }
}

.auth-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (max-width: 425px) {
  .auth-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }
}

.auth-email {
  background: #8559ff;
  color: #d7d7d7;
  border: none;
  border-radius: 50px;
  padding: 12px 41px;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 10;
}
.auth-email:hover {
  background: #ffffff0d;
  color: #fff;
}

.banner-phones {
  position: relative;
  display: flex;
  gap: 60px;
}
.phone-img {
  width: 232px;
  height: 551px;
  z-index: 10;
}
.phone-img:last-child {
  margin-top: 147px;
}
@media (max-width: 1200px) {
  .banner-phones {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .banner-phones {
    display: none;
  }
}

.blur-pink,
.blur-green,
.blur-purple {
  position: absolute;
  width: 123px;
  height: 123px;
  filter: blur(100px);
  z-index: 0;
}
.blur-pink {
  top: -10px;
  background: #fb37ff;
}
.blur-green {
  bottom: 0;
  right: 0;
  background: #18b2de;
}
.blur-purple {
  bottom: -30px;
  background: #8218de;
}

.advantages-section {
  margin-top: 140px;
  margin-bottom: 54px;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  background: linear-gradient(90.13deg, #8559ff 0%, #f81dfb 99.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.section-title {
  margin: 0;
  font-weight: 500;
  font-size: 80px;
  line-height: 96px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 58px;
}
@media (max-width: 1200px) {
  .section-title {
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 34px;
  }
}
@media (max-width: 700px) {
  .section-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .advantages-section {
    margin-top: 44px;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;

  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1384px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 22px;
  }
}

@media (max-width: 1300px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.adv-card {
  max-width: 272px;
  padding: 35px 20px;
  background: linear-gradient(
    147.75deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .adv-card {
    max-width: 100%;
    padding: 24px 12px;
  }
}
@media (max-width: 700px) {
  .adv-card {
    max-width: 330px;
    padding: 18px 8px;
  }
}
.adv-icon {
  margin-bottom: 20px;
}
.adv-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}
.adv-desc {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  text-transform: capitalize;
  color: #af8db8;
}

.footer {
  background: linear-gradient(
    147.75deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  backdrop-filter: blur(10px);
  margin-top: 100px;
}
.footer-main {
  max-width: 1480px;
  margin: 0 auto;
  padding: 60px 100px;
}
@media (max-width: 900px) {
  .footer-main {
    padding: 32px 14px;
  }
}
@media (max-width: 700px) {
  .footer-main {
    padding: 24px 8px;
  }
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 1130px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .footer-top {
    justify-content: center;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #8559ff;
}
@media (max-width: 700px) {
  .footer-logo {
    font-size: 20px;
  }
}
.footer-desc {
  font-weight: 400;
  font-size: 14px;
  color: #96839b;
}
@media (max-width: 700px) {
  .footer-desc {
    font-size: 12px;
  }
}

@media (max-width: 425px) {
  .footer-desc {
    text-align: center;
  }
}

.footer-policies {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .footer-policies {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

.rights {
  font-weight: 400;
  font-size: 13px;
  color: #96839b;
}
.policies {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 700px) {
  .policies {
    gap: 20px;
  }
}
.policy {
  font-weight: 400;
  font-size: 13px;
  color: #8559ff;
}
.policy:hover {
  text-decoration: underline;
  cursor: pointer;
}

.vector {
  position: absolute;
  left: -15.57%;
  right: 90.57%;
  top: 68.2%;
  bottom: 12.61%;
  background: rgba(173, 26, 175, 0.8);
  opacity: 0.75;
  filter: blur(229.167px);
}
@media (max-width: 700px) {
  .vector {
    display: none;
  }
}
