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

body{
background:#090d18;
color:#fff;
overflow-x:hidden;
}

/* Loader */
#loader{
position:fixed;
inset:0;
background:#090d18;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:9999;
transition:1s ease;
}

#loader.hide{
opacity:0;
transform:translateY(-100%);
pointer-events:none;
}

.loader-title{
font-size:clamp(1.7rem,4vw,2.7rem);
text-align:center;
padding:0 20px;
margin-bottom:22px;
}

.spinner{
width:62px;
height:62px;
border-radius:50%;
border:4px solid rgba(255,255,255,.12);
border-top:4px solid #25D366;
animation:spin .9s linear infinite;
}

@keyframes spin{
to{transform:rotate(360deg)}
}

/* Hero */
.hero{
min-height:88vh;
padding:12px 18px 0;
background:radial-gradient(circle at top,#182135 0%,#090d18 60%);
}

.top-bar{
display:flex;
justify-content:space-between;
align-items:flex-start;
}

/* Logo top right */
.site-logo{
width:min(320px,48vw);
height:auto;
object-fit:contain;
margin-top:-30px;
margin-right:auto;
display:block;
}

/* Language */
.language-box{
width:58px;
height:58px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
background:#141d31;
border:1px solid rgba(255,255,255,.08);
position:relative;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.25);
flex-shrink:0;
}

.language-box span{
font-size:22px;
pointer-events:none;
}

.language-box select{
position:absolute;
inset:0;
opacity:0;
cursor:pointer;
}

.language-box select option{
background:#141d31;
color:#fff;
}

/* Hero text */
.hero-content{
max-width:880px;
margin:0 auto;
text-align:center;
transform:translateY(-24px);
}

.hero-content h2{
font-size:clamp(2rem,4vw,3.2rem);
line-height:1.2;
margin-bottom:16px;
font-weight:700;
}

.hero-content p{
font-size:clamp(1rem,2vw,1.15rem);
opacity:.85;
}

/* Content */
.container{
width:min(92%,1200px);
margin:auto;
padding:40px 0 80px;
}

.section-title{
text-align:center;
font-size:2rem;
margin-bottom:38px;
}

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

.card{
background:#121b2d;
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:26px;
transition:.25s ease;
}

.card:hover{
transform:translateY(-4px);
}

.card h3{
font-size:1.15rem;
margin-bottom:12px;
line-height:1.4;
}

.price{
font-size:1.35rem;
font-weight:700;
margin-bottom:20px;
}

.btn{
height:52px;
display:flex;
justify-content:center;
align-items:center;
border-radius:16px;
background:#25D366;
color:#fff;
text-decoration:none;
font-weight:700;
}

footer{
padding:36px 20px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:rgba(255,255,255,.65);
}

/* Desktop dropdown */
@media(min-width:769px){
.language-box{
width:auto;
height:auto;
padding:12px 14px;
border-radius:16px;
overflow:visible;
}

.language-box select{
position:static;
opacity:1;
background:#141d31;
border:none;
outline:none;
color:#fff;
min-width:145px;
}
}

/* Mobile */
@media(max-width:768px){

.hero{
padding-top:10px;
min-height:84vh;
}

.site-logo{
width:210px;
margin-top:-12px;
}

.hero-content{
transform:translateY(-12px);
}

.hero-content h2{
font-size:1.75rem;
}

.cards{
grid-template-columns:1fr;
}
}
