
/*
Theme Name: H4NSON Complete Enterprise
Version: 3.0
*/

:root{
--bg:#07111d;
--panel:#101b2d;
--accent:#7e9ab8;
--text:#f4f7fb;
--muted:#a7b3c2;
--border:rgba(255,255,255,.08);
}

*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,sans-serif;
background:linear-gradient(180deg,#050b14,#091321);
color:var(--text);
line-height:1.7;
}

.container{
width:92%;
max-width:1280px;
margin:auto;
}

header{
position:fixed;
width:100%;
top:0;
z-index:999;
background:rgba(5,11,20,.88);
backdrop-filter:blur(10px);
border-bottom:1px solid var(--border);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 0;
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:2px;
}

.menu a{
color:#fff;
text-decoration:none;
margin-left:24px;
font-weight:600;
}

.hero,.page-header{
padding:190px 0 120px;
}

.hero h1,.page-header h1{
font-size:4.5rem;
line-height:1;
margin-bottom:28px;
max-width:850px;
}

.hero p,.page-header p{
font-size:1.15rem;
color:var(--muted);
max-width:760px;
}

.btn{
display:inline-block;
padding:16px 30px;
border-radius:10px;
background:linear-gradient(135deg,#6f8fb4,#9eb2cb);
color:#fff;
text-decoration:none;
font-weight:700;
margin-top:28px;
}

.section{
padding:100px 0;
}

.section-title{
margin-bottom:55px;
text-align:center;
}

.section-title h2{
font-size:3rem;
margin-bottom:12px;
}

.section-title p{
color:var(--muted);
max-width:700px;
margin:auto;
}

.grid{
display:grid;
gap:28px;
}

.grid-2{
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.grid-3{
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.card{
background:linear-gradient(180deg,#0e1829,#142338);
padding:36px;
border-radius:22px;
border:1px solid var(--border);
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:16px;
font-size:1.5rem;
}

.card p{
color:var(--muted);
}

.content p{
margin-bottom:24px;
color:var(--muted);
}

.contact-box{
background:linear-gradient(180deg,#0f1a2d,#16263b);
padding:40px;
border-radius:24px;
border:1px solid var(--border);
}

.contact-box input,
.contact-box textarea{
width:100%;
padding:14px;
margin-bottom:16px;
background:#0c1522;
border:1px solid rgba(255,255,255,.08);
color:#fff;
border-radius:8px;
}

.footer{
padding:80px 0;
border-top:1px solid var(--border);
margin-top:50px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:40px;
}

.footer a{
color:#fff;
text-decoration:none;
}

@media(max-width:900px){
.hero h1,.page-header h1{
font-size:3rem;
}
.menu{
display:none;
}
}
