body{
margin:0;
font-family:system-ui;
background:#050505;
color:white;
}

.glass{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
padding:15px 30px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(20px);
z-index:10;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:32px;
border-radius:50%;
}

.lang button{
background:none;
border:1px solid white;
color:white;
margin-left:10px;
padding:5px 12px;
cursor:pointer;
}

.hero{
padding-top:140px;
text-align:center;
}

section{
padding:60px 10%;
}

.video{
border:1px dashed white;
padding:40px;
margin-top:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.quotes{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid #333;
}

.links a{
color:white;
margin:0 10px;
text-decoration:none;
}

@media(max-width:768px){
.quotes{grid-template-columns:1fr;}
}
