@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{
background:#0f0f0f;
color:white;
overflow-x:hidden;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
position:fixed;
width:100%;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
z-index:5;
}

.logo{
font-size:24px;
font-weight:700;
background:linear-gradient(90deg,#caa44c,#f4d27a,#b8963c);
-webkit-background-clip:text;
color:transparent;
}

nav a{
margin-left:30px;
text-decoration:none;
color:#ddd;
transition:0.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#0f0f0f,#1c1c1c,#0f0f0f);
background-size:400% 400%;
animation:bgmove 16s infinite;
}

@keyframes bgmove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.hero h1{
font-size:64px;
background:linear-gradient(90deg,#d4af37,#f8e7a0,#c49b2c);
-webkit-background-clip:text;
color:transparent;
}

.hero p{
margin-top:15px;
font-size:20px;
opacity:0.8;
}

.apply{
margin-top:30px;
font-size:22px;
color:#d4af37;
}

.features{
padding:120px 10%;
text-align:center;
}

.features h2{
font-size:42px;
margin-bottom:60px;
color:#d4af37;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.box{
background:#1a1a1a;
padding:35px;
border-radius:12px;
border:1px solid rgba(212,175,55,0.2);
transition:0.3s;
}

.box:hover{
border-color:#d4af37;
box-shadow:0 0 20px rgba(212,175,55,0.3);
}

.pricing{
padding:120px 10%;
text-align:center;
}

.pricing h2{
font-size:42px;
margin-bottom:60px;
color:#d4af37;
}

.pricing-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.card{
background:#1a1a1a;
padding:40px;
width:240px;
border-radius:14px;
border:1px solid rgba(212,175,55,0.25);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
border-color:#d4af37;
box-shadow:0 0 25px rgba(212,175,55,0.35);
}

.price{
font-size:24px;
margin-top:10px;
color:#d4af37;
}

.process{
padding:120px 10%;
text-align:center;
}

.process h2{
font-size:42px;
margin-bottom:60px;
color:#d4af37;
}

.steps{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

.step{
text-align:center;
}

.num{
width:60px;
height:60px;
border-radius:50%;
background:#d4af37;
color:black;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:auto;
margin-bottom:10px;
}

footer{
margin-top:100px;
padding:60px 10%;
background:#0a0a0a;
}

.footer-content{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.footer-links a{
margin-right:25px;
text-decoration:none;
color:#aaa;
}

.footer-links a:hover{
color:#d4af37;
}

.copyright{
margin-top:40px;
text-align:center;
color:#777;
}

.cursor-glow{
position:fixed;
width:220px;
height:220px;
border-radius:50%;
pointer-events:none;
background:radial-gradient(circle,rgba(212,175,55,0.6) 0%,rgba(212,175,55,0.2) 40%,rgba(212,175,55,0) 70%);
filter:blur(25px);
transform:translate(-50%,-50%);
z-index:1;
}