#seoLuminiHeroV2{
  width:100%;
  height:100vh;
  height:100svh;
  position:relative;
  overflow:hidden;
  background:#000;
}

#seoLuminiHeroV2 .sl-hero-bg{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  opacity:0;
  filter:brightness(.92);
  transition:
    opacity 1.65s cubic-bezier(.22,1,.36,1),
    filter 1.65s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}

#seoLuminiHeroV2 .sl-hero-bg.is-active{
  opacity:1;
  filter:brightness(1);
}

#seoLuminiHeroV2 .sl-hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  transform:scale(var(--start-scale, 1.12));
  will-change:transform;
}

#seoLuminiHeroV2 .sl-hero-bg.sl-zoom::before{
  animation:slBgZoomV2 6.5s ease-out forwards;
}

@keyframes slBgZoomV2{
  0%{
    transform:scale(var(--start-scale, 1.12));
  }
  100%{
    transform:scale(1);
  }
}

#seoLuminiHeroV2 .sl-hero-bg01{
  --start-scale:1.12;
}

#seoLuminiHeroV2 .sl-hero-bg01::before{
  background-image:
    linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.58)),
    url("/wp-content/uploads/2026/05/visual2.jpg");
}

#seoLuminiHeroV2 .sl-hero-bg02{
  --start-scale:1.02;
}

#seoLuminiHeroV2 .sl-hero-bg02::before{
  background-image:
    linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.58)),
    url("/wp-content/uploads/2026/05/visual1.jpg");
  background-position:center center;
}

#seoLuminiHeroV2::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size:4px 4px;
  opacity:.045;
  mix-blend-mode:soft-light;
}

#seoLuminiHeroV2 .sl-hero-content{
  position:absolute;
  top:0;
  left:50%;
  z-index:10;
  width:min(1500px, calc(100% - 40px));
  height:100%;
  padding-bottom:200px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  text-align:left;
  color:#fff;
  transform:translateX(-50%);
  box-sizing:border-box;
}

#seoLuminiHeroV2 .sl-hero-title,
#seoLuminiHeroV2 .sl-hero-copy,
#seoLuminiHeroV2 .sl-hero-btn{
  opacity:0;
  transform:translateY(30px);
  transition:
    opacity 1.15s ease,
    transform 1.15s cubic-bezier(.22,1,.36,1);
}

#seoLuminiHeroV2 .sl-hero-title{
  margin:0;
  font-size:57px;
  line-height:1.12;
  font-weight:700;
  letter-spacing:-5.5px;
}

#seoLuminiHeroV2 .sl-hero-copy{
  margin:18px 0 0;
  font-size:19px;
  line-height:1.6;
  font-weight:400;
  letter-spacing:-1.5px;
}

#seoLuminiHeroV2 .sl-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:32px;
  padding:14px 34px;
  background:#8b1e1e;
  color:#fff;
  font-size:16px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  letter-spacing:-1.5px;
  transition:
    opacity 1.15s ease,
    transform 1.15s cubic-bezier(.22,1,.36,1),
    background .35s ease,
    box-shadow .35s ease;
}

#seoLuminiHeroV2 .sl-hero-btn:hover{
  background:#6f1717;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

#seoLuminiHeroV2.sl-show-title .sl-hero-title,
#seoLuminiHeroV2.sl-show-copy .sl-hero-copy,
#seoLuminiHeroV2.sl-show-button .sl-hero-btn{
  opacity:1;
  transform:translateY(0);
}

#seoLuminiHeroV2 .sl-curtain-layer{
  position:absolute;
  inset:0;
  z-index:30;
  pointer-events:none;
  overflow:hidden;
}

#seoLuminiHeroV2 .sl-curtain-panel{
  position:absolute;
  top:0;
  height:100%;
  width:25.25%;
  background:#080808;
  transform:translateY(0);
  transition:transform 2.15s cubic-bezier(.77,0,.175,1);
  will-change:transform;
}

#seoLuminiHeroV2 .sl-curtain-panel::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:1px;
  height:100%;
  background:rgba(255,255,255,.04);
}

#seoLuminiHeroV2 .sl-curtain-panel:nth-child(1){
  left:0;
  transition-delay:.04s;
}

#seoLuminiHeroV2 .sl-curtain-panel:nth-child(2){
  left:25%;
  transition-delay:.14s;
}

