/* PREMIUM HERO */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(255,153,0,0.15), transparent 40%),
              linear-gradient(135deg,#0f0f0f,#1a1a1a);
}

.hero-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.hero-content{
  flex:1;
}

.hero-badge{
  display:inline-block;
  background:#ff9900;
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:42px;
  line-height:1.3;
  margin-bottom:20px;
  color:#ffffff;
}

.hero-content p{
  font-size:16px;
  color:#ccc;
  margin-bottom:30px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:40px;
}

.btn-primary{
  background:#ff9900;
  color:#000;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

.btn-secondary{
  border:1px solid #ff9900;
  color:#ff9900;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* STATS */
.hero-stats{
  display:flex;
  gap:40px;
  margin-bottom:30px;
}

.stat-item{
  font-size:14px;
}

.stat-item strong{
  display:block;
  font-size:20px;
  color:#ff9900;
}

/* TRUST BADGE */
.trust-badges{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.trust-badge{
  background:#1a1a1a;
  padding:10px 15px;
  border-radius:6px;
  font-size:13px;
  border:1px solid #222;
}

/* HERO IMAGE */
.hero-image{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.hero-image img{
  width:100%;
  max-width:520px;
  height:auto;
  object-fit:contain;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero{
    padding:60px 0;
  }

  .hero-container{
    flex-direction:column;
    text-align:center;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-stats{
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .trust-badges{
    justify-content:center;
  }

  .hero-image{
    margin-top:40px;
    text-align:center;
  }
}