@charset "UTF-8";

/* ========================================= 버튼 및 공통 요소 ========================================= */
.btn_wrap .btn_general, 
.btn_wrap .btn_ghost, 
.btn_wrap .btn_gradient {
    max-width: 300px; 
    width: 100%; 
    padding: 7px 60px 7px 68px;
    box-sizing: border-box;
}
.btn_wrap a {
    font-size: 24px;
    display: inline-block;
}

.btn_wrap .btn_gradient:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* 말풍선 스타일 */
.bubble {
    padding: 8px 20px; 
    color: #369EFF; 
    border: 1px solid #2688ff;
    background: #fff;
    border-radius: 12px; 
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
}

/* 그라디언트 버튼 */
.btn_wrap .btn_gradient {
    height: 78px;
    color: #fff;
    background: linear-gradient(90deg, #57DBFF 0%, #2D7BFF 55%, #B8A7FF 100%);
    box-shadow: 0 18px 30px rgba(25, 60, 140, 0.10);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================= 메인 상단 (Header) ========================================= */
.content .content_head .bg01 {
  position: absolute;
  bottom: 190px;
  left: calc(50% - 520px);
  width: 50px;
  animation: floatY 2s ease-in-out infinite;
  z-index: 2;
}

.content .content_head .bg02 {
  position: absolute;
  bottom: 310px;
  right: calc(50% - 540px );
  width: 70px;
  animation: floatY 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatY {
  0% {
    transform: rotate(0deg); opacity: 1; scale: 1;
  }
  50% {
    transform: rotate(6deg); opacity: 0.5; scale: 0.9;
  }
  100% {
    transform: rotate(0deg); opacity: 1; scale: 1;
  }
}

.event .content_head {
    padding: 150px 0 60px;
    background: linear-gradient(to top, #ffffff, #2B83FF);
}

.content .content_head {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    background-color: #e4f4ff;
    overflow: hidden;
    z-index: 0;
}

.content .content_head .head_inner {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center; /* 텍스트 중앙 정렬 */
}

.content .content_head .bg03 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    height: 100%;
    display: block;
}

.content .content_head .title_wrap {
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 타이틀 이미지 */
.content .content_head img.pc,{
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.content .content_head p.des {
    font-size: 22px;
    line-height: 160%;
    color: #545a78;
    text-align: center;
}

.content .content_head .btn_wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center; /* 버튼 영역 중앙 정렬 */
}

.content .content_head .btn_item_group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================= 바디 영역 공통 ========================================= */
.content .title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    gap: 10px;
}

/* Area: Process (지원사업 한눈에) */
.content .area_process {
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .area_process h2 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.content .area_process .cont_wrap {
    margin-bottom: 60px;
    width: 100%;
    max-width: 1040px; /* 너비 제한 추가 */
}

.content .area_process .cont_wrap .card {
    width: 100%;
    border: 3px solid transparent;
    background:
        linear-gradient(#F3FAFF , #F3FAFF ) padding-box,
        linear-gradient(135deg, #3de2ff 0%, #9f1aff 100%) border-box;
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(88, 95, 66, 0.2);
    overflow: hidden;
}

.content .area_process .cont_wrap .card .card_top {
    display: flex; 
    align-items: center; 
    justify-content: space-between; /* 양쪽 정렬 */
    padding: 20px 0 0 58px;
    font-size: 20px; 
    font-weight: 500; 
    color: #393939;
}

.content .area_process .cont_wrap .card .card_top ul {
    width: 100%;
}

.content .area_process .cont_wrap .card .card_top li {
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    margin-bottom: 16px; 
}
.content .area_process .cont_wrap .card .card_top li p {
    line-height: 1.5;
}

.content .area_process .cont_wrap .card .badge {
    display: inline-block; 
    height: fit-content; 
    padding: 4px 8px; 
    font-size: 16px;
    color: #5199FF; 
    background-color: #fff; 
    border-radius: 10px; 
    border: 1px solid #5199FF;
    flex-shrink: 0; /* 뱃지 줄어듦 방지 */
}

.content .area_process .cont_wrap .card .card_bottom {
    padding: 24px 58px 64px;
}

.content .area_process .cont_wrap .card .card_bottom .badge.core {
    background-color: #5199FF; 
    color: #fff; 
    margin-bottom: 16px;
    display: inline-block;
}

.content .area_process .cont_wrap .card .card_bottom .box_wrap {
    display: flex; 
    flex-direction: row; 
    gap: 10px;
}

.content .area_process .cont_wrap .card .card_bottom .box {
    width: 100%; 
    padding: 24px 24px; 
    border-radius: 24px; 
    background-color: #fff; 
    box-shadow: 0 4px 10px rgba(88, 95, 66, 0.1);
    text-align: center; /* 텍스트 중앙 정렬 */
}

.content .area_process .cont_wrap .card .point {
    font-size: 18px; 
    color: #5385FF; 
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
}
.content .area_process .cont_wrap .card .desc {
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    text-align: left;
}
.content .area_process .cont_wrap .card .desc b {
    font-weight: bold;
}

/* ===== 카드 구분선 및 화살표 디자인 ===== */
/* 상단/하단 영역 사이 구분선 */
.content .area_process .cont_wrap .card .card_top {
    position: relative;
}

.content .area_process .cont_wrap .card .card_top::after {
    content: '';
    display: block;
    bottom: 0;
    left: -58px; 
    width: calc(100% + 116px); 
    height: 1px;
    background-color: #dce8f7;
    position: absolute;
}

/* 화살표 */
.content .area_process .cont_wrap .card .card_bottom .box_wrap {
    position: relative;
    z-index: 2;
}

.content .area_process .cont_wrap .card .card_bottom .box {
    position: relative;
    overflow: visible;
}

.content .area_process .cont_wrap .card .card_bottom .box:not(:last-child)::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-color: #5199FF;
    border-radius: 50%;
    
    /* [수정] 화살표 아이콘을 '솔리드 삼각형' SVG로 교체 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='18px' height='18px'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px; /* 삼각형 크기 조절 (필요시 숫자 변경) */
    
    /* 위치 잡기 */
    position: absolute;
    top: 50%;
    right: -24px; /* 박스 오른쪽 밖으로 내보냄 (gap 크기에 맞춰 조정) */
    transform: translateY(-50%); /* 수직 중앙 정렬 */
    z-index: 10;
    box-shadow: 0 2px 4px rgba(45, 123, 255, 0.2); /* 살짝 그림자 */
}

/* Area: Benefit (혜택) */
.content .area_benefit {
    width: 100%;
    padding: 100px 0 150px;
    background-color: #F5F8FB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .area_benefit h2 {
    font-size: 48px;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.content .area_benefit p {
    font-size: 20px;
    color: #888;
    text-align: center;
}

.content .area_benefit .cont_wrap {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Area: Service (올인원 업무플랫폼) */
.content .area_service {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.content .area_service .title_wrap {
    text-align: center;
}
.content .area_service .title_wrap h2 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
}
.content .area_service .title_wrap p {
    font-size: 20px;
    color: #888;
    margin-top: 10px;
}

/* Area: Price (유형 선택) */
.content .area_price {
    padding: 80px 0 140px;
    margin: 0 auto;
    background: linear-gradient(to top, #C4DBFA, #fff);
}
.content .area_price .title_wrap h2 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    text-align: center;
}
.content .area_price .title_wrap p {
    font-size: 20px;
    color: #888;
    text-align: center;
}

.content .area_price .cont_wrap {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.content .area_price .cont_wrap .box_cont {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
}

.content .area_price .cont_wrap .box {
    width: 100%;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.content .area_price .cont_wrap .box_main {
    padding: 60px 50px;
}

.content .area_price .cont_wrap .box_cont .box .box_main .tit {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}
.content .area_price .cont_wrap .box_cont .box .box_main .desc {
    font-size: 22px;
    color: #6b7072;
    line-height: 1.4;
}

.content .area_price .cont_wrap .box_cont .box .box_main .box_txt {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 22px;
}
.content .area_price .cont_wrap .box_cont .box .box_main .box_num {
    color: #333;
    margin-top: 24px;
}
.content .area_price .cont_wrap .box_cont .box .box_main .box_num .strikethrough {
    color: #a1a1a1;
    font-size: 22px;
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 400;
}
.content .area_price .cont_wrap .box_cont .box .box_main .box_num .num {
    font-size: 42px;
    font-weight: 500;
    margin-right: 2px;
}

/* Price Active State */
.content .area_price .cont_wrap .box_cont .box.active .box_main {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #02b6d7 0%, #9f1aff 100%) border-box;
    border: 3px solid transparent;
    border-radius: 25px;
}
.content .area_price .cont_wrap .box_cont .box.active .box_main .tit {
    background: linear-gradient(to right, #00e4f6, #a64cff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Area: Feature (믿고 쓸 수 있는 이유) */
.content .area_feature {
    width: 100%;
    padding: 140px 0 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content .area_feature h2 {
    font-size: 48px;
    color: #333;
    line-height: 140%;
    font-weight: 600;
    text-align: center;
}
.content .area_feature p {
    font-size: 20px;
    color: #888;
    margin-top: 10px;
    text-align: center;
}
.content .area_feature ul {
    max-width: 1000px;
    width: 100%;
    margin-top: 60px;
    padding: 40px 140px;
    border-radius: 30px;
    background-color: #eef9ff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}
.content .area_feature ul li {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #c5ebff;
    padding: 30px 0;
    align-items: flex-start;
}
.content .area_feature ul li:last-child {
    border-bottom: none;
}
.content .area_feature ul li .text_wrap {
    display: flex;
    flex-direction: column;
}
.content .area_feature ul li .tit {
    font-size: 28px;
    color: #2688ff;
    font-weight: 600;
}
.content .area_feature ul li .txt {
    font-size: 22px;
    color: #747474;
    margin-top: 10px;
    line-height: 1.4;
}

/* 아이콘 설정 */
.content .ic_feature01 { width: 94px; height: 94px; background: url("./images/ic_feature01.png"); display: inline-block; flex-shrink: 0; }
.content .ic_feature02 { width: 94px; height: 94px; background: url("./images/ic_feature02.png"); display: inline-block; flex-shrink: 0; }
.content .ic_feature03 { width: 94px; height: 94px; background: url("./images/ic_feature03.png"); display: inline-block; flex-shrink: 0; }

.content .ic_arrow,
.content .ic_arrow_blue {
    background: url("./images/ic_arrow.svg") no-repeat;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}
.content .ic_arrow_blue {
    background: url("./images/ic_arrow_blue.svg") no-repeat;
}

/* 하단 문의 영역 */
.content_foot .main_title span {
    font-size: 48px;
    color: #333;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
}
.content_foot .title_wrap {
    text-align: center;
}
.content_foot .btn_wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* 유의사항 */
.content .area_notice {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1d2d54;
    color: #fff;
}
.content .area_notice .info_cont {
    max-width: 1040px;
    width: 100%;
    padding: 90px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}
.content .area_notice .info_cont p.title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}
.content .area_notice .info_cont li {
    margin: 4px;
    font-size: 19px;
    color: #8199c0;
    line-height: 1.5;
}

/* =========================================
   MEDIA QUERIES (반응형)
   ========================================= */

@media (max-width: 1240px) {
  .content .content_head img.mo{
    margin-bottom: 18px;
  }
  .content .title_wrap{
    margin-bottom: 32px;
  }

    .content .inner {
        width: 100%;
        padding: 20px;
    }
    .content .content_head img {
        width: 100%;
    }
    .content .area_price .cont_wrap .box_cont {
        display: flex;
        flex-direction: column;
    }

    .content .area_feature ul {
        padding: 30px 6%;
        margin-top: 30px;
    }
    .content .area_feature ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    /* 모바일용 아이콘 */
    .content .ic_feature01 { width: 51px; height: 51px; background: url(./images/ic_feature01_mo.png); background-size: contain;}
    .content .ic_feature02 { width: 51px; height: 51px; background: url(./images/ic_feature02_mo.png); background-size: contain;}
    .content .ic_feature03 { width: 51px; height: 51px; background: url(./images/ic_feature03_mo.png); background-size: contain;}
    
    .content .area_feature ul li {
        gap: 15px;
    }
    .content .area_feature ul li .tit {
        font-size: 20px;
    }
    .content .area_feature ul li .txt {
        font-size: 16px;
    }
}

@media (max-width: 999px) {
  /* 버튼 사이즈 */
  .btn_wrap .btn_general, 
  .btn_wrap .btn_ghost, 
  .btn_wrap .btn_gradient{
    padding: 4px 64px !important;
  }
  /* 화살표*/
    .content .area_process .cont_wrap .card .card_bottom .box:not(:last-child)::after {
        top: auto;
        bottom: -20px;
        left: 8px;      
        transform: translateX(50%) rotate(90deg);
        width: 32px;
        height: 32px;
    }

    .content .area_process .cont_wrap .card .card_top::after {
      margin-bottom: 12px;
    }
    .content .area_process .cont_wrap .card p,.content .area_process .cont_wrap .card .point, .content .area_process .cont_wrap .card .desc {
      font-size: 16px;
    }

    .content .area_process .cont_wrap .card .badge {
      font-size: 13px;
    }

    /* 배경 이미지 숨김 */
    .content .content_head .bg03 {
        display: none;
    }

    /* 폰트 사이즈 조정 */
    .btn_wrap a {
      font-size: 18px;
    }
    .content .area_process h2,
    .content .area_service .title_wrap h2,
    .content .area_price .title_wrap h2,
    .content .area_feature h2,
    .content .area_benefit h2,
    .content .area_faq h2 {
        font-size: 28px;
    }
    .content .area_service .title_wrap p,
    .content .area_price .title_wrap p,
    .content .area_feature p,
    .content .area_benefit p {
        font-size: 15px;
    }

    /* 헤더 텍스트 */
    .content .content_head p.des {
        font-size: 16px;
    }

    /* 버튼 가운데 정렬 */
    .content .content_head .btn_wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .content .content_head .btn_item_group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* [수정 3] Process 영역 세로 정렬 */
    .content .area_process .cont_wrap .card .card_top {
        flex-direction: column;
        padding: 36px 20px 20px;
        text-align: left;
        align-items: flex-start;
    }
    .content .area_process .cont_wrap .card .card_top img {
        display: none;
    }

    .content .area_process .cont_wrap .card .card_bottom {
        padding:20px 20px 40px 20px;
    }
    .content .area_process .cont_wrap .card .card_bottom .box_wrap {
        flex-direction: column; /* 박스 세로 정렬 */
    }
    
    /* Price 영역 모바일 조정 */
    .content .area_price .cont_wrap .box_main {
        padding: 40px 20px;
    }
    .content .area_price .cont_wrap .box_cont .box .box_main .tit {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .content .area_price .cont_wrap .box_cont .box .box_main .desc {
        font-size: 15px;
    }
    .content .area_price .cont_wrap .box_cont .box .box_main .box_num .strikethrough {
        font-size: 14px;
    }
    .content .area_price .cont_wrap .box_cont .box .box_main .box_num .num {
        font-size: 24px;
    }
    
    /* 하단 타이틀 모바일 */
    .content_foot .main_title span {
        font-size: 20px;
    }
    .content_foot h2 {
        font-size: 28px;
    }

    /* 유의사항 모바일 */
    .content .area_notice .info_cont {
        padding: 40px 20px;
    }
    .content .area_notice .info_cont p.title {
        font-size: 20px;
    }
    .content .area_notice .info_cont li {
        font-size: 14px;
    }
}