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

body{
  font-family:Arial,sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  position:fixed;
  width:100%;
  top:0;
  backdrop-filter:blur(15px);
  background:rgba(0,0,0,0.5);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

h1 span, footer span{
  color:#ef4444;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:#ccc;
  text-decoration:none;
}

.btn{
  background:#ef4444;
  color:white;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  display:inline-block;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.15);
  color:white;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
}

.hero{
  padding:180px 0 120px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero h2{
  font-size:72px;
  line-height:1;
  margin:25px 0;
}

.hero h2 span{
  color:#ef4444;
  display:block;
}

.hero p{
  color:#aaa;
  font-size:20px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.hero-image img{
  width:100%;
  border-radius:40px;
}

.tag{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.section{
  padding:120px 0;
}

.section-tag{
  color:#ef4444;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:20px;
}

.section-title{
  font-size:56px;
  margin-bottom:50px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:30px;
}

.card h4{
  margin-bottom:15px;
  font-size:24px;
}

.card p{
  color:#aaa;
  line-height:1.7;
}

.dark{
  background:#0b0b0b;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.rounded{
  width:100%;
  border-radius:40px;
}

.benefits{
  list-style:none;
}

.benefits li{
  margin-bottom:20px;
  background:rgba(255,255,255,0.05);
  padding:22px;
  border-radius:24px;
}

footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:60px 0;
}

.footer{
  display:flex;
  justify-content:space-between;
  gap:40px;
}

.glow{
  position:fixed;
  width:400px;
  height:400px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.glow1{
  background:rgba(239,68,68,0.2);
  top:-100px;
  left:-100px;
}

.glow2{
  background:rgba(255,255,255,0.08);
  bottom:-100px;
  right:-100px;
}

@media(max-width:900px){

  .hero-grid,
  .two-col,
  .cards,
  .footer{
    grid-template-columns:1fr;
    display:grid;
  }

  nav{
    display:none;
  }

  .hero h2{
    font-size:48px;
  }

  .section-title{
    font-size:38px;
  }

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