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

body{

font-family:'Inter',sans-serif;
background:#0f172a;
color:white;
line-height:1.6;

}

/* NAVBAR */

header{

position:sticky;
top:0;
background:rgba(15,23,42,0.8);
backdrop-filter:blur(12px);
padding:18px 40px;
border-bottom:1px solid rgba(255,255,255,0.05);

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;

}

.logo{

display:flex;
align-items:center;
gap:10px;
font-weight:600;
font-size:18px;

}

.logo img{

height:38px;

}

nav a{

margin-left:25px;
color:#e2e8f0;
text-decoration:none;
font-size:15px;
transition:0.3s;

}

nav a:hover{

color:#60a5fa;

}

/* HERO */

.hero{

padding:140px 20px;
text-align:center;

background: radial-gradient(circle at top,#2563eb,#0f172a);

}

.hero h1{

font-size:56px;
font-weight:700;
margin-bottom:20px;

}

.hero p{

font-size:20px;
max-width:700px;
margin:auto;
color:#cbd5f5;

}

.btn{

margin-top:40px;
display:inline-block;
padding:15px 40px;
border-radius:50px;

background:linear-gradient(135deg,#3b82f6,#9333ea);

color:white;
text-decoration:none;
font-weight:600;

box-shadow:0 10px 30px rgba(0,0,0,0.3);

transition:0.3s;

}

.btn:hover{

transform:translateY(-3px);

}

/* FEATURES */

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

max-width:1200px;
margin:auto;

padding:80px 20px;

}

.card{

background:rgba(255,255,255,0.05);

padding:35px;

border-radius:18px;

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,0.08);

transition:0.3s;

}

.card:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,0.4);

}

.card h3{

margin-bottom:12px;

}

/* CONTENT */

.content{

max-width:900px;
margin:auto;
padding:80px 20px;
text-align:center;

}

.content h1{

font-size:38px;
margin-bottom:20px;

}

/* BLOG */

.blog{

background:#1e293b;

padding:25px;

border-radius:12px;

margin-bottom:20px;

}

/* CONTACT FORM */

form{

display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;

}

input,textarea{

padding:14px;

border-radius:8px;

border:none;

}

button{

padding:14px;

background:#3b82f6;

color:white;

border:none;

border-radius:8px;

cursor:pointer;

}

/* FOOTER */

footer{

background:#020617;

margin-top:80px;

padding:50px 20px;

}

.footer{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer a{

display:block;

color:#cbd5f5;

text-decoration:none;

margin-top:10px;

}

.copyright{

text-align:center;

margin-top:40px;

color:#94a3b8;

}