*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#0b1220;
color:#fff;
}

header{
position:absolute;
top:0;
left:0;
width:100%;
padding:15px 60px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:10;
background:rgba(5,10,20,0.95);
border-bottom:3px solid #ff9800;
}

.logo img{
height:90px;
}

nav a{
color:#fff;
text-decoration:none;
margin:0 15px;
font-weight:bold;
}

.whatsapp-btn{
background:orange;
padding:12px 25px;
border-radius:8px;
color:#fff;
font-weight:bold;
text-decoration:none;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('hero-bg.jpg') center center/cover no-repeat;
display:flex;
align-items:flex-start;
padding:340px 80px 120px;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:90px;
line-height:1;
font-weight:900;
text-transform:uppercase;
margin-bottom:25px;
max-width:700px;
}

.hero h1 span{
color:orange;
}

.hero p{
margin-top:25px;
font-size:24px;
line-height:1.5;
}

.features{
display:flex;
gap:30px;
margin-top:30px;
font-weight:bold;
}

.section{
padding:80px 50px;
background:#fff;
color:#000;
}

.section-title{
text-align:center;
font-size:45px;
margin-bottom:50px;
font-weight:900;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
border:2px solid #eee;
border-radius:15px;
padding:30px;
text-align:center;
}

.card img{
width:180px;
margin-bottom:20px;
}

.card h3{
font-size:28px;
margin-bottom:15px;
}

.prices{
background:#08101d;
padding:80px 50px;
}

.price-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.price-box{
border:2px solid orange;
padding:30px;
border-radius:15px;
text-align:center;
}

.price-box h3{
font-size:30px;
margin-bottom:20px;
}

.price{
font-size:60px;
color:orange;
font-weight:bold;
}

footer{
background:#050b15;
padding:70px 60px;
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:60px;
align-items:start;
}

footer h3{
font-size:38px;
margin-bottom:25px;
color:white;
}

footer p{
font-size:19px;
line-height:1.8;
color:white;
}

footer a{
color:white;
text-decoration:none;
}

footer a:hover{
color:orange;
}

footer h3{
margin-bottom:20px;
font-size:30px;
}

footer p{
line-height:1.8;
}

@media(max-width:900px){

header{
padding:12px 15px;
flex-direction:column;
gap:15px;
}

.logo img{
height:65px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

nav a{
font-size:14px;
margin:0 8px;
}

.whatsapp-btn{
padding:10px 18px;
font-size:14px;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('hero-bg.jpg') center center/cover no-repeat;
display:flex;
align-items:center;
padding:260px 80px 120px;
}

.hero h1{
font-size:72px;
line-height:0.95;
font-weight:900;
text-transform:uppercase;
margin-bottom:25px;
max-width:650px;
}

.hero p{
font-size:18px;
margin-top:20px;
}

.features{
flex-direction:column;
gap:10px;
font-size:16px;
}

.section{
padding:60px 20px;
}

.section-title{
font-size:34px;
}

.card img{
width:140px;
}

.price{
font-size:44px;
}

footer{
padding:50px 20px;
}
}

@media(max-width:600px){

header{
padding:10px 15px;
flex-direction:column;
align-items:center;
gap:10px;
}

.logo img{
height:55px;
}

.hero{
padding:220px 20px 80px;
}

.hero h1{
font-size:48px;
line-height:0.95;
}

.hero p{
font-size:16px;
}

.features{
flex-direction:column;
gap:12px;
font-size:15px;
}

}
@media(max-width:900px){

footer{
grid-template-columns:1fr;
padding:50px 25px;
}

}