/* =====================
   HERO
===================== */
.hero {
  background: #050505;
  padding: 80px 25px 100px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.hero-content {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .3);
  color: #d4af37;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
  color: white;
  margin-bottom: 26px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
  max-width: 520px;
}

.hero-desc strong {
  color: #ffffff;
}

/* CTA */
.hero-form {
  margin-top: 35px;
  display: flex;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af37, #ffe88b);
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(212, 175, 55, .25);
  transition: .3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

.hero-note {
  margin-top: 25px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* IMAGE */
.hero-image {
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .45);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================
   HERO SEO LINK
===================== */
.hero-seo-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
}

.hero-seo-link:hover {
  color: #d4af37;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 900px) {
  .hero {
    padding: 60px 22px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-desc {
    margin: auto;
  }
  
  .hero-form {
    justify-content: center;
  }
  
  .hero-image {
    height: 420px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .hero-image {
    height: 330px;
    border-radius: 22px;
  }
}