
.home-flex {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-knp {
  margin-top: 1rem;
  display: block;
  background: linear-gradient(90deg, #633bff, var(--gradient-color-2));
  color: white;
  border-radius: 10rem;
  padding: 0.125rem;
  font-weight: 600;
  width: 10rem;
  max-width: 12rem;
}

.home-knp-text {
  justify-content: space-between;
  padding: 0.675rem 1rem;
}

.home-knp-text span {
  margin-left: 0.5rem;
}

.home-knp-text img {
  transform: rotate(-90deg);
}

.home-page {
  max-width: 1180px;
  text-align: left;
}

.home-page h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  color: white;
}

.home-page p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
  color: #d8d3ff;
}

.home-sections {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.home-section {
  width: 100%;
  padding: 2rem;
  background: var(--bg-card-drk-hid);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
}

.home-section h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.home-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #d8d3ff;
  margin: 0.5rem 0 0 0;
}

@media (max-width:1110px) {
  .main-wrapper {
    padding: 6rem 8.5%;
  }

  .home-page h1 {
    font-size: 3rem;
  }
}

@media (max-width:900px) {
  .home-sections {
    flex-direction: column;
  }
  .home-section {
    width: auto;
  }
  .main-wrapper {
    padding: 10rem 7%;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-right {
    margin-top: 1rem;
  }
}

@media (max-width:680px) {
  .main-wrapper {
    padding: 6rem 8.5% 12rem;
  }
}