#seoLuminiHeroV2 .sl-curtain-panel:nth-child(3){
  left:50%;
  transition-delay:.24s;
}

#seoLuminiHeroV2 .sl-curtain-panel:nth-child(4){
  left:75%;
  transition-delay:.34s;
}

#seoLuminiHeroV2 .sl-curtain-layer.is-open .sl-curtain-panel:nth-child(1),
#seoLuminiHeroV2 .sl-curtain-layer.is-open .sl-curtain-panel:nth-child(3){
  transform:translateY(-105%);
}

#seoLuminiHeroV2 .sl-curtain-layer.is-open .sl-curtain-panel:nth-child(2),
#seoLuminiHeroV2 .sl-curtain-layer.is-open .sl-curtain-panel:nth-child(4){
  transform:translateY(105%);
}

#seoLuminiHeroV2::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:29;
  background:#080808;
  pointer-events:none;
  opacity:1;
  transition:opacity .2s ease;
}

#seoLuminiHeroV2.sl-curtain-ready::before{
  opacity:0;
}

@media (max-width:1024px){
  #seoLuminiHeroV2{
    height:90vh;
    height:90svh;
  }

  #seoLuminiHeroV2 .sl-hero-bg::before{
    background-position:center bottom;
  }

  #seoLuminiHeroV2 .sl-hero-bg01::before{
    background-image:
      linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.58)),
      url("/wp-content/uploads/2026/05/visual2.jpg");
    background-position:center center;
    background-size:cover;
  }

  #seoLuminiHeroV2 .sl-hero-bg02::before{
    background-image:
      linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.58)),
      url("/wp-content/uploads/2026/05/m_visual02.png");
    background-position:center center;
    background-size:cover;
  }

  #seoLuminiHeroV2 .sl-hero-content{
    width:calc(100% - 40px);
    padding-bottom:150px;
  }

  #seoLuminiHeroV2 .sl-hero-title{
    font-size:42px;
    letter-spacing:-2px;
  }

  #seoLuminiHeroV2 .sl-hero-copy{
    font-size:17px;
    letter-spacing:-1.2px;
  }

  #seoLuminiHeroV2 .sl-hero-btn{
    font-size:15px;
    letter-spacing:-1.3px;
  }
}

@media (max-width:767px){
  #seoLuminiHeroV2 .sl-hero-content{
    width:calc(100% - 32px);
    padding-bottom:110px;
  }

  #seoLuminiHeroV2 .sl-hero-title{
    font-size:34px;
    letter-spacing:-1.8px;
  }

  #seoLuminiHeroV2 .sl-hero-copy{
    margin-top:14px;
    font-size:16px;
    line-height:1.55;
    letter-spacing:-1px;
  }

  #seoLuminiHeroV2 .sl-hero-btn{
    margin-top:26px;
    padding:13px 28px;
    font-size:15px;
  }
}

.popup-dim{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;

  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}

.businessPop{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 9999;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease, transform .5s ease;
}

.popup-dim.show{
  opacity: 1;
  visibility: visible;
}

.businessPop.show{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.businessPop.hide-animate{
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 10px));
}

.businessPop img{
  width: 100%;
  display: block;
}

.businessPop .popFoot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #f5f5f5;
}

.todayCheck{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
}

.todayCheck input{
  margin: 0;
}

.popCloseBtn{
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px){
  .businessPop{
    width: 82%;
    max-width: 320px;
  }

  .businessPop .popFoot{
    padding: 9px 12px;
  }

  .todayCheck,
  .popCloseBtn{
    font-size: 12px;
  }
}

.main-section-overview,
.main-section-overview *,
.main-section-overview *::before,
.main-section-overview *::after{
  box-sizing:border-box;
}

.main-section-overview ul,
.main-section-overview ol{
  margin:0;
  padding:0;
  list-style:none;
}

.main-section-overview h1,
.main-section-overview h2,
.main-section-overview h3,
.main-section-overview h4,
.main-section-overview h5,
.main-section-overview h6,
.main-section-overview p,
.main-section-overview div,
.main-section-overview span,
.main-section-overview a,
.main-section-overview small{
  margin:0;
  padding:0;
}

.main-section-overview img{
  display:block;
  max-width:100%;
}

