*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

background:#0f1114;

font-family:Segoe UI,Arial,sans-serif;

color:white;

}

header{

position:fixed;

top:0;

left:0;

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 60px;

background:rgba(0,0,0,.55);

backdrop-filter:blur(12px);

z-index:1000;

}

.logo img{

height:70px;

}

nav{

display:flex;

gap:30px;

align-items:center;

}

nav a{

color:white;

text-decoration:none;

font-weight:600;

}

.shop-button{

background:#d61f26;

padding:12px 22px;

border-radius:6px;

}

.hero{

height:100vh;

background:

linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.65)),

url("images/hero-grcorolla.jpg");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.hero-content{

max-width:900px;

padding:30px;

animation:fade 1.5s;

}

.hero h1{

font-size:64px;

margin-bottom:20px;

}

.hero p{

font-size:22px;

color:#ddd;

margin-bottom:40px;

}

.badges{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-bottom:40px;

}

.badges span{

padding:10px 18px;

background:rgba(255,255,255,.08);

border-radius:30px;

backdrop-filter:blur(10px);

}

.cta{

display:inline-block;

padding:18px 40px;

background:#d61f26;

border-radius:8px;

text-decoration:none;

color:white;

font-size:20px;

font-weight:bold;

transition:.3s;

}

.cta:hover{

background:#ff4040;

transform:translateY(-3px);

}

section{

padding:100px 12%;

}

section h2{

font-size:42px;

margin-bottom:30px;

}

section p{

font-size:20px;

line-height:1.8;

color:#bbb;

}

.split{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.split img{

width:100%;

border-radius:14px;

box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:20px;

margin-top:40px;

}

.cards div{

background:#1b1d22;

padding:35px;

text-align:center;

border-radius:12px;

font-size:22px;

transition:.3s;

}

.cards div:hover{

background:#d61f26;

transform:translateY(-6px);

}

.bottom{

text-align:center;

background:#15171b;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:900px){

header{

flex-direction:column;

padding:20px;

}

nav{

margin-top:20px;

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.split{

grid-template-columns:1fr;

}

}