:root{
  --wf:#0f766e;
}

/* HERO */
.wfCtHero{
  position:relative;
  width:100%;
  min-height:380px;
  overflow:hidden;
  background:#0b0f14;
}

.wfCtViewport{ width:100%; height:100%; overflow:hidden; }

.wfCtTrack{
  display:flex;
  height:100%;
  transition:transform .6s ease;
}

/* SLIDE */
.wfCtSlide{
  position:relative;
  flex:0 0 100%;
  min-height:380px;
}

/* MEDIA */
.wfCtMedia{ position:absolute; inset:0; z-index:0; }
.wfCtImg,.wfCtVid{
  width:100%; height:100%;
  object-fit:cover;
}
.wfCtBlank{
  width:100%; height:100%;
  background:linear-gradient(180deg,#0b0f14,#0e141a);
}

/* OVERLAY */
.wfCtOverlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg,var(--ct-ov-from),var(--ct-ov-to));
  z-index:1;
}

/* CONTENT */
.wfCtWrap{
  position:relative;
  z-index:2;
  max-width:1320px;
  margin:0 auto;
  padding:80px 16px 60px;
}

.wfCtTitle{
  margin:0 0 10px;
  font-size:clamp(30px,4.5vw,56px);
  font-weight:950;
  color:var(--ct-title);
}

.wfCtSub{
  max-width:760px;
  font-size:18px;
  line-height:1.6;
  color:var(--ct-text);
  font-weight:800;
}

.wfCtBtn{
  margin-top:18px;
  display:inline-flex;
  padding:12px 22px;
  border-radius:14px;
  background:var(--ct-btnbg);
  color:var(--ct-btntx);
  font-weight:950;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(0,0,0,.28);
}

/* DOTS */
.wfCtDots{
  position:absolute;
  left:0; right:0; bottom:16px;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:5;
}

.wfCtDot{
  width:10px; height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.3);
  border:1px solid rgba(255,255,255,.5);
}
.wfCtDot.is-active{
  width:26px;
  background:#fff;
}
