

/* ===== FULLWIDTH ===== */
.fullwidth{
width:100vw;
margin-left:calc(-50vw + 50%);
overflow:hidden;
font-family:Arial, sans-serif;
}
/* ===== HERO ===== */
.hero{
background:linear-gradient(135deg,#0F172A,#000);
color:#fff;
text-align:center;
padding:140px 20px;
}
.hero h1{
font-size:48px;
margin-bottom:20px;
}
.hero p{
opacity:.85;
margin-bottom:40px;
}
.buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}
.btn{
background:#2563EB;
padding:15px 30px;
border-radius:10px;
color:#fff;
text-decoration:none;
font-weight:bold;
}
/* ===== SPLIT ===== */
.split{
display:flex;
min-height:650px;
}
/* PMAD */
.left{
flex:1;
background:#fff;
padding:120px 80px;
}
.left ul{
list-style:none;
padding:0;
}
.left li{
margin-bottom:15px;
font-weight:600;
}
/* PSYCHO DARK */
.psycho{
flex:1;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.9)),
url("https://images.unsplash.com/photo-1520975922326-1a3f5a8cce3b?q=80&w=1600");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
padding:120px 60px;
}
.psycho-box{
max-width:420px;
}
.psycho h2{
font-size:36px;
letter-spacing:3px;
margin-bottom:20px;
}
.psycho p{
opacity:.85;
margin-bottom:35px;
}
.btn-dark{
background:#fff;
color:#000;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:700;
}
/* ===== TECH ===== */
.tech{
background:#0B0F1A;
color:#fff;
text-align:center;
padding:140px 20px;
}
.tech img{
width:100%;
max-width:1400px;
border-radius:16px;
box-shadow:0 40px 100px rgba(0,0,0,.6);
margin-top:60px;
}
/* ===== MOBILE ===== */
@media(max-width:900px){
.split{flex-direction:column;}
.left,.psycho{padding:80px 30px;}
}