/* =====================
   HERO PRODUK DIGITAL SEO
===================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at right, rgba(212, 175, 55, .16), transparent 35%), #050505;
  padding: 120px 25px 80px;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.hero-label {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .35);
  color: #d4af37;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  color: white;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #bdbdbd;
  max-width: 620px;
}

.hero-desc strong {
  color: white;
}

/* BUTTON */
.hero-form {
  margin-top: 38px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #fff1a8);
  color: #050505;
  font-weight: 900;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover {
  transform: translateY(-4px);
}

/* NOTE */
.hero-note {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 700;
  color: #d4af37;
}

/* IMAGE */
.hero-image {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}

.hero-image img {
  width: 100%;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 90px 20px 70px;
  }
  
  .hero-content h1 {
    letter-spacing: -1px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
}