@charset "UTF-8";

/* =====================================================
  BASE
===================================================== */
body,
header {
  min-width: 320px;
}
button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
br.m {
  display: none;
}

/* =====================================================
  MAIN VISUAL
===================================================== */
.main-visual {
  position: relative;
  width: 100%;
  margin: 91px auto 0;
  /* max-width: 1807px; */
  padding: 0 56px;
  border-radius: 40px;
}

/* =====================================================
  HERO (ONE FILE / FINAL)
  - 배경 전환: slide-bg
  - 이미지/텍스트/배경 애니메이션 분리
  - active 기준: .swiper-slide-active(기본) + .is-active(호환)
  - 모바일: 텍스트 → 버튼 → 이미지 스택
  - hero-control: 모바일 숨김(축소 원하면 아래 주석 참고)
===================================================== */

/* ---------- HERO ROOT ---------- */
.hero {
  position: relative;
  height: var(--hero-height-pc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  background: transparent; /* ✅ hero 자체 배경 제거 */
}

/* ---------- SWIPER FULL ---------- */
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ✅ Active: Swiper 기본 + 기존 is-active 호환 */
.swiper-slide.swiper-slide-active,
.swiper-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* 초기 로딩 안전장치(원치 않으면 삭제) */
.swiper-slide:first-child {
  opacity: 1;
}

/* ---------- BG LAYER ---------- */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.03);
}

.swiper-slide.swiper-slide-active .slide-bg,
.swiper-slide.is-active .slide-bg {
  opacity: 1;
  transform: scale(1);
  transition: opacity 600ms ease, transform 1200ms ease;
}

