/* HERO PREMIUM */
.hero {
  position: relative;
  padding: 120px 20px;
  background: #000;
  color: #fff;
  overflow: hidden;
  min-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND IMAGE */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: auto;
  text-align: center;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  padding: 40px;
  border-radius: 20px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,153,0,0.3);
  font-weight: 600;
}

/* TITLE */
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -.5px;
}

/* HIGHLIGHT */
.hero h1 span {
  display:block;
  color: #ff9900;
}

/* DESC */
.hero p {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,153,0,0.35);
}

/* BUTTON SECONDARY */
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: .3s;
  font-weight:600;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}

/* FEATURE TAGS */
.hero-features{
  margin-top:32px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.hero-features span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  color:#fff;
  backdrop-filter:blur(8px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero{
    min-height:auto;
    padding:90px 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-features{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .hero-features span{
    width:100%;
    max-width:280px;
    text-align:center;
  }

}