.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #AECBFF 0%, #4B7BF5 70%);
  border-radius: 0 0 40px 40px;
  color: #fff;
  margin-top: 0;
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.blob-1 {
  width: 340px;
  height: 340px;
  background: #FFAFC8;
  top: -60px;
  left: -80px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #7AD9A7;
  bottom: 20px;
  left: 40%;
}

.blob-3 {
  width: 280px;
  height: 280px;
  background: #FFE28C;
  top: 40px;
  right: -80px;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-text h1 {
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-btn {
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 16px;
}

.hero-illustration {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #ffffff40, #ffffff10);
  border-radius: 50%;
  filter: blur(8px);
  box-shadow: 0 20px 60px rgba(20, 36, 80, 0.35);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-categories,
.home-listings {
  margin-bottom: 32px;
}

.home-categories h2,
.home-listings h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-illustration {
    width: 260px;
    height: 260px;
  }

  .hero-btn {
    width: 100%;
  }
}
