	
.hero {
  background: #000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-wrap {
  max-width: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 28px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86868b;
  margin: 0 0 16px;
}

.hero-copy h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #f5f5f7;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.47;
  color: #a1a1a6;
  max-width: 380px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Tombol Minimalis Berbahaya */
.btn-primary-luxury {
  background: #ffffff;
  color: #000814;
  padding: 16px 40px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Transisi sehalus sutra */
}

.btn-primary-luxury:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.hero-visual-right img,
.catalyst-cell,
.product-card-luxury {
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}


/* Responsive Mobile Setup */
@media (max-width: 1068px) {
  .hero {
    padding: 140px 24px 80px;
    min-height: auto;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-copy h1 {
    font-size: 46px;
    line-height: 1.15;
  }
  
  .hero-sub {
    margin: 0 auto 40px;
  }
  
  .hero-cta {
    justify-content: center;
  }

  .hero-media img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    transform: translateX(0);
  }
  
  .hero-media:hover img {
    transform: scale(1.02) translateX(0);
  }
}