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

html{
scroll-behavior:smooth;
}

body{
background:#080808;
color:#fff;
}

.header{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 60px;
background:#050505;
border-bottom:1px solid #222;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:38px;
font-weight:900;
font-style:italic;
text-decoration:none;
color:#d50000;
letter-spacing:2px;
}

.nav{
display:flex;
gap:30px;
}

.nav a{
color:#fff;
text-decoration:none;
font-weight:700;
font-size:14px;
}

.nav a:hover{
color:#d50000;
}

.header-buttons{
display:flex;
gap:10px;
}

.btn-red{
background:#d50000;
color:#fff;
padding:14px 24px;
text-decoration:none;
font-weight:700;
border-radius:4px;
display:inline-block;
transition:.3s;
}

.btn-red:hover{
background:#b00000;
}

.btn-outline{
border:1px solid #fff;
color:#fff;
padding:14px 24px;
text-decoration:none;
font-weight:700;
border-radius:4px;
display:inline-block;
transition:.3s;
}

.btn-outline:hover{
background:#fff;
color:#000;
}

.hero{
height:650px;
background:
linear-gradient(
90deg,
rgba(0,0,0,.92),
rgba(0,0,0,.55)
),
url('images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-left:80px;
position:relative;
}

.hero-content{
max-width:650px;
z-index:2;
}

.hero-subtitle{
letter-spacing:5px;
font-size:18px;
margin-bottom:15px;
}

.hero h1{
font-size:82px;
line-height:.95;
font-weight:900;
margin-bottom:20px;
}

.hero h1 span{
color:#d50000;
}

.hero-text{
font-size:18px;
line-height:1.8;
color:#ddd;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.products{
padding:80px 60px;
background:#fff;
color:#000;
text-align:center;
}

.products h2{
font-size:42px;
margin-bottom:10px;
}

.section-desc{
max-width:700px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.product-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.product-card{
background:#fff;
border:1px solid #ddd;
border-radius:8px;
overflow:hidden;
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.product-card img{
width:100%;
height:230px;
object-fit:contain;
background:#f5f5f5;
padding:20px;
}

.product-card h3{
padding:15px;
font-size:18px;
}

.product-card p{
padding:0 15px 20px;
font-size:14px;
color:#555;
line-height:1.6;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:80px 60px;
background:#101010;
}

.about h2{
font-size:40px;
margin-bottom:20px;
}

.about p{
line-height:1.9;
margin-bottom:20px;
color:#ccc;
}

.about-box{
background:#171717;
padding:40px;
border-left:4px solid #d50000;
}

.about-box h3{
margin-bottom:20px;
}

.about-box ul{
list-style:none;
}

.about-box li{
padding:10px 0;
border-bottom:1px solid #222;
}

.verify-banner{
background:#d50000;
padding:60px;
display:flex;
align-items:center;
justify-content:space-between;
}

.verify-banner h2{
font-size:38px;
margin-bottom:10px;
}

.contact{
padding:80px 60px;
text-align:center;
}

.contact h2{
font-size:42px;
margin-bottom:40px;
}

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

.contact-grid div{
background:#151515;
padding:30px;
border-radius:8px;
}

.contact-grid h3{
margin-bottom:10px;
color:#d50000;
}

footer{
padding:30px;
text-align:center;
background:#050505;
border-top:1px solid #222;
color:#999;
}

@media(max-width:1000px){

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

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

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

.hero h1{
font-size:55px;
}

.header{
flex-direction:column;
height:auto;
padding:20px;
gap:20px;
}

.nav{
flex-wrap:wrap;
justify-content:center;
}
}

@media(max-width:600px){

.hero{
padding:30px;
height:auto;
min-height:550px;
}

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

.hero h1{
font-size:42px;
}

.verify-banner{
flex-direction:column;
gap:20px;
text-align:center;
}
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}