
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#020c17;
color:white;
overflow-x:hidden;
}

.container{
width:92%;
max-width:1400px;
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(2,12,23,0.95);
border-bottom:1px solid rgba(255,255,255,0.08);
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 0;
}

.logo{
font-size:42px;
font-weight:900;
}

nav{
display:flex;
gap:36px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
}

.btn{
background:#d7a53c;
padding:14px 28px;
border-radius:10px;
font-weight:700;
color:black;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
background:
linear-gradient(to right, rgba(2,12,23,0.96) 30%, rgba(2,12,23,0.5)),
url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2400&auto=format&fit=crop') center/cover no-repeat;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to top, rgba(2,12,23,0.95), transparent 35%);
}

.hero-grid{
position:relative;
z-index:2;
display:grid;
grid-template-columns:1fr 0.7fr;
gap:60px;
align-items:end;
padding-top:140px;
}

.hero-content h1{
font-size:92px;
line-height:0.95;
font-weight:900;
margin-bottom:28px;
}

.hero-content h1 span{
color:#d7a53c;
}

.hero-content p{
font-size:24px;
line-height:1.7;
max-width:620px;
margin-bottom:40px;
color:#d7dce2;
}

.btn-primary{
display:inline-block;
background:#d7a53c;
padding:18px 34px;
border-radius:10px;
font-weight:800;
color:black;
}

.hero-card{
background:rgba(5,18,34,0.92);
padding:40px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
margin-bottom:60px;
}

.hero-card h3{
font-size:34px;
line-height:1.2;
margin-bottom:18px;
}

.hero-card p{
color:#d7a53c;
font-weight:700;
}

.stats{
background:#04111e;
padding:60px 0;
border-top:1px solid rgba(255,255,255,0.08);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stats h2{
font-size:56px;
color:#d7a53c;
margin-bottom:10px;
}

.services{
padding:120px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title span{
color:#d7a53c;
font-size:13px;
letter-spacing:0.2em;
font-weight:700;
}

.section-title h2{
font-size:52px;
margin-top:18px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#071726;
padding:40px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
}

.card h3{
font-size:28px;
margin-bottom:18px;
}

.card p{
color:#cbd5e1;
line-height:1.7;
}

footer{
background:#04111e;
padding:60px 0;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
display:flex;
justify-content:space-between;
align-items:center;
}

@media(max-width:1100px){

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

.hero-content h1{
font-size:56px;
}

.hero-content p{
font-size:18px;
}

.section-title h2{
font-size:38px;
}

nav{
display:none;
}
}
