.hero img, .feature img {
  box-shadow: 0 0 20px rgba(224, 18, 128, 0.5), 0 0 40px rgba(224, 18, 128, 0.2);
}

.hero {
  background: var(--background-1);
  height: 100vh;
  padding: 80px 20px 100px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h3 {
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--muted);
  margin-bottom: 50px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.feature {
  padding: 60px 20px 100px;
  background: var(--background-2);
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  min-height: 70vh;
  margin: 0 auto 100px;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 500px;
}

.feature-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.1rem;
  color: var(--muted);
}

.feature-img {
  flex: 1 1 500px;
}

.feature-img img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 1168px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
    padding: 60px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
  }

  .feature-text h2 {
    font-size: 2rem;
  }

  .feature-text p {
    font-size: 1.3rem;
  }

  .feature-img,
  .feature-text {
    flex: 1 1 100%;
  }

  .feature-img img,
  .hero-image img {
    width: 93%;
    margin: 10px auto;
    display: block;
  }

  .feature {
    padding: 40px 16px 80px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .feature-text h2 {
    font-size: 2rem;
  }

  .feature-text p {
    font-size: 1.3rem;
  }

  .feature {
    padding: 30px 12px 60px;
  }

  .hero {
    padding: 50px 12px 60px;
  }
}