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

body{
font-family:Arial, Helvetica, sans-serif;
background:#0d0d0d;
color:white;
line-height:1.5;
}

a{
text-decoration:none;
}

header{
position:absolute;
top:0;
left:0;
width:100%;
z-index:100;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 50px;
}

.logo-wrap{
display:flex;
align-items:center;
gap:15px;
}

.logo-wrap img{
height:65px;
}

.logo-wrap h2{
font-size:28px;
margin-bottom:2px;
}

.logo-wrap p{
color:#cfcfcf;
font-size:14px;
}

.phone-btn{
background:#c50000;
color:white;
padding:14px 24px;
border-radius:8px;
font-weight:bold;
transition:.3s;
}

.phone-btn:hover{
background:#e00000;
}

.hero{
height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80');

background-size:cover;
background-position:center;
}

.hero-content{
max-width:1000px;
padding:20px;
position:relative;
z-index:2;
}

.hero h1{
font-size:92px;
line-height:.95;
margin-bottom:25px;
text-transform:uppercase;
}

.hero p{
font-size:24px;
max-width:850px;
margin:auto;
margin-bottom:35px;
color:#d8d8d8;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:35px;
}

.btn-red,
.btn-dark,
.btn-light{
padding:18px 32px;
border-radius:8px;
font-weight:bold;
transition:.3s;
}

.btn-red{
background:#c50000;
color:white;
}

.btn-dark{
background:black;
border:1px solid white;
color:white;
}

.btn-light{
background:white;
color:black;
}

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

.trust-row{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
font-size:15px;
color:#ddd;
}

.vehicle-types{
padding:90px 30px;
background:#111;
}

.vehicle-types h2{
text-align:center;
font-size:52px;
margin-bottom:40px;
}

.vehicle-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1300px;
margin:auto;
}

.vehicle-card{
height:350px;
border-radius:18px;
position:relative;
overflow:hidden;
display:flex;
align-items:end;
justify-content:center;
}

.vehicle-card h3{
position:relative;
z-index:2;
font-size:38px;
margin-bottom:35px;
color:white;
}

.vehicle-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.truck{
background:url('https://images.unsplash.com/photo-1519641471654-76ce0107ad1b?auto=format&fit=crop&w=1200&q=80');
background-size:cover;
background-position:center;
}

.suv{
background:url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80');
background-size:cover;
background-position:center;
}

.car{
background:url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1200&q=80');
background-size:cover;
background-position:center;
}

.certified{
background:#181818;
padding:100px 30px;
}

.certified-grid{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:400px 1fr;
gap:50px;
align-items:center;
}

.stamp img{
width:100%;
}

.certified h2{
font-size:52px;
margin-bottom:30px;
}

.benefits{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.benefits div{
background:#222;
padding:20px;
border-left:4px solid #c50000;
border-radius:10px;
}

.finance,
.trade,
.delivery{
padding:100px 30px;
text-align:center;
}

.finance{
background:#111;
}

.trade{
background:#181818;
}

.delivery{
background:#111;
}

.finance h2,
.trade h2,
.delivery h2{
font-size:58px;
margin-bottom:20px;
}

.finance p,
.trade p,
.delivery p{
font-size:22px;
max-width:850px;
margin:auto;
margin-bottom:30px;
}

footer{
background:black;
padding:60px 30px;
text-align:center;
}

footer h3{
font-size:34px;
margin-bottom:20px;
}

footer p{
margin-bottom:10px;
color:#cfcfcf;
}

.floating-btn{
position:fixed;
right:25px;
bottom:25px;
background:#c50000;
color:white;
padding:18px 28px;
border-radius:999px;
font-weight:bold;
z-index:999;
box-shadow:0 8px 25px rgba(0,0,0,.35);
}

@media(max-width:900px){

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

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

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

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

header{
padding:20px;
flex-direction:column;
gap:15px;
}

}
