<style>

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:
radial-gradient(circle at top,#1d1d1d 0%,#080808 45%,#000 100%);
color:#fff;
line-height:1.8;
overflow-x:hidden;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

a{
text-decoration:none;
}

section{
padding:70px 0;
}

h1,h2,h3{
line-height:1.3;
}

h2{
font-size:38px;
color:#d4af37;
margin-bottom:20px;
text-align:center;
}

p{
color:#ddd;
font-size:17px;
}

header{
position:sticky;
top:0;
z-index:999;
background:rgba(0,0,0,.95);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(212,175,55,.25);
}

.header-email{
display:none;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
padding:15px 20px;
max-width:1200px;
margin:auto;
flex-wrap:wrap;
}

.logo{
font-size:30px;
font-weight:800;
color:#d4af37;
}

.logo span{
color:#fff;
}

.nav-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:14px 26px;
border-radius:14px;
font-weight:bold;
transition:.3s;
}

.btn-gold{
background:#d4af37;
color:#000;
}

.btn-gold:hover{
transform:translateY(-2px);
}

.btn-dark{
border:1px solid #d4af37;
color:#d4af37;
}

.hero{
padding:100px 20px;
text-align:center;
background:
linear-gradient(to bottom,
rgba(0,0,0,.2),
rgba(0,0,0,.9));
}

.hero-logo{
max-width:160px;
margin:auto auto 30px;
display:block;
}

.hero h1{
font-size:58px;
max-width:1000px;
margin:auto;
}

.hero p{
max-width:900px;
margin:25px auto;
font-size:22px;
color:#e4e4e4;
}

.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:60px;
}

.stat{
background:#111;
border:1px solid rgba(212,175,55,.3);
border-radius:18px;
padding:25px;
}

.stat strong{
display:block;
font-size:34px;
color:#d4af37;
margin-bottom:10px;
}

.feature-section{
margin:50px auto;
background:#111;
border:1px solid rgba(212,175,55,.2);
border-radius:28px;
overflow:hidden;
transition:.3s;
}

.feature-section:hover{
transform:translateY(-4px);
box-shadow:0 0 30px rgba(212,175,55,.15);
}

.feature-section img{
width:100%;
display:block;
}

.feature-content{
padding:35px;
}

.feature-content h2{
text-align:left;
font-size:34px;
}

.feature-content p{
margin-top:15px;
}

.hero-showcase{
margin:60px auto;
background:#111;
border:1px solid rgba(212,175,55,.25);
border-radius:28px;
overflow:hidden;
box-shadow:0 0 35px rgba(212,175,55,.08);
}

.hero-showcase img{
width:100%;
display:block;
height:auto;
}

.hero-showcase-content{
padding:35px;
}

.hero-showcase-content h2{
text-align:left;
font-size:36px;
margin-bottom:15px;
}

.hero-showcase-content p{
margin-bottom:18px;
}

.hero-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:18px;
margin-top:25px;
}

.hero-list div{
background:#181818;
padding:20px;
border-radius:15px;
border:1px solid rgba(212,175,55,.2);
}

.hero-list h3{
color:#d4af37;
margin-bottom:10px;
font-size:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.card{
background:#121212;
border:1px solid rgba(212,175,55,.25);
padding:25px;
border-radius:20px;
}

.card h3{
color:#d4af37;
margin-bottom:10px;
}

.faq{
max-width:1000px;
margin:auto;
}

.faq-item{
background:#111;
border:1px solid rgba(212,175,55,.25);
border-radius:18px;
padding:20px;
margin-bottom:15px;
}

.faq-item h3{
color:#d4af37;
margin-bottom:10px;
}

.cta{
background:
linear-gradient(135deg,#1a1a1a,#0b0b0b);
border:2px solid #d4af37;
border-radius:30px;
padding:60px 30px;
text-align:center;
}

.cta h2{
margin-bottom:15px;
}

.cta-buttons{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.cta-buttons .btn{
width:220px;
height:56px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0;
font-size:16px;
}

footer{
padding:50px 20px;
text-align:center;
color:#999;
border-top:1px solid rgba(212,175,55,.15);
}

.mobile-sticky{
display:none;
}

@media(max-width:768px){

.cta-buttons{
flex-direction:column;
align-items:center;
}

.cta-buttons .btn{
width:100%;
max-width:300px;
height:56px;
}

    
    .nav{
flex-direction:column;
text-align:center;
}

.logo{
font-size:24px;
}

.nav-buttons{
display:none;
}

.nav-buttons a{
flex:1;
padding:12px 8px;
font-size:15px;
border-radius:12px;
}

.hero-logo{
max-width:120px;
}

.hero h1{
font-size:32px;
line-height:1.2;
}

.hero-buttons{
flex-direction:column;
}

.hero-buttons a{
width:100%;
}

.stat{
padding:18px;
}

.stat strong{
font-size:28px;
}

.hero{
padding:70px 15px;
}

.hero h1{
font-size:36px;
}

.hero p{
font-size:18px;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.feature-content{
padding:25px;
}

.feature-content h2{
font-size:28px;
}

.mobile-sticky{
display:flex;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#000;
padding:10px;
gap:10px;
z-index:999;
border-top:1px solid rgba(212,175,55,.3);
}

.mobile-sticky a{
flex:1;
text-align:center;
padding:12px;
border-radius:10px;
font-weight:bold;
}

body{
padding-bottom:80px;
}

}

</style>