*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050505;
  color:white;
  font-family:Arial, sans-serif;
  line-height:1.6;
}

.hero{
  position:relative;
  height:100vh;
  background:
  linear-gradient(to bottom,
  rgba(0,0,0,0.7),
  rgba(0,0,0,0.9)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1400');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content{
  max-width:900px;
  z-index:2;
}

.logo{
  width:280px;
  margin-bottom:30px;
}

.hero h1{
  font-size:4rem;
  color:#ff1a1a;
  margin-bottom:20px;
}

.hero-text{
  font-size:1.3rem;
  color:#ddd;
  margin-bottom:40px;
}

.btn{
  display:inline-block;
  padding:16px 40px;
  background:#ff1a1a;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  background:#ff4444;
  transform:scale(1.05);
}

.about{
  padding:100px 10%;
  text-align:center;
}

.about h2{
  font-size:3rem;
  margin-bottom:30px;
  color:#ff1a1a;
}

.about p{
  max-width:900px;
  margin:20px auto;
  font-size:1.2rem;
  color:#ccc;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  padding:50px 10%;
}

.card{
  background:#111;
  border:1px solid #222;
  padding:40px;
  border-radius:20px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
  border-color:#ff1a1a;
}

.card h3{
  color:#ff1a1a;
  margin-bottom:15px;
}

.content-types{
  padding:100px 10%;
  text-align:center;
}

.content-types h2{
  font-size:3rem;
  margin-bottom:50px;
}

.content-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}

.type{
  background:#111;
  padding:30px;
  border-radius:15px;
  border:1px solid #222;
  font-weight:bold;
  transition:0.3s;
}

.type:hover{
  background:#ff1a1a;
}

.steps{
  padding:100px 10%;
  text-align:center;
}

.steps h2{
  font-size:3rem;
  margin-bottom:60px;
  color:#ff1a1a;
}

.step-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.step{
  background:#111;
  padding:40px;
  border-radius:20px;
}

.step span{
  width:70px;
  height:70px;
  background:#ff1a1a;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  border-radius:50%;
  font-size:2rem;
  font-weight:bold;
  margin-bottom:20px;
}

.cta{
  padding:120px 10%;
  text-align:center;
  background:#0d0d0d;
}

.cta h2{
  font-size:2rem;
  color:#ccc;
}

.cta h1{
  font-size:5rem;
  color:#ff1a1a;
  margin:20px 0;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid #222;
  color:#888;
}

@media(max-width:768px){

  .hero h1{
    font-size:2.5rem;
  }

  .cta h1{
    font-size:3rem;
  }

}




/* HAMBURGER MENU */

.menu-btn{
  width:40px;
  height:30px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  cursor:pointer;

  margin-right:20px;

  z-index:1002;
}

.menu-btn span{
  width:100%;
  height:4px;

  background:#ff1a1a;

  border-radius:10px;

  transition:0.3s;
}

/* DROPDOWN MENU */

.dropdown-menu{
  position:absolute;

  top:70px;
  left:20px;

  width:220px;

  background:#111;

  border:1px solid #222;

  border-radius:20px;

  padding:15px;

  display:none;

  flex-direction:column;

  gap:15px;

  z-index:1001;

  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu.active{
  display:flex;
}

.dropdown-menu a{
  color:white;

  text-decoration:none;

  background:#1a1a1a;

  padding:15px;

  border-radius:12px;

  font-weight:bold;

  transition:0.3s;
}

.dropdown-menu a:hover{
  background:#ff1a1a;
}

/* MOBILE */

@media(max-width:768px){

  .dropdown-menu{
    width:180px;
  }

}