*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:
radial-gradient(circle at top,
#1c1c1c,
#050505 50%);
color:white;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* TOPBAR */

.topbar{
background:#f4c542;
color:#000;
text-align:center;
padding:10px;
font-weight:bold;
font-size:14px;
}

/* HEADER */

header{
padding:20px 0;
border-bottom:1px solid #222;
position:sticky;
top:0;
background:#050505ee;
backdrop-filter:blur(10px);
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
font-size:22px;
}

.brand img{
width:50px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#f4c542;
}

/* HERO */

.hero{
padding:120px 0;
text-align:center;
}

.hero-logo{
width:220px;
margin-bottom:30px;
filter:drop-shadow(0 0 15px rgba(244,197,66,.4));
}

.hero h1{
font-size:70px;
color:#f4c542;
margin-bottom:15px;
}

.hero p{
max-width:700px;
margin:20px auto;
font-size:20px;
color:#ccc;
}

/* BADGES */

.hero-badges{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:25px;
}

.hero-badges span{
background:#111;
border:1px solid #333;
padding:10px 20px;
border-radius:30px;
font-size:14px;
}

/* BUTTONS */

.buttons{
margin-top:40px;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
}

.btn{
background:#f4c542;
padding:15px 35px;
color:black;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.btn-outline{
border:2px solid #f4c542;
padding:15px 35px;
color:#f4c542;
text-decoration:none;
border-radius:10px;
transition:.3s;
}

.btn-outline:hover{
background:#f4c542;
color:black;
}

/* SECTIONS */

section{
padding:100px 0;
}

h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
color:#f4c542;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#111;
padding:30px;
border-radius:15px;
text-align:center;
border:1px solid #222;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
border-color:#f4c542;
}

/* TIMELINE */

.timeline{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.timeline div{
background:#111;
padding:25px;
border-radius:15px;
border:1px solid #222;
transition:.3s;
}

.timeline div:hover{
border-color:#f4c542;
}

/* CONTRACT */

.contract-box{
max-width:700px;
margin:auto;
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;
}

.contract-box input{
flex:1;
min-width:250px;
padding:15px;
background:#111;
border:1px solid #333;
color:white;
border-radius:10px;
}

.contract-box button{
padding:15px 25px;
background:#f4c542;
border:none;
cursor:pointer;
font-weight:bold;
border-radius:10px;
}

/* FAQ */

.faq-item{
background:#111;
padding:20px;
margin-bottom:15px;
border-radius:15px;
border:1px solid #222;
}

.faq-item h3{
margin-bottom:10px;
color:#f4c542;
}

/* SOCIALS */

.socials{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.socials a{
padding:15px 30px;
background:#f4c542;
color:black;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:.3s;
}

.socials a:hover{
transform:translateY(-3px);
}

/* FOOTER */

footer{
padding:30px;
border-top:1px solid #222;
text-align:center;
color:#999;
}

footer p{
margin:10px 0;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:45px;
}

.hero-logo{
width:150px;
}

.hero p{
font-size:18px;
}

nav{
display:none;
}

h2{
font-size:32px;
}

.buttons{
flex-direction:column;
align-items:center;
}

.btn,
.btn-outline{
width:250px;
text-align:center;
}

}