/* pc/mo 안전 보완 */
.main-section-overview .moView{
  display:none;
}

.main-section-overview .pcView{
  display:block;
}

.main-section-overview{
  display:flex;
  justify-content:center;
  width:100%;
  position:relative;
  overflow:hidden;
  background:#f9fafc;
}

.main-section-overview .overview-bg{
  display:flex;
  justify-content:center;
  width:100%;
  height:100%;
  background-size:contain;
  background-position:center;
  background:#fff;
  color:#fff;
  letter-spacing:-0.05em;
  transition:height 1s ease;
  position:absolute;
}

.main-section-overview .overview-bg > .overview-bg-box{
  position:relative;
  width:100%;
}

.main-section-overview .overview-bg > .overview-bg-box > img{
  width:auto;
  max-width:none;
  height:100%;
  object-fit:contain;
  object-position:center;
  margin:0 auto;
}

.main-section-overview .overview-bg > .overview-bg-box > img.pcView{
  margin:0 0 0 auto;
}

.main-section-overview.active .overview-bg{
  height:calc(100% - 260px);
  transition-delay:1.5s;
}

.main-section-overview .overview-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:200px;
  position:relative;
  padding-bottom:150px;
  width:100%;
  height:100%;
  max-width:1504px;
  margin:0 auto;
  transition:gap 1.2s;
}

.main-section-overview.active .overview-inner{
  gap:50px;
  transition-delay:1.5s;
}

.main-section-overview .overview-big{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:138px;
  height:138px;
  border-radius:50%;
  background:#151515;
  color:#fff;
  font-size:17px;
  line-height:1.2em;
  font-weight:700;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
}

.main-section-overview .overview-big > span{
  font-size:16px;
  font-weight:400;
  transition:transform .5s;
}

.main-section-overview .overview-big:hover > span{
  transform:rotate(90deg);
}

.main-section-overview .overview-inner-title{
  width:489px;
  height:129px;
  position:relative;
}

.main-section-overview .overview-inner-title > p:nth-child(1){
  font-family:CarismaClassic;
  font-weight:400;
  font-size:45px;
  letter-spacing:0.05em;
  color:#0A0A0A;
  position:absolute;
  left:0;
  transform:translateX(100px);
  opacity:0;
  transition:transform 1.2s, opacity 1.2s;
}

.main-section-overview .overview-inner-title > p:nth-child(2){
  font-family:futura-pt;
  font-size:45px;
  letter-spacing:0.647em;
  color:#8b1e1e;
  position:absolute;
  bottom:0;
  transform:translateX(-100px);
  opacity:0;
  transition:transform 1.2s, opacity 1.2s;
}

.main-section-overview.active .overview-inner-title > p:nth-child(1){
  opacity:1;
  transform:translateX(0);
}

.main-section-overview.active .overview-inner-title > p:nth-child(2){
  opacity:1;
  transform:translateX(0);
}

