*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,Inter,sans-serif;
}
body{
background:#0b0b0b;
color:#ededed;
overflow-x:hidden;
}
.bg-shape{
position:absolute;
border-radius:50%;
filter:blur(140px);
opacity:.45;
}
.shape1{
width:420px;
height:420px;
background:#f36c21;
top:-120px;
left:-120px;
}
.shape2{
width:520px;
height:520px;
background:#ff8a3d;
bottom:-220px;
right:-220px;
}
.header{
text-align:center;
padding:60px 20px 20px;
}
.logo{
width:260px;
max-width:90%;
}
.container{
max-width:1000px;
margin:auto;
padding:40px 20px;
text-align:center;
}
h1{
font-size:3rem;
color:#f36c21;
margin-bottom:20px;
}
.status{
color:#b5b5b5;
font-size:1.2rem;
margin-bottom:30px;
}
.opening{
display:inline-block;
padding:16px 34px;
border-radius:50px;
border:2px solid #f36c21;
margin-bottom:50px;
}
.opening span{
color:#f36c21;
font-weight:600;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
margin-bottom:50px;
}
.card{
background:rgba(255,255,255,0.04);
padding:30px;
border-radius:20px;
border:1px solid rgba(243,108,33,.25);
transition:.3s;
}
.card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(243,108,33,.25);
}
.contact,.cooperation{
margin-bottom:40px;
font-size:1.1rem;
}
a{
color:#f36c21;
text-decoration:none;
}
.footer{
text-align:center;
padding:25px;
font-size:.9rem;
color:#777;
}
@media(max-width:600px){
h1{font-size:2.2rem}
.logo{width:200px}
}
