* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 20% 30%, #6c45ff 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, #130d7f 0%, transparent 40%),
    radial-gradient(circle at 60% 70%, #170042 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, #7737e7 0%, transparent 40%), #0f0f2d;
  color: #fff;
  line-height: 1.6;
}

header,
section,
footer {
  padding: 0px 60px;
  max-width: 960px;
  margin: 0 auto;
}

.title {
  font-size: 30px;
  color: #ffffff;
  margin-left: 10px;
}

.descript {
  font-size: 30px;
  text-align: start;
  font-weight: 900;
}

.descript2 {
  font-weight: 900;
  text-align: start;
  font-size: 30px;
  color: rgb(255, 179, 230);
}

.baner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero {
  text-align: center;
  padding-top: 60px;
}

.hero .logo img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.bg {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bgImg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cta-button {
  padding: 14px 82px;
  background: #ff267a;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 20px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e41d6b;
}

.cta-button:disabled {
  background: #555;
  color: #aaa;
  cursor: not-allowed;
  opacity: 0.6;
}

.cta-block {
  text-align: center;
  margin-top: 20px;
}

.consent-label {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-top: -10px;
  margin-bottom: 30px;
}

.consent-label a {
  color: #00aaff;
  text-decoration: underline;
}

.consent-label input {
  margin-right: 8px;
  vertical-align: middle;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.features,
.steps,
.audience,
.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature,
.step,
.audience-item,
.faq-item {
  background: #1a1a1d;
  padding: 20px;
  border-radius: 12px;
}

.feature i,
.step i,
.audience-item i {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff76b8;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  border-top: 1px solid #222;
  padding: 20px 0;
}

a.cta-link {
  display: inline-block;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 24px;
    text-align: center;
    margin-left: 0;
  }
  .descript,
  .descript2 {
    font-size: 20px;
    text-align: center;
  }
  .bg {
    flex-direction: column-reverse;
    align-items: center;
  }
  .baner {
    flex-direction: column;
  }
}
