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

body{
  font-family:'Montserrat', sans-serif;
  background:#0b0b0b;
  color:white;
  line-height:1.6;
}

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

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  padding:30px 0;
}

nav{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:2rem;
  font-weight:800;
  color:#fff;
}

.logo span{
  color:#d8a128;
}

.btn{
  display:inline-block;
  background:#d8a128;
  color:#000;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

.hero-content{
  width:90%;
  max-width:1200px;
  margin:100px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-text h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-text p{
  font-size:1.2rem;
  margin-bottom:30px;
  color:#ddd;
}

.hero-card{
  background:#111;
  border:1px solid #d8a128;
  border-radius:20px;
  padding:40px;
}

.hero-card h3{
  color:#d8a128;
  margin-bottom:20px;
  font-size:2rem;
}

.hero-card li{
  margin-bottom:15px;
}

.about,
.steps,
.benefits,
.cta,
footer{
  padding:90px 0;
}

.about{
  background:#121212;
  text-align:center;
}

.about h2,
.steps h2,
.benefits h2,
.cta h2{
  font-size:3rem;
  margin-bottom:20px;
  color:#d8a128;
}

.about p{
  max-width:800px;
  margin:auto;
  color:#ddd;
}

.steps{
  background:#0b0b0b;
}

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

.step{
  background:#141414;
  padding:30px;
  border-radius:20px;
  border-top:4px solid #d8a128;
}

.step span{
  font-size:3rem;
  font-weight:800;
  color:#d8a128;
}

.step h3{
  margin:20px 0 10px;
}

.benefits{
  background:#121212;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}

.benefits-grid div{
  background:#181818;
  padding:30px;
  border-radius:16px;
}

.benefits-grid h4{
  color:#d8a128;
  margin-bottom:15px;
}

.cta{
  text-align:center;
}

.cta p{
  margin:20px 0 30px;
}

footer{
  background:#000;
  text-align:center;
  border-top:1px solid #222;
}

footer h3{
  color:#d8a128;
  margin-bottom:20px;
}

@media(max-width:900px){

.hero-content{
  grid-template-columns:1fr;
}

.hero-text h1{
  font-size:2.8rem;
}

.about h2,
.steps h2,
.benefits h2,
.cta h2{
  font-size:2.2rem;
}

}
