*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}

body{
background:#02030a;
color:white;
overflow-x:hidden;
}

/* Animated Background */

.bg-animation{
position:fixed;
width:100%;
height:100%;
background:linear-gradient(120deg,#050512,#090927,#000);
background-size:300% 300%;
animation:bgMove 12s infinite alternate;
z-index:-1;
}

@keyframes bgMove{
0%{background-position:left;}
100%{background-position:right;}
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(255,255,255,0.03);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
font-size:22px;
font-weight:bold;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
opacity:.8;
}

nav a:hover{
opacity:1;
}

/* HERO */

.hero{
text-align:center;
padding:80px 20px 40px;
}

.hero h1{
font-size:32px;
margin-bottom:10px;
}

.hero p{
opacity:.7;
max-width:600px;
margin:auto;
}

/* FORM */

.form-section{
display:flex;
justify-content:center;
padding:40px 20px;
}

.glass-form{
width:100%;
max-width:420px;
padding:30px;
border-radius:16px;

background:rgba(255,255,255,0.05);
backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.1);

animation:fadeIn 1s ease;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}

.glass-form h2{
margin-bottom:20px;
}

.glass-form label{
display:block;
margin-top:15px;
font-size:14px;
opacity:.8;
}

.glass-form input,
.glass-form select,
.glass-form textarea{

width:100%;
margin-top:6px;
padding:10px;
border-radius:8px;
border:none;

background:rgba(255,255,255,0.07);
color:white;
}

.glass-form textarea{
resize:none;
}

.check{
display:flex;
gap:8px;
margin-top:15px;
font-size:13px;
opacity:.8;
}

/* BUTTON */

button{
width:100%;
margin-top:20px;
padding:12px;

border:none;
border-radius:10px;

background:linear-gradient(45deg,#6c63ff,#4a3aff);
color:white;

cursor:pointer;
font-size:15px;
}

button:hover{
transform:scale(1.03);
}

/* TRUST SECTION */

.trust{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
padding:40px 20px;
}

.trust-card{
width:220px;
text-align:center;
padding:20px;

background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);

border-radius:12px;
border:1px solid rgba(255,255,255,0.1);
}

.trust-card i{
font-size:28px;
margin-bottom:10px;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
opacity:.6;
font-size:13px;
}

/* MOBILE */

@media(max-width:600px){

.hero h1{
font-size:26px;
}

.trust{
flex-direction:column;
align-items:center;
}

}
