.hero {
  position:relative;
  height:420px;
  overflow:hidden;
  background-image:url(../images/banner-bg.png);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:#f3f7fb;
  opacity:0.08;
}

.hero-slide {
  position:absolute;
  inset:0;
  opacity:0;
  transition:0.6s;
}

.hero-slide.active {
  opacity:1;
}

.hero-inner {
  max-width:1140px;
  margin:auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0px 15px 15px 15px;
  gap:0px;
}

.hero-left {
  width:55%;
}

.hero-left h1 {
  font-size:28px;
  font-weight:600;
  color:#252525;
}

.hero-left p {
  color:#252525;
  line-height:1.6;
  margin:15px 0 25px;
}

.features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.feature {
  display:flex;
  gap:12px;
  background:#ffffff;
  padding:8px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.icon {
  width:40px;
  height:40px;
  background:#4c57d6;
  border-radius:8px;
}

.feature span {
  display:block;
  font-size:13px;
  color:#666;
}

.hero-right {
  max-width:481px;
  height:320px;
  border-radius:16px;
}

.demo2 {
  background:linear-gradient(135deg,#22c1c3,#5fffd2);
}

/* Mobil */
@media(max-width:768px){

  .hero {
    height:auto;
  }

  .hero-inner {
    flex-direction:column;
    text-align:left;
  }

  .hero-left {
    width:100%;
  }
  
  .hero-right {
    max-width:481px;
  height:320px;
  }

  .hero-right {
    height:200px;
  }

  .features {
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){

  .hero {
    height:auto;
    min-height:500px;
  }

  .hero-slide {
    position:relative;
    opacity:1 !important;
  }

  .hero-inner {
    flex-direction:column;
  }
}

@media (max-width:768px){
  .desktop-only{
    display:none !important;
  }
}