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

body{
  font-family:'Inter',sans-serif;
  background:#0d0d0d;
  color:#fff;
  line-height:1.6;
}

.hero{
  min-height:100vh;
  background:url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?q=80&w=1600&auto=format&fit=crop') center/cover;
  position:relative;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

nav{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 8%;
}

.logo{
  font-weight:700;
  letter-spacing:4px;
}

.btn-outline{
  padding:12px 24px;
  border:1px solid #d4af37;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  padding:140px 8%;
}

.tag{
  display:inline-block;
  background:#d4af3722;
  color:#f0c85b;
  padding:8px 18px;
  border-radius:999px;
  margin-bottom:24px;
}

.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:72px;
  line-height:1.1;
  margin-bottom:24px;
}

.hero-content p{
  color:#ddd;
  max-width:560px;
  margin-bottom:36px;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary,.btn-secondary{
  text-decoration:none;
  padding:16px 28px;
  border-radius:999px;
  font-weight:600;
}

.btn-primary{
  background:#d4af37;
  color:#111;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding:80px 8%;
  background:#111;
}

.stat-box{
  background:#181818;
  padding:40px;
  border-radius:24px;
  text-align:center;
}

.stat-box h2{
  color:#d4af37;
  font-size:42px;
}

.products{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title span{
  color:#d4af37;
}

.section-title h2{
  font-size:48px;
  margin-top:10px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.card{
  background:#181818;
  border-radius:28px;
  overflow:hidden;
}

.card img{
  width:100%;
  height:380px;
  object-fit:cover;
}

.card-content{
  padding:24px;
}

.card-content h3{
  margin-bottom:10px;
}

.why-us{
  padding:100px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.mini{
  color:#d4af37;
}

.why-us h2{
  font-size:48px;
  margin:20px 0;
}

.feature{
  background:#181818;
  padding:28px;
  border-radius:24px;
  margin-bottom:20px;
}

.form-section{
  padding:100px 8%;
}

.form-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:#181818;
  border-radius:32px;
  padding:50px;
}

.form-info span{
  color:#d4af37;
}

.form-info h2{
  font-size:48px;
  margin:20px 0;
}

.lead-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.lead-form input,
.lead-form textarea{
  width:100%;
  background:#101010;
  border:none;
  border-radius:16px;
  padding:18px;
  color:#fff;
}

.lead-form textarea{
  min-height:140px;
}

.lead-form button{
  background:#d4af37;
  color:#111;
  border:none;
  padding:18px;
  border-radius:16px;
  font-weight:700;
  cursor:pointer;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  color:#888;
}

@media(max-width:991px){

  .hero-content h1{
    font-size:48px;
  }

  .stats,
  .product-grid,
  .why-us,
  .form-container{
    grid-template-columns:1fr;
  }

  .section-title h2,
  .why-us h2,
  .form-info h2{
    font-size:36px;
  }

  .card img{
    height:300px;
  }
}
