*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0e0e0e;
color:white;
}

header{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1800&q=80");
background-size:cover;
background-position:center;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
background:rgba(0,0,0,.4);
backdrop-filter:blur(10px);
position:fixed;
width:100%;
}

.logo{
color:#ff3c41;
font-size:30px;
font-weight:700;
}

nav ul{
display:flex;
gap:40px;
list-style:none;
}

nav a{
text-decoration:none;
color:white;
transition:.3s;
}

nav a:hover{
color:#ff3c41;
}

.hero{
height:100%;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
text-align:center;
padding:20px;
}

.hero h1{
font-size:75px;
font-weight:800;
}

.hero p{
font-size:22px;
max-width:700px;
margin:25px 0 40px;
}

.hero a{
background:#ff3c41;
padding:16px 45px;
border-radius:40px;
text-decoration:none;
color:white;
font-weight:bold;
transition:.3s;
}

.hero a:hover{
background:#ff5964;
transform:translateY(-3px);
}

section{
padding:100px 10%;
}

section h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#181818;
padding:40px;
border-radius:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(255,60,65,.25);
}

.card h3{
margin-bottom:20px;
color:#ff3c41;
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
text-align:center;
background:#141414;
}

.stats h2{
font-size:55px;
color:#ff3c41;
margin-bottom:10px;
}

.pricing{
background:#0d0d0d;
}

.plans{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.plan{
background:#191919;
padding:50px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.plan:hover{
transform:translateY(-8px);
}

.active{
border:2px solid #ff3c41;
transform:scale(1.05);
}

.plan h1{
font-size:60px;
margin:20px 0;
color:#ff3c41;
}

.plan ul{
list-style:none;
margin:30px 0;
}

.plan li{
padding:10px;
}

.plan button{
padding:15px 40px;
border:none;
background:#ff3c41;
color:white;
font-size:16px;
border-radius:40px;
cursor:pointer;
}

.contact form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,
textarea{
padding:18px;
border:none;
border-radius:10px;
background:#181818;
color:white;
}

textarea{
height:180px;
resize:none;
}

.contact button{
padding:18px;
background:#ff3c41;
border:none;
color:white;
font-size:18px;
border-radius:10px;
cursor:pointer;
}

footer{
padding:30px;
text-align:center;
background:black;
}

@media(max-width:900px){

.hero h1{
font-size:50px;
}

nav{
flex-direction:column;
gap:20px;
}

nav ul{
gap:20px;
}

}