/* Slide BG presets */
.swiper-slide.slide-1 .slide-bg {
  background: linear-gradient(
    270deg,
    #d1e8ff -5.06%,
    #b1b1ff 66.16%,
    #0070db 125.77%
  );
}
.swiper-slide.slide-2 .slide-bg {
  background: linear-gradient(270deg, #f1ffc0 -5.07%, #b1b1ff 82.06%);
}
.swiper-slide.slide-3 .slide-bg {
  background: linear-gradient(270deg, #f9c1fc 4.55%, #9292ff 98.91%);
}
.swiper-slide.slide-4 .slide-bg {
  background: linear-gradient(90deg, #4747ff 0.88%, #c1fcee 79.13%);
}
.swiper-slide.slide-5 .slide-bg {
  background: linear-gradient(90deg, #ff9047 -3.61%, #f2ffa1 100.55%);
}

/* ---------- DESKTOP TEXT ---------- */
.slide-left {
  position: absolute;
  left: var(--side-pad-pc);
  top: 190px;
  width: min(760px, 50vw);
  z-index: 4;
}

/* TEXT EFFECT */
.swiper-slide .slide-copy {
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
}
.swiper-slide.swiper-slide-active .slide-copy,
.swiper-slide.is-active .slide-copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms ease-out, transform 420ms ease-out;
}

.slide-copy h1 {
  margin: 0 0 15px;
  font-size: var(--fz-h1-pc);
  font-weight: 400;
  line-height: 1.28;
  text-shadow: 0 4.342px 17.475px rgba(0, 0, 0, 0.21);
  transition: transform 0.8s ease;
  transform: translateY(0%);
  transition-delay: 0.3s;
}
.slide-copy h1 .sub {
  font-weight: 700;
}

.slide-copy p {
  margin: 0;
  font-size: var(--fz-body-pc);
  line-height: 24px;
  opacity: 0.92;
  font-weight: 500;
}

/* ---------- DESKTOP IMAGE ---------- */
.slide-right {
  position: absolute;
  right: var(--side-pad-pc);
  top: 60px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: min(1100px, 70vw);
  height: calc(var(--hero-height-pc) - 84px);

  pointer-events: none;
}

.hero .image-box {
  width: min(960px, 100%);
  max-width: 960px;
  aspect-ratio: 960 / 837;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 0;
  transform: translateY(calc(24px + var(--img-offset-y, 0))) scale(0.96);
  will-change: transform, opacity;
}

/* 첫 슬라이드 보정 */
.swiper-slide:first-child {
  --img-offset-y: 58px;
}

/* IMAGE EFFECT */
.swiper-slide.swiper-slide-active .image-box,
.swiper-slide.is-active .image-box {
  opacity: 1;
  transform: translateY(var(--img-offset-y, 0)) scale(1);
  transition: opacity 520ms ease 120ms,
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms;
}

.hero .image-box picture,
.hero .image-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 작은 컷 보정 */
.hero .image-box img {
  min-width: 60%;
  min-height: 60%;
}

/* ---------- HERO BUTTONS (PC 고정) ---------- */
#heroBtns {
  opacity: 1;
  transform: translateZ(0);
  will-change: transform;
}

.hero-btns {
  position: absolute;
  left: var(--side-pad-pc);
  top: 50%;
  z-index: 10;
  margin-top: 15px;

  display: flex;
  gap: 10px;
  align-items: center;

  transform: translateZ(0);
  will-change: transform;
}

.hero-btns button {
  height: var(--btn-h);
  padding: 0 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.29);
  color: #fff;
  backdrop-filter: blur(6px);
  font-size: 16px;
  text-shadow: 0 0.95px 8.927px rgba(0, 0, 0, 0.25);
}
.hero-btns .primary {
  background: #fff;
  color: #4b5cff;
  border: none;
  font-weight: 700;
  text-shadow: none;
}

/* ---------- HERO CONTROL (PC) ---------- */
.hero-control {
  position: absolute;
  left: var(--side-pad-pc);
  bottom: 100px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.hero-control .num {
  min-width: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.segline {
  width: var(--line-w-pc);
  display: flex;
}
.seg {
  flex: 1;
  height: var(--line-h);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.seg.active {
  background: #fff;
}

.hero-nav {
  width: var(--nav-size);
  height: var(--nav-size);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.hero-nav.hero-nav--next {
  background: url(../images/main/btn-point-right.svg) no-repeat 50%;
  background-size: 100%;
  display: inline-block;
  width: 24px;
  height: 24px;
}
.hero-nav.hero-nav--prev {
  background: url(../images/main/btn-point-left.svg) no-repeat 50%;
  background-size: 100%;
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* =====================================================
  Solution
===================================================== */
  .main .solution-detail-wrap{
    padding:68px 0 137px;
    margin:0 auto;
    width:100%;
  }
  
  .main .title-wrap{ margin-bottom:40px; }
  .main .title-wrap .title{ font-weight:400; margin-bottom:32px; }
  .main .title-wrap .title .sub{
    font-size:21px;
    color:#0070db;
    margin-bottom:12px;
  }
  .main .title-wrap .title h4{
    font-size:40px;
    font-weight:300;
    color:#000;
    line-height:140%;
  }
  .main .title-wrap h4 > .bold{ font-weight:500; }
  
  .main .box-cont{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
  }
  .main .box{
    border:1px solid #ddd;
    border-radius:20px;
    background:#fff;
    transition: all .15s ease-out;
  }
  .main .box:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 2px 10px 20px 0px rgb(25 25 25 / 10%);

  }
  .main .box .img{
    display:inline-block;
    width:100%;
    height:195px;
    background-color:#d9d9d9;
    border-radius:20px 20px 0 0;
    overflow:hidden;
  }
  .main .box .img img{
    margin:32px 0 0 32px;
  }
  .main .box .txt{ 
    padding:24px 24px; 
  }
  .main .box .txt .tit{
    font-size:18px;
    color:#000;
    margin-bottom:12px;
    font-weight:500;
  }
  .main .box .txt .desc{
    font-size:13.5px;
    color:#767676;
    font-weight:400;
    line-height:20px;
	  letter-spacing: -0.05px;
  }



/* =====================================================
  Banner
===================================================== */
.main .area-banner {
    width: 100%;
    padding: 120px 0 65px;
    background: linear-gradient(94deg, #EAF7C7 -3.43%, #8DAEF5 49.12%, #BBBEF4 98.3%);
}
.main .area-banner h2 {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 14.5px rgba(0, 0, 0, 0.17);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0px;
}
.main .area-banner h2 .bold {
    font-weight: 600;
}
/* =====================================================
  Key Point
===================================================== */
.main .key-point-wrap {
    padding: 137px 0 250px;
    margin: 0 auto;
    width: 100%;
    background-color: #F6F6F6;
}
.key-point-wrap .title-wrap  {
    margin-bottom: 0;
}
.btn-wrap-link {
    position: relative;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #0070DB;
    padding-right: 22px;
    width: fit-content;
    display: inline-flex;
    text-decoration: none;
}
.btn-wrap-link::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background:  url(../images/main/move_right_arrow_w.svg) center no-repeat;
    top: 5px;
    right: 0;
}
.key-point-wrap .box-in-tag {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin: 20px 0;
    justify-content: left;
    gap: 8px;
}
.key-point-wrap .box-in-tag .tag {
    padding: 0 20px;
    height: 38px;
    border-radius: 8px;
    border: 0.906px solid rgba(229, 229, 236, 0.73);
    background: #FFF;
    font-size: 14px;
    color: #111;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    gap: 8px;
}
.key-point-wrap .box-in-tag .tag .ico {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.icon-1 {
    background-image: url(../images/main/icon-1.png);
}
.icon-2 {
    background-image: url(../images/main/icon-2.png);
}
.icon-3 {
    background-image: url(../images/main/icon-3.png);
}
.icon-4 {
    background-image: url(../images/main/icon-4.png);
}
.icon-5 {
    background-image: url(../images/main/icon-5.png);
}
.icon-6 {
    background-image: url(../images/main/icon-6.png);
}
.icon-7 {
    background-image: url(../images/main/icon-7.png);
}
.icon-8 {
    background-image: url(../images/main/icon-8.png);
}
.icon-9 {
    background-image: url(../images/main/icon-9.png);
}
.icon-10 {
    background-image: url(../images/main/icon-10.png);
}
.icon-11 {
    background-image: url(../images/main/icon-11.png);
}
.icon-12 {
    background-image: url(../images/main/icon-12.png);
}
.key-point-wrap .section + .section {
    margin-top: 120px;
}
.key-point-wrap .right .title-wrap,
.key-point-wrap .right .box-in-tag {
    text-align: right;
    justify-content: flex-end;
}
.box-wrap .box-cont {
    gap: 24px;
    margin-bottom: 40px;
}
.box-wrap  .box {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px #00000026;
}
.box-wrap  .box .box-main {
    padding: 40px 24px;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
    border: 2px solid #fff;
    transition: 0.5s all;
    flex: 1;
}
.box-wrap  .box .box-main .tit {
    display: flex;
    padding: 18px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #F7F7FB;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 24px;
}
.box-wrap  .box .box-main .detail-tit {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0;
}
.box-wrap  .box .box-main .box-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
}
.box-wrap  .box .box-main .box-list .item {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    position: relative;
    border-radius: 8px;
    border: 1.008px solid #E5E5EC;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    color: #767676;
}
.box-wrap  .box .box-main .box-list .item.check {
    color: #111;
}
.box-wrap  .box .box-main .box-list .item.check::before {
    background: url(../images/main/icon_check.svg) center no-repeat;
}
.box-wrap  .box .box-main .box-list .item::before {
    background: url(../images/main/icon-unCheck.svg) center no-repeat;
    content: '';
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.box-wrap .box:hover,
.box-wrap .box.active {
    cursor: pointer;
    border: 1px solid #0070DB;
}
.box-wrap .box.active .box-main .tit {
    background: #E8F0FB;
}
.box-wrap  .box .box-footer {
    border-radius: 0 0 12px 12px;
    padding: 20px;
    background: #E8F0FB;
    color: #17436D;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.box-wrap  .box.active .box-footer {
    background: #0070DB;
    color: #fff;
}
.btn-pricing-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-pricing-wrap .btn-consult {
    padding: 0 40px;
    height: 48px;
    border-radius: 24px;
    background: #0070DB;
    color: #fff;
    position: relative;
    font-size: 17px;
    font-weight: 500;
}

.btn-pricing-wrap .btn-consult span {
    transition: all .8s;
}
.btn-pricing-wrap .btn-consult:hover {
    background: #1E63D2;
}
.btn-pricing-wrap .btn-consult:hover::after {
    content: "";
    position: absolute;
    background: url(../images/main/icon-arrow.svg) no-repeat;
    width: 9px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
}
.btn-pricing-wrap .btn-consult:hover span {
    margin-right: 60px;
}

.solution-mtabs,
.solution-slider { display:none; }
/* =====================================================
  RESPONSIVE
===================================================== */
@media screen and (max-width: 1440px) {
	.swiper-slide.slide-2 .slide-bg {
	  background: linear-gradient(270deg, #cce7a5 -5.07%, #b1b1ff 82.06%);
	}
	.swiper-slide.slide-4 .slide-bg {
	  background: linear-gradient(90deg, #4747ff 0.88%, #9fcaf3 79.13%);
	}
    .main-visual {
        padding: 0;
        margin: 70px auto 0;
        border-radius: 0;
      }
    
    .hero {
        padding: 0;
        border-radius: 0;
    }
    .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
    }
    .hero .image-box {
        width: min(760px, 100%);
        max-width: 760px;
    }
    .main .inner {
        width: 100%;
        min-width: 360px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 16px;
    }

}
@media screen and (max-width: 1300px) {
	.swiper-slide.slide-2 .slide-bg {
	  background: linear-gradient(270deg, #cce7a5 -5.07%, #b1b1ff 82.06%);
	}
	.swiper-slide.slide-4 .slide-bg {
	  background: linear-gradient(90deg, #4747ff 0.88%, #9fcaf3 79.13%);
	}
    .box-wrap .box-cont {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 1240px) {
	.swiper-slide.slide-2 .slide-bg {
	  background: linear-gradient(270deg, #cce7a5 -5.07%, #b1b1ff 82.06%);
	}
	.swiper-slide.slide-4 .slide-bg {
	  background: linear-gradient(90deg, #4747ff 0.88%, #9fcaf3 79.13%);
	}
      .slide-copy p {
        line-height: 1.55;
      }
      .slide-left {
        width: min(760px, 55vw);
      }
    
      .hero .image-box {
        width: min(576px, 100%);
        max-width: 576px;
      }
    
      .swiper-slide .slide-copy {
        transform: translateY(12px);
      }
      .hero .image-box {
        transform: translateY(calc(16px + var(--img-offset-y, 0))) scale(0.98);
      }
      .swiper-slide:first-child {
        --img-offset-y: 0;
      }
    
    
    /* 모바일은 1열 + 기본은 숨김 */
    .main .box-cont{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .main .box .img img {
        width: 100%;
    }
    .main .box .img {
        height: 335px;
    }

}
@media screen and (max-width: 1024px) {
	.swiper-slide.slide-2 .slide-bg {
	  background: linear-gradient(270deg, #cce7a5 -5.07%, #b1b1ff 82.06%);
	}
	.swiper-slide.slide-4 .slide-bg {
	  background: linear-gradient(90deg, #4747ff 0.88%, #9fcaf3 79.13%);
	}
    .hero {
        height: var(--hero-height-m);
    }
    
    .slide-left {
        position: relative;
        left: auto;
        top: 60px;
        width: 100%;
        text-align: center;
        z-index: 4;
    }
    .slide-right {
      position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-top: 80px;
        justify-content: center;
        z-index: 3;
    }    
    .slide-left,
    .slide-right {
        padding-inline: 8%;
    }

    .hero-control {
        display: none;
      }

    
    
    /* BUTTON (PC 고정 해제 → copy 아래) */
    .hero-btns {
        left: auto;
        bottom: 30px;
        top: auto;
        margin-top: 18px;
        transform: none;
        width: 100%;
        justify-content: center;
        /* flex-direction: column; */
        z-index: 6;
    }

    .hero-btns button {
        /* width: 100%;
        max-width: 320px;
        height: 40px;
        padding: 0 18px; */
    }
    .slide-copy h1 {
        font-size: var(--fz-h1-m);
    }

    
    .contents {
        padding-top: 48px;
    }
    
    .main .solution-detail-wrap{
        padding:48px 0 80px;
      }

    

        
    .main .area-banner h2 {
        font-size: 36px;
		letter-spacing: -3px;
    }

    .main .area-banner {
        padding: 65px 0 33px;
    }
    .main .area-banner h2 {
        font-size: 30px;
		letter-spacing: -3px;
    }


    .main .title-wrap .title .sub {
        font-size: 16px;
    }
    .btn-wrap-link {
        font-size: 14px;
        padding-right: 20px;
        margin-top: 12px
    }
    .btn-wrap-link::after {
        width: 12px;
        height: 12px;
    }
    .key-point-wrap .section + .section {
        margin-top: 60px;
    }
    
    .key-point-wrap .box-in-tag {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .key-point-wrap .box-in-tag .tag {
        width: 100%;
    }
    .main .title-wrap .title {
        margin-bottom: 20px;
    }
    .main .title-wrap {
        margin-bottom: 24px;
    }
    .main .key-point-wrap {
        padding: 100px 0 120px;
    }

    

    .box-wrap .box .box-main .detail-tit {
        margin-bottom: 12px;
    }
    .box-wrap .box .box-main {
        padding: 32px 16px;
    }
    .box-wrap .box .box-main .box-list .item {
        font-size: 14px;
    }
    .box-wrap .box .box-main .box-list {
        gap: 8px;

    }

    .box-wrap .box .box-main .box-list .item {
        padding: 12px;
        gap: 8px;
    }
    .box-wrap .box .box-main .tit {
        padding: 12px 16px;
        font-size: 16px;
        margin-bottom: 16px;
    }
    .box-wrap .box .box-footer {
        padding: 16px;
        font-size: 16px;
    }
    
}
@media screen and (max-width: 767px) {
	.swiper-slide.slide-2 .slide-bg {
	  background: linear-gradient(270deg, #cce7a5 -5.07%, #b1b1ff 82.06%);
	}
	.swiper-slide.slide-4 .slide-bg {
	  background: linear-gradient(90deg, #4747ff 0.88%, #9fcaf3 79.13%);
	}
    .main .area-banner h2 {
        font-size: 24px;
		letter-spacing: -2px;
    }
    .main .title-wrap .title .sub {
        font-size: 14px;
    }
    .main .title-wrap .title h4 {
        font-size: 24px;
    }
    
    br.m {
        display: block;
    }



      /* 탭 노출 */
      .solution-mtabs{
        display:flex;
        gap:8px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        padding:6px 2px 14px;
        margin:0 0 10px;
      }
      .solution-mtabs::-webkit-scrollbar{ height:6px; }
    
      .solution-mtabs .mtab{
        flex:0 0 auto;
        height:38px;
        padding:0 14px;
        color:#A7A7A7;
        font-size:14px;
        font-weight:600;
        white-space:nowrap;
      }
      .solution-mtabs .mtab.is-active{
        border-bottom:1px solid #111;
        color:#111;
      }
    
      /* ✅ 모바일: box-cont를 가로 스와이프 트랙으로 변경 */
      .main .box-cont {
        display:flex;                 /* grid -> flex */
        gap:12px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scroll-snap-type:x mandatory; /* 스냅 */
        scrollbar-width:none;
        padding-bottom:2px;
        touch-action: pan-x pan-y;
      }
      .main .box-cont::-webkit-scrollbar{ display:none; }
    
      /* ✅ 한 화면에 1개씩 */
      .main .box-cont .box{
        flex:0 0 100%;
        scroll-snap-align:start;
        display:block;               /* 숨기지 않음 */
      }
    
      /* 이미지/여백 모바일 최적화 */
      .main .box .img{ height:180px; }
      .main .box .img img{
        margin:24px 0 0 24px;
        max-width:70%;
        height:auto;
      }

    
      .box-wrap .box-cont {
        display: grid;
        grid-template-columns: 1fr;
        touch-action: auto;
        overflow-x: visible;
      }
      .box-wrap .box .box-main .box-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
      }
}
@media screen and (max-width: 480px) {
	

}
/* 터치 디바이스 hover 제거 */
@media (hover: none) and (pointer: coarse) {
  button:hover {
    filter: none;
  }
}