.main-section-overview .overview-box{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:260px;
  background:#fff;
  position:absolute;
  left:0;
  bottom:0;
  transform:translateY(100%);
  transition:1s ease;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.main-section-overview.active .overview-box{
  transform:translateY(0);
  transition-delay:.5s;
}

.main-section-overview .overview-box-inner{
  display:flex;
  flex-direction:column;
  gap:20px;
  width:100%;
  max-width:1516px;
}

.main-section-overview .overview-title{
  font-family:CarismaClassic;
  font-weight:400;
  font-size:36px;
}

.main-section-overview .overview-list{
  display:flex;
  gap:20px;
  width:100%;
  white-space:nowrap;
}

.main-section-overview .overview-list > li{
  display:flex;
  flex-direction:column;
  gap:15px;
  flex:1;
  font-size:20px;
  letter-spacing:-0.04em;
}

.main-section-overview .overview-list > li > div{
  overflow:hidden;
}

.main-section-overview .overview-list > li.short{
  flex:0;
}

.main-section-overview .overview-list > li.short > div{
  padding-right:50px;
}

.main-section-overview .overview-desc{
  font-weight:500;
  height:75px;
}

.main-section-overview .overview-desc > p{
  width:100%;
  height:100%;
  transform:translateY(100%);
  transition:1s ease;
}

.main-section-overview.active .overview-list > li > div > p{
  transform:translateY(0);
  transition-delay:2s;
}

.main-section-overview .overview-desc small{
  font-size:14px;
  font-weight:300;
}

.main-section-overview .overview-name{
  font-size:16px;
  color:#999;
}

.main-section-overview .overview-name > p{
  transition:transform 1s;
  transform:translateY(-100%);
}

.main-section-overview .overview-line{
  width:0;
  height:1px;
  background:#aaa;
  transition:1s ease;
  margin-bottom:0;
}

.main-section-overview.active .overview-line{
  width:100%;
  transition-delay:1.5s;
}

/* 기본은 숨김 */
.main-section-overview .overview-mo-big{
  display:none;
  text-decoration:none;
}

@media (max-width:1200px){
  .main-section-overview.active .overview-bg{
    height:calc(100% - 350px);
    transition-delay:1.5s;
  }

  .main-section-overview .overview-bg > .overview-bg-box > img{
    max-width:100%;
    height:100%;
    object-position:center 60%;
    object-fit:cover;
    width:100%;
  }

  .main-section-overview .overview-inner{
    gap:150px;
    max-width:none;
    padding:0 50px 250px;
  }

  .main-section-overview.active .overview-inner{
    gap:30px;
  }

  .main-section-overview .overview-big > span{
    font-size:14px;
  }

  .main-section-overview .overview-inner-title{
    width:430px;
    height:100px;
    position:relative;
  }

  .main-section-overview .overview-inner-title > p:nth-child(1){
    font-size:36px;
  }

  .main-section-overview .overview-inner-title > p:nth-child(2){
    font-size:36px;
  }

  .main-section-overview .overview-box{
    height:350px;
  }

  .main-section-overview .overview-box-inner{
    gap:20px;
    width:100%;
    max-width:none;
    padding:0 30px;
  }

  .main-section-overview .overview-title{
    font-size:30px;
  }

  .main-section-overview .overview-list{
    flex-direction:column;
    gap:10px;
  }

  .main-section-overview .overview-list > li{
    gap:5px;
    font-size:16px;
  }

  .main-section-overview .overview-desc{
    height:auto;
  }

  .main-section-overview .overview-desc small{
    font-size:12px;
  }

  .main-section-overview .overview-name{
    font-size:14px;
  }
  .main-section-overview .overview-bg > .overview-bg-box{
    overflow:hidden;
  }

  .main-section-overview .overview-bg > .overview-bg-box > img{
    transform:scale(1.12);
    transition:
      transform 1.2s cubic-bezier(.22,1,.36,1),
      opacity 1s ease;
    will-change:transform;
  }

  .main-section-overview.active .overview-bg > .overview-bg-box > img{
    transform:scale(1);
  }

  .main-section-overview .overview-box{
    transform:translateY(110%);
    transition:transform 1s cubic-bezier(.22,1,.36,1);
  }

  .main-section-overview.active .overview-box{
    transform:translateY(0);
  }
}

@media (max-width:768px){
  .main-section-overview{
    height:700px !important;
  }

  .main-section-overview .pcView{
    display:none !important;
  }

  .main-section-overview .moView{
    display:block !important;
  }

  .main-section-overview.active .overview-bg{
    height:calc(100% - 300px);
  }

  .main-section-overview .overview-inner{
    display:none;
  }

  .main-section-overview .overview-box{
    height:300px;
    padding:0 20px;
  }

  .main-section-overview .overview-box-inner{
    gap:20px;
    padding:0;
  }

  .main-section-overview .overview-title{
    font-size:20px;
  }

  .main-section-overview .overview-list{
    flex-direction:column;
    gap:10px;
  }

  .main-section-overview .overview-list > li{
    gap:5px;
    font-size:12px;
  }

  .main-section-overview .overview-desc{
    height:auto;
    order:3;
  }

  .main-section-overview .overview-desc small{
    font-size:12px;
  }

  .main-section-overview .overview-line{
    order:2;
  }

  .main-section-overview .overview-name{
    font-size:12px;
    order:1;
  }

  .main-section-overview .overview-mo-big{
    display:block;
    padding:5px 20px;
    background:#000;
    position:absolute;
    color:#fff;
    letter-spacing:-0.04em;
    font-weight:500;
    font-size:14px;
    border-radius:100px;
    right:20px;
    bottom:20px;
  }
}