/* ===========================
   HOME - SPLIT SCREEN (FULL)
=========================== */

.hs-page{
  background:#fff;
}

/* Container */
.hs-container{
  width:100%;
  margin:0;
  padding:0;
}

/* HERO */
.hs-hero{
  min-height:calc(100vh - 90px);
  display:flex;
  align-items:stretch;
  padding:0;
}

/* SPLIT */
.hs-split{
  width:100%;
  min-height:calc(100vh - 90px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}

/* LEFT SIDE */
.hs-left{
  background:#fff;
  padding:90px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hs-left h1{
  margin:0 0 18px;
  font-size:62px;
  line-height:1.05;
  letter-spacing:-0.04em;
  font-weight:900;
  color:#111;
}

.hs-sub{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:#555;
  max-width:520px;
}

/* BUTTONS */
.hs-buttons{
  display:flex;
  gap:14px;
  margin-top:22px;
  flex-wrap:wrap;
}

.hs-btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:12px;
  background:var(--brand-purple);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(142,42,168,0.25);
  transition:0.2s ease;
}

.hs-btn:hover{
  opacity:0.92;
  transform:translateY(-1px);
}

.hs-btn-light{
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:none;
}

/* RIGHT SIDE */
.hs-right{
  background:linear-gradient(135deg,#6a1b9a 0%,#8e2aa8 55%,#4a1570 100%);
  padding:90px 70px;
  display:flex;
  align-items:center;
}

.hs-right-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.hs-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:18px;
  font-weight:700;
  color:rgba(255,255,255,0.92);
}

.hs-check{
  width:30px;
  height:30px;
  border-radius:999px;
  background:rgba(255,255,255,0.15);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  flex-shrink:0;
}

/* ===========================
   FOOTER WEG OP HOMEPAGE
=========================== */

.home .site-footer,
.home footer{
  display:none !important;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:1200px){

.hs-left{
  padding:70px 60px;
}

.hs-right{
  padding:70px 50px;
}

.hs-left h1{
  font-size:54px;
}

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

/* hero mag groeien */
.hs-hero{
  min-height:auto;
}

/* onder elkaar */
.hs-split{
  display:flex;
  flex-direction:column;
  min-height:auto;
}

/* spacing */
.hs-left{
  padding:40px 30px;
}

.hs-right{
  padding:40px 30px;
  min-height:350px;
}

/* typography */
.hs-left h1{
  font-size:36px;
  line-height:1.2;
}

.hs-sub{
  font-size:16px;
}

/* buttons */
.hs-btn{
  padding:12px 14px;
  font-size:14px;
}

}