*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* HEADER */

.header{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  backdrop-filter:blur(14px);
  background:rgba(0,0,0,0.45);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo img{
  width:180px;
}

.nav{
  display:flex;
  gap:35px;
}

.nav a{
  color:white;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
  position:relative;
}

.nav a:hover{
  color:#f5c542;
}

.btn-demo{
  padding:15px 26px;
  background:#f5c542;
  color:black;
  text-decoration:none;
  border-radius:14px;
  font-weight:700;
  transition:0.3s;
}

.btn-demo:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(245,197,66,0.3);
}

/* HERO */

.hero{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:80px;
  padding:180px 8% 100px;
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:#f5c54220;
  filter:blur(120px);
  top:-200px;
  right:-100px;
  z-index:-1;
}

.hero-content{
  flex:1;
}

.tag{
  display:inline-block;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(245,197,66,0.1);
  border:1px solid rgba(245,197,66,0.2);
  color:#f5c542;
  margin-bottom:30px;
  font-size:14px;
}

.hero-content h1{
  font-size:78px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:30px;
}

.hero-content h1 span{
  color:#f5c542;
}

.hero-content p{
  font-size:20px;
  color:#a1a1aa;
  max-width:620px;
  line-height:1.8;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
}

.btn-primary{
  background:#f5c542;
  color:black;
  padding:18px 34px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(245,197,66,0.3);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.1);
  padding:18px 34px;
  border-radius:16px;
  text-decoration:none;
  color:white;
  transition:0.3s;
  background:rgba(255,255,255,0.03);
}

.btn-secondary:hover{
  border-color:#f5c542;
}

/* STATS */

.hero-stats{
  display:flex;
  gap:60px;
  margin-top:70px;
}

.stat h3{
  color:#f5c542;
  font-size:42px;
  margin-bottom:10px;
}

.stat span{
  color:#71717a;
  font-size:15px;
}

/* HERO IMAGE */

.hero-image{
  flex:1;
  position:relative;
}

.hero-image::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom right,
    rgba(245,197,66,0.15),
    rgba(124,58,237,0.15)
  );
  border-radius:40px;
  filter:blur(30px);
  transform:scale(1.05);
}

.hero-image img{
  width:100%;
  border-radius:32px;
  position:relative;
  z-index:2;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

/* RESPONSIVE */

@media(max-width:1200px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-stats{
    justify-content:center;
  }

}

@media(max-width:768px){

  .nav{
    display:none;
  }

  .hero{
    padding-top:150px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    flex-direction:column;
    gap:35px;
  }

}
/* BENEFITS */

.benefits{
  width:100%;
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#f5c542;
  letter-spacing:4px;
  font-size:14px;
}

.section-title h2{
  font-size:52px;
  margin-top:20px;
  font-weight:900;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.benefit-card{
  background:#0f0f10;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:28px;
  padding:40px;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.benefit-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom right,
    rgba(245,197,66,0.08),
    rgba(124,58,237,0.05)
  );
  opacity:0;
  transition:0.4s;
}

.benefit-card:hover::before{
  opacity:1;
}

.benefit-card:hover{
  transform:translateY(-10px);
  border-color:rgba(245,197,66,0.3);
}

.benefit-icon{
  width:70px;
  height:70px;
  border-radius:22px;
  background:rgba(245,197,66,0.08);
  border:1px solid rgba(245,197,66,0.2);
  margin-bottom:30px;
}

.benefit-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.benefit-card p{
  color:#a1a1aa;
  line-height:1.8;
}

/* RESPONSIVE BENEFITS */

@media(max-width:1200px){

  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .section-title h2{
    font-size:38px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

}