@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
/* html {
overflow: hidden;
    height: 100%;
}
body {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    -webkit-overflow-scrolling: touch;

} */
div, li, ul, p, dl, dt, dd, h1, h2, h3, h4, h5, h6 {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #000;
}
.container {
    width: 1400px;
    margin: 0 auto;
}

.animate {
    opacity: 0;
}

/* PC 버전 애니메이션 초기화 */
@media(min-width: 992px) {
    .wiz_animation, .wiz_swiper {
        opacity: 0;
        visibility: hidden;
        transition: 1s ease-out;
    }

    /* 활성화 되었을 때 */
    .wiz_animation.wiz_active, 
    .wiz_swiper.wiz_active {
        opacity: 1 !important;
        transform: translateX(0) !important;
        visibility: visible;
    }
}

/* 모바일에서는 애니메이션 없이 바로 보이게 */
@media(max-width: 991px) {
    .wiz_animation, .wiz_swiper {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}
@media(max-width:1440px) {
    .container {
        width: 100%;
        max-width: 100%;

        }
}


.visual {
     height: 100%;
    background: url('../img/landing07/visual.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display:flex;
    justify-content: center;
    align-items: center;
}
.visual .title {
    text-align: center;
}

.visual .title p {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 15px;
    color: #fff;
     letter-spacing: 1.5px;
}

.visual .title p span {
    display: inline-block;
  
     font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.05em;
     background: linear-gradient(to right, #ded1fb, #e6ffdd, #b3f0f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;


    position: relative;
    /* 1. 텍스트 그라데이션 설정 */
    background: linear-gradient(to right, #ded1fb, #e6ffdd, #b3f0f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 3;
}
.visual .title p span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    width: 231px;
    height: 16px;
    /* 붓 효과 질감 이미지 (투명도 있는 PNG) */
    background: url('../img/landing07/h1_bg.png') no-repeat center center / contain;
    
    /* 만약 이미지 없이 단색/그라데이션 배경만 깔 경우 */
    /* background: rgba(255, 255, 255, 0.2); */
    /* background: linear-gradient(to right, #ded1fb, #e6ffdd, #b3f0f5); */
    /* filter: blur(5px); */
    
    z-index: -1; /* 글자 뒤로 배치 */
}
.visual .title h1 {
    font-size: 130px;
    font-family: 'Playfair Display', serif; /* 명조 계열 폰트 사용 시 */
    font-style: italic;
    font-weight: 700;
    line-height: 120px;
    margin-bottom: 45px;
    /* 폰트 그라데이션 핵심 코드 */
    background: linear-gradient(to right, #ffffdc, #ffe4c8, #9bff94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* 이미지와 유사한 은은한 광채 효과 */
    text-shadow: 0 0 15px rgba(222, 255, 220, 0.5);
}

.visual .title .line {
    width: 60px;
    height: 1px;
    background: #fff;
    margin: 0 auto 30px;
    opacity: 0.6;
}

.visual .title span {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.02em;
    display: block;
    color: #fff;
}
.section01 {
    padding: 120px 0;
    text-align: center;
}



/* 상단 타이틀 영역 */
.section01 .title_area h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
}

.section01 .title_area h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(to right, #fda34b ,#e2cf69,  #88e269);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 탭 버튼 영역 */
.section01 .tab_menu {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 14px 45px 14px 20px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    gap: 5px;
    margin-top: 6px;
}

.section01 .tab_menu .item {
    font-size: 26px;
    font-weight: 700;
    color: #333;
}
.section01 .tab_menu .item i {
    font-size:15px;
    margin-left: 6px;
}
.section01 .tab_menu .item.active {
    background: linear-gradient(to right, #ff508c, #ffbd4a);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 80, 140, 0.3);
    border-radius: 3em;
    padding: 8px 28px;
   font-weight:800;
    font-size:24px;
    margin-right: 20px;
}
.section01 .tab_menu .item.active::after {
    font-family: 'bootstrap-icons';
    content: "\F285";
    font-size:15px;
    margin-left: 6px;
}
/* 컨텐츠 리스트 (그리드) */
.section01 .content_list .grid {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background: #f6f6f6;
}

.section01 .content_list .grid .img_box {
    flex: 1;
    height: 600px;
}

.section01 .content_list .grid .img_box img {
    width: 100%;
    height: 100%;
}

.section01 .content_list .grid .text_box {
    flex: 1;
    height: 100%;
}

.section01 .content_list .grid .text_box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.section01 .content_list .grid .text_box p {
    font-size: 20px;
    color: #5c5c5c;
    line-height: 1.6;
}

/* 하단 요약 문구 */
.section01 .summary_footer {
    margin-top: 100px;
}

.section01 .summary_footer p {
    font-size: 24px;
    font-weight:700;
    margin-bottom: 15px;
}

.section01 .summary_footer p span{
    position: relative;
    display:inline-block;
    z-index: 1;
}
.section01 .summary_footer p span::before {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #ffeca9;
    content: '';
    margin-top: 20px;
    z-index: -1;
 
}

.section01 .summary_footer h4 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -1px;
}
/* 기본 설정 */
.section02 {
    padding: 110px 0;
    background-color: #f6f6f6;
}
.section02 .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 타이틀 상속 구조 */
.section02 .title_area {
    text-align: center;
    margin-bottom: 50px;
}
.section02 .title_area h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 26px;
    letter-spacing: -1px;
}
.section02 .title_area p  {
    font-size:22px;
    color: #303030;
    font-weight:500;
}
.section02 .title_area p span {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #8359e3, #ee6e18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section02 .title_area p span::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(131, 89, 227, 0.3), rgba(238, 110, 24, 0.3));
}

.section02 .portfolio_wrap {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.section02 .portfolio_wrap .sub_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.section02 .compare_box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 46px 50px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}
.section02 .compare_box.art {
    border: none;
     box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    
}
.section02 .compare_box.art::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2.5px;
    background: linear-gradient(to right, #ffac96, #ffce3a, #c472ef);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.section02 .compare_box .content_row {
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.section02 .compare_box .chart_group {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.section02 .compare_box .info_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}
.section02 .compare_box .info_header .type_name {
    font-weight: 700;
    font-size: 18px;
}
.section02 .compare_box .info_header .ratio_label {
    margin-left: auto;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.section02 .compare_box .info_header .badge_point {
    background-color: #fff3bf;
    color: #f08c00;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    margin-left: 12px;
}
.section02 .compare_box .info_header .badge_point i{
    margin-right: 2px;
}
.section02 .compare_box .info_header .highlight_text {
    margin-left: auto;
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1.5px solid #000;
    padding-bottom: 0px;
}
.section02 .compare_box .bar_bg {
    width: 100%;
    height: 50px;
    background-color: #eee;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
}
.section02 .compare_box .bar_bg .bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.section02 .compare_box .bar_bg .academic_full {
    width: 100%;
    background-color: #b2b2b2;
}
.section02 .compare_box .bar_bg .academic_part {
    width: 40%;
    background-color: #eee;
    color: #888;
    
}
.section02 .compare_box .bar_bg .portfolio_part {
    width: 60%;
    background: linear-gradient(to right, #ffbb54, #b4ec51);
     border-top-left-radius: 25px;
     border-bottom-left-radius: 25px;
}
.section02 .compare_box .arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.section02 .compare_box .result_card {
    width: 210px;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section02 .compare_box .result_card.gray {
    background-color: #f2f2f2;
    font-weight:600;
    height: 115px;
}
.section02 .compare_box .result_card.navy {
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    height: 115px;
}
.section03 {
    padding: 110px 0;
    background-color: #fff;
}

.section03 .title_area {
    text-align: center;
    margin-bottom: 80px;
}

.section03 .title_area h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

.section03 .title_area p {
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    font-weight:500;
}

.section03 .title_area p .gradient_text {
    background: linear-gradient(to right, #a283ee, #f4a282);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
     position: relative;
     display:inline-block;
}
.section03 .title_area p .gradient_text::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgba(131, 89, 227, 0.2), rgba(238, 110, 24, 0.2));
}
.section03 .feature_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section03 .feature_card {
    border-radius: 20px;
    padding: 40px 50px;
    box-sizing: border-box;
}

.section03 .feature_card .icon_box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.section03 .feature_card .icon_box img {
    width: 24px;
    height: auto;
}

.section03 .feature_card h3 {
    font-size: 23px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section03 .feature_card p {
    font-size: 18px;
    color: #4b4b4b;
    line-height: 1.6;
    word-break: keep-all;
    font-weight:500;
}

.section03 .feature_card p span {
    font-weight: 700;
}

.section03 .feature_card.bg_blue { background-color: #f4f6fc; }
.section03 .feature_card.bg_blue .icon_box { background-color: #e5ecfd; }
.section03 .feature_card.bg_blue p span { color: #3b82f6; }

.section03 .feature_card.bg_teal { background-color: #f2faf5; }
.section03 .feature_card.bg_teal .icon_box { background-color: #dcfce7; }
.section03 .feature_card.bg_teal p span { color: #10b981; }

.section03 .feature_card.bg_purple { background-color: #f6f5fc; }
.section03 .feature_card.bg_purple .icon_box { background-color: #ede9fe; }
.section03 .feature_card.bg_purple p span { color: #8b5cf6; }

.section03 .feature_card.bg_red { background-color: #fdf5f3; }
.section03 .feature_card.bg_red .icon_box { background-color: #fee2e2; }
.section03 .feature_card.bg_red p span { color: #ef4444; }

.section03 .feature_card.bg_orange { background-color: #fef8f0; }
.section03 .feature_card.bg_orange .icon_box { background-color: #ffedd5; }
.section03 .feature_card.bg_orange p span { color: #f59e0b; }

.section03 .feature_card.bg_lime { background-color: #f5fcf1; }
.section03 .feature_card.bg_lime .icon_box { background-color: #ecfccb; }
.section03 .feature_card.bg_lime p span { color: #65a30d; }

.section04 {
    padding: 110px 0 150px;
    background-color: #f6f6f6;
}

.section04 .title_area {
    text-align: center;
    margin-bottom: 60px;
}

.section04 .title_area h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

.section04 .title_area p {
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.section04 .student_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section04 .student_item {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.section04 .student_item .img_box {
    width: 611px;
    flex-shrink: 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.section04 .student_item .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section04 .student_item:hover .img_box img {
    transform: scale(1.1);
}

.section04 .student_item .img_box .num {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    z-index: 10;
}

.section04 .student_item .img_box .num::after {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    margin-top: 5px;
}

.section04 .student_item .txt_box {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); 
     position: relative;
}

.section04 .student_item .txt_box h3 {
    font-size: 29px;
    font-weight: 800;
    color: #4d3434;
    line-height: 42px;
    padding: 0;
    margin: 0
}

.section04 .student_item .txt_box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 25px;
   
}

.section04 .student_item .txt_box .line {
    width: 30px;
    height: 1px;
    background-color: #000;
    margin-bottom: 25px;
}

.section04 .student_item .txt_box p {
    font-size: 18px;
    color: #616161;
    line-height: 1.6;
    word-break: keep-all;
    
}

.section04 .student_item .txt_box p.strong_text {
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-size:20px;
     position: relative;
     display:inline-block;
     margin-bottom: 12px;
}
.section04 .student_item .txt_box p.strong_text::before {
   position: absolute;
   width: 248px;
   height: 1px;
   background: #000;
   content: '';
   margin-top: 28px;
}
.section04 .student_item .txt_box p span {
    color: #3b82f6;
    font-weight: 700;
}
.section05 {
    padding: 140px 0;
    background-color: #fafafa;
}

.section05 .title_area {
    text-align: center;
    margin-bottom: 90px;
}

.section05 .title_area h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
}

.section05 .major_card_wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.section05 .major_card_wrap .major_card {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.section05 .major_card_wrap .major_card .img_box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.section05 .major_card_wrap .major_card .img_box img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.6s ease;
}

.section05 .major_card_wrap .major_card:hover .img_box img {
    transform: scale(1.1);
}

.section05 .major_card_wrap .major_card .img_box .img_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    box-sizing: border-box;
    pointer-events: none;
}

.section05 .major_card_wrap .major_card .img_box .img_text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.section05 .major_card_wrap .major_card .img_box .img_text h3 span {
    font-size: 16px;
    font-weight: 400;
}

.section05 .major_card_wrap .major_card .img_box .img_text p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8)
}

.section05 .major_card_wrap .major_card .info_box {
    padding: 35px 42px 50px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 12px;
}

.section05 .major_card_wrap .major_card .info_box .left_col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section05 .major_card_wrap .major_card .info_box .info_title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    border-bottom: 1px solid #000;
    /* margin-bottom: 250px; */
    line-height: 23px
}

.section05 .major_card_wrap .major_card .info_box .spin_icon {
    width: 38px;
    margin-top: 32px;
}

.section05 .major_card_wrap .major_card .info_box .spin_icon img {
    width: 100%;
    height: auto;
    animation: rotateSpin 6s linear infinite;
}

.section05 .major_card_wrap .major_card .info_box .univ_wrap {
    flex: 1;
}

.section05 .major_card_wrap .major_card .info_box .univ_wrap .univ_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.section05 .major_card_wrap .major_card .info_box .univ_wrap .univ_list li {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}
.section06 {
    padding: 110px 0;
    /* background: radial-gradient(circle at 15% 0%, #fff6f0 0%, transparent 40%), 
                radial-gradient(circle at 85% 0%, #f0f5ff 0%, transparent 40%), 
                #fdfdfd; */
                background: url('../img/landing07/sec06_bg.jpg');
                background-repeat: no-repeat;
}

.section06 .title_area {
    text-align: center;
    margin-bottom: 60px;
}

.section06 .title_area h2 {
    font-size: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    font-family: 'Montserrat','Noto Sans KR', sans-serif;
    
}

.section06 .tab_menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 70px;
}

.section06 .tab_menu .tab_item {
    padding: 18px 34px;
    border-radius: 30px;
    /* border: 1px solid #e5e5e5; */
    font-size: 16px;
    color: #939393;
    background-color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
     border: 1px #000 transparent;
}

.section06 .tab_menu .tab_item.active {
    border-color: #000;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px #000 solid;
}

.section06 .slider_wrap {
    position: relative;
    /* max-width: 1100px;
    margin: 0 auto; */
    /* padding: 0 60px; */
    padding: 0 25px;
}

.section06 .case_slider .card_group {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.section06 .case_slider .card {
    /* flex: 1; */
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
    overflow: hidden;

}

.section06 .profile_card {
   flex: 1.2;
    min-width: 420px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #ececec;
}

.section06 .profile_card .card_head {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f7f7f7;
    padding: 8px 30px 8px 15px;
    border-radius: 30px;
    width: max-content;
    margin-bottom: 30px;
}

.section06 .profile_card .card_head .avatar {
    width: 33px;
    height: 33px;
}

.section06 .profile_card .card_head .head_title {
    font-weight: 600;
    font-size: 16px;
    color: #363636;
}

.section06 .profile_card .stats_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
}

.section06 .profile_card .stat_item .stat_label {
    font-size: 14px;
    color: #afafaf;
    margin-bottom: 8px;
    font-weight: 500;
}

.section06 .profile_card .stat_item .large_num {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.section06 .profile_card .stat_item .small_txt {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-left: 4px;
}

.section06 .profile_card .stat_item .txt_val {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 5px;
}

.section06 .problem_card {
   flex: 0.8;
    min-width: 375px;
    background: linear-gradient(135deg, #cb5050, #f67119);
    color: #fff;
}

.section06 .problem_card .card_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.section06 .problem_card .badge {
    background-color: #af3330;
    padding: 15px 35px;
    border-radius: 3em;
    font-size: 17px;
    font-weight: 800;
    color: #f9e2aa;
}

.section06 .problem_card .bg_icon {
    /* width: 45px;
    opacity: 0.9; */
}

.section06 .problem_card .problem_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.section06 .problem_card .problem_list li {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #fbebeb;
    text-indent: -8px;

}
.section06 .problem_card .problem_list li::before {
    content: "·  ";
}
.section06 .problem_card .problem_list li span {
    color: #ffd98f
}
.section06 .result_card {
    flex: 1;
    min-width: 432px;
    background: linear-gradient(135deg, #8ddd46, #bfdd46);
    color: #000;
}

.section06 .result_card .card_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section06 .result_card .title_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section06 .result_card .title_wrap h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Montserrat','Noto Sans KR', sans-serif;
}

.section06 .result_card .title_wrap .badge {
    background-color: rgba(100, 180, 20, 0.85);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius:3em;
}

.section06 .result_card .check_icon {
    /* width: 40px; */
}

.section06 .result_card .univ_name {
    border-left: 3px solid #000;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Montserrat','Noto Sans KR', sans-serif;
    color: #2d2929;
}

.section06 .result_card .desc {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    word-break: keep-all;
    color: #131313;
}

.section06 .result_card .desc .red_txt {
    color: #a40606;
    border-bottom: 1px #c7a137 solid;
}

.section06 .slider_wrap .slick-prev, 
.section06 .slider_wrap .slick-next {
    width: 67px;
    height: 67px;
    background-color: #f1f1f1;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.section06 .slider_wrap .slick-prev:hover, 
.section06 .slider_wrap .slick-next:hover {
    background-color: #e5e5e5;
}

.section06 .slider_wrap .slick-prev {
    left: -80px;
}

.section06 .slider_wrap .slick-next {
    right: -80px;
}

.section06 .slider_wrap .slick-prev::before {
    content: "";
    border: solid #444;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(135deg);
    margin-left: 5px;
}

.section06 .slider_wrap .slick-next::before {
    content: "";
    border: solid #444;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-45deg);
    margin-right: 5px;
}
.section07 {
    height: 910px;
    background:url('../img/landing07/sec07_bg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
}

.section07 .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section07 .text_box {
    color: #fff;
}

.section07 .text_box .badge {
    display: inline-block;
    background-color: rgba(103,60,60, 0.8);
    color: #eedddd;
    padding: 15px 24px;
    border-radius: 30px;
    font-size: 21px;
    font-weight:600;
}

.section07 .text_box h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #fff;
}

.section07 .text_box .desc {
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.section07 .text_box .desc2 {
     font-size: 22px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.section07 .text_box .highlight_desc {
    font-size: 22px;
    line-height: 1.4;
    font-weight:600;
    color: #fff;
}

.section07 .text_box .highlight_desc span {
    background: linear-gradient(to right, #cebafd, #c0fff4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    
}
@keyframes rotateSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media(max-width:1100px){ 
    .section02 .container {
    max-width: 100%;
    margin: 0 auto;
}
 }
@media (max-width: 1140px) {
    .visual {
        padding: 120px 0;
    }

    .visual .title h1 {
        font-size: 100px;
        line-height: 100px;
        margin-bottom: 35px;
        text-shadow: 0 0 12px rgba(222, 255, 220, 0.4);
    }

    .visual .title p {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .visual .title p span {
        font-size: 22px;
    }

    .visual .title p span::before {
        width: 195px;
        height: 14px;
    }

    .visual .title span {
        font-size: 20px;
        padding: 0 20px;
    }
    .section01 {
        padding: 80px 0;
    }

    .section01 .title_area h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .section01 .tab_menu {
        padding: 10px 30px 10px 15px;
        margin-bottom: 50px;
    }

    .section01 .tab_menu .item {
        font-size: 20px;
    }

    .section01 .tab_menu .item.active {
        font-size: 20px;
        padding: 6px 20px;
    }

    .section01 .content_list .grid .img_box {
        height: 380px;
        flex:none;
        width: 50%;
    }

    .section01 .content_list .grid .text_box {
        padding: 40px;
        flex:none;
        width: 50%;
    }

    .section01 .content_list .grid .text_box h3 {
        font-size: 28px;
    }

    .section01 .content_list .grid .text_box p {
        font-size: 16px;
    }

    .section01 .summary_footer h4 {
        font-size: 32px;
    }
    .section02 {
        padding: 80px 0;
    }

    .section02 .title_area h2 {
        font-size: 38px;
    }
    .section02 .title_area p {
        font-size: 20px;
    }
    .section02 .compare_box {
        padding: 35px 30px;
    }
    .section02 .compare_box .info_header .type_name {
        font-size: 16px;
    }
    .section02 .compare_box .result_card {
        width: 180px;
        font-size: 14px;
    }
    .section03 .feature_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.section03 .feature_card {
    border-radius: 20px;
    padding: 40px 50px;
    box-sizing: border-box;
}

.section03 .feature_card .icon_box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
    .section04 {
        padding: 80px 0 100px;
    }

    .section04 .title_area {
        margin-bottom: 50px;
    }

    .section04 .title_area h2 {
        font-size: 40px;
    }

    .section04 .title_area p {
        font-size: 20px;
    }

    .section04 .student_item .img_box {
        width: 45%;
    }

    .section04 .student_item .txt_box {
        padding: 40px;
    }

    .section04 .student_item .txt_box h3 {
        font-size: 24px;
        line-height: 1.4;
    }

    .section04 .student_item .txt_box p.strong_text {
        font-size: 19px;
    }
    .section05 {
        padding: 100px 0;
    }

    .section05 .title_area {
        margin-bottom: 60px;
    }

    .section05 .title_area h2 {
        font-size: 40px;
    }

    .section05 .major_card_wrap {
        gap: 20px;
        padding: 0 20px;
    }

    .section05 .major_card_wrap .major_card .info_box {
        padding: 30px 25px 40px;
        gap: 25px;
    }

    .section05 .major_card_wrap .major_card .info_box .info_title {
        font-size: 19px;
    }
    .section06 {
        padding: 80px 0;
    }

    .section06 .title_area {
        margin-bottom: 40px;
    }

    .section06 .title_area h2 {
        font-size: 40px;
    }

    .section06 .tab_menu {
        margin-bottom: 50px;
        gap: 10px;
    }

    .section06 .tab_menu .tab_item {
        padding: 14px 24px;
        font-size: 15px;
    }
.section06 .slider_wrap {
    padding: 0;
}
    .section06 .case_slider .card_group {
        gap: 15px;
    }

    .section06 .profile_card {
        min-width: 350px;
        padding: 25px;
    }

    .section06 .problem_card {
        min-width: 300px;
        padding: 25px;
    }

    .section06 .result_card {
        min-width: 350px;
        padding: 25px;
    }

    .section06 .result_card .title_wrap h3 {
        font-size: 24px;
    }

 

    .section06 .slider_wrap .slick-prev,
    .section06 .slider_wrap .slick-next {
        width: 50px;
        height: 50px;
        display:none;
    }
    .section07 {
        height: auto;
        padding: 100px 0;
    }
    .section07 .text_box .badge {
        font-size: 18px;
        padding: 12px 20px;
    }
    .section07 .text_box h2 {
        font-size: 36px;
    }
    .section07 .text_box .desc,
    .section07 .text_box .desc2,
    .section07 .text_box .highlight_desc {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .visual {
        height: auto;
        padding: 100px 0;
    }

    .visual .title {
        padding: 0 0px;
    }

    .visual .title h1 {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 15px;
        padding-top: 0;
        margin-top: 12px;
        text-shadow: 0 0 10px rgba(222, 255, 220, 0.4);
    }

    .visual .title p {
        font-size: 15px;
        margin-bottom: 0px;
        letter-spacing: 0;
       
    }

    .visual .title p span {
        font-size: 15px;  padding: 0;
        margin: 0;
    }

    .visual .title p span::before {
        width: 132px;
        height: 12px;
        top: 55%;
    }

    .visual .title .line {
        width: 40px;
        margin-bottom: 20px;
    }

    .visual .title span {
        font-size: 16px;
        line-height: 1.5;
        word-break: keep-all;
    }
    .section01 {
        padding: 30px 0 40px;
    }

    .section01 .title_area h2 {
        font-size: 22px;
        line-height: 1.3;
        word-break: keep-all;
        margin-bottom: 12px;
    }

    .section01 .tab_menu {
        /* flex-direction: column; */
        border-radius: 0px;
        background: transparent;
            box-shadow: none;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 30px;
        justify-content: center;
    align-items: center;
    
    }
    .section03 {
        padding: 80px 0;
    }

    .section03 .title_area {
        margin-bottom: 50px;
    }

    .section03 .title_area h2 {
        font-size: 40px;
    }

    .section03 .title_area p {
        font-size: 20px;
    }

    .section03 .feature_grid {
        gap: 20px;
    }

    .section03 .feature_card {
        padding: 30px;
    }

    .section03 .feature_card h3 {
        font-size: 21px;
    }
    
.section01 .tab_menu .item {
    font-size:19px;
    
}
    .section01 .tab_menu .item.active {
        margin-right: 0;
        margin-bottom: 0;
        width: 110px;
        padding: 10px 20px;
        box-sizing: border-box;
        font-size:17px;
        margin-right: 12px;
    }
    .section01 .tab_menu .item.active::after {
        content: "\F282";
    }

    .section01 .content_list .grid {
        flex-direction: column;
    }
  

    .section01 .content_list .grid .img_box {
        width: 100%;
        height: 300px;
    }

    .section01 .content_list .grid .text_box {
        padding: 40px 20px;
        width: 100%;
        font-size:16px;
    }
    .section01 .content_list .grid .text_box br {
        display:none;
    }
    .section01 .content_list .grid .text_box h3 {
        font-size:19px;
    }


    .section01 .content_list .grid:nth-child(even) {
        flex-direction: column-reverse
    }

    .section01 .summary_footer {
        margin-top: 60px;
    }

    .section01 .summary_footer p {
        font-size: 18px;
    }

    .section01 .summary_footer h4 {
        font-size: 20px;
        line-height: 1.4;
    }
    .section02 {
        padding: 40px 0;
    }
    .section02 .container {
        padding-right: 0;
        max-width: 100%;
    width: 100%;
    }
    .section02 .title_area {
        padding-right: 15px;
    }
        .section02 .title_area h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
        .section02 .title_area p {
        font-size: 16px;
    }
     .section02 .title_area p br {
        display:none;
     }
     .section02 .portfolio_wrap .sub_title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}
   .section02 .compare_box {
     display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        border-top-right-radius:0;
        border-bottom-right-radius:0;

   }
   .section02 .compare_box.art {
     border: 2px #ffac96 solid;
   }
   .section02 .compare_box.art::before {
    content: "";
    position: absolute;
    inset: 0;
     border-top-right-radius:0;
        border-bottom-right-radius:0;
    padding: 2.5px;
    background: none;
    -webkit-mask: none;
    -webkit-mask-composite: none;
    mask-composite: none;
    pointer-events: none;
    width: 100%;
    display:none;
   
}
.section03 {
        padding: 40px 0;
    }

    .section03 .title_area {
        margin-bottom: 40px;
    }

    .section03 .title_area h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section03 .title_area p {
        font-size: 16px;
    }
    .section03 .title_area p br {
        display:none;
    }

    .section03 .feature_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section03 .feature_card {
        padding: 30px 25px;
    }

    .section03 .feature_card .icon_box {
        margin-bottom: 15px;
    }

    .section03 .feature_card h3 {
        font-size:19px;
        margin-bottom: 12px;
    }

    .section03 .feature_card p {
        font-size: 16px;
    }
    .section04 {
        padding: 40px 0 50px;
    }

    .section04 .title_area {
        margin-bottom: 40px;
    }

    .section04 .title_area h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section04 .title_area p {
        font-size: 16px;
    }

    .section04 .student_list {
        gap: 40px;
    }

    .section04 .student_item {
        flex-direction: column;
        gap: 0;
    }

    .section04 .student_item .img_box {
        width: 100%;
        height: 300px;
        border-radius: 20px 20px 0 0;
    }

    .section04 .student_item .txt_box {
        width: 100%;
        padding: 30px 25px;
        border-radius: 0 0 20px 20px;
    }

    .section04 .student_item .txt_box h3 {
        font-size: 19px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .section04 .student_item .txt_box h4 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .section04 .student_item .txt_box .line {
        margin-bottom: 15px;
    }

    .section04 .student_item .txt_box p.strong_text {
        width: 100%;
    }

    .section04 .student_item .txt_box p.strong_text::before {
        width: 230px;
        margin-top: 28px;
    }

    .section04 .student_item .txt_box p {
        font-size: 16px;
    }
    .section04 .student_item .img_box .num {
        font-size:20px;
    }
    .section05 {
        padding: 40px 0;
    }

    .section05 .title_area {
        margin-bottom: 40px;
    }

    .section05 .title_area h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .section05 .major_card_wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
    }

    .section05 .major_card_wrap .major_card {
        width: 100%;
        max-width: 480px;
    }

    .section05 .major_card_wrap .major_card .img_box {
        height: 220px;
    }

    .section05 .major_card_wrap .major_card .info_box {
        padding: 30px 20px;
        gap: 20px;
    }

    .section05 .major_card_wrap .major_card .info_box .info_title {
        font-size: 18px;
    }

    .section05 .major_card_wrap .major_card .info_box .spin_icon {
        width: 32px;
        margin-top: 20px;
    }

    .section05 .major_card_wrap .major_card .info_box .univ_wrap .univ_list li {
        font-size: 15px;
    }
    .section05 .major_card_wrap .major_card .img_box .img_text {
        padding-bottom: 8px;
    }
.section06 {
        padding: 40px 0;
    }

    .section06 .title_area h2 {
        font-size: 26px;
    }

    .section06 .tab_menu {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 0px 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
                margin-bottom: 20px;
    }

    .section06 .tab_menu::-webkit-scrollbar {
        display: none;
    }

    .section06 .tab_menu .tab_item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 12px 20px;
    }

    .section06 .case_slider .card_group {
        flex-direction: column;
        gap: 15px;
    }

    .section06 .card {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .section06 .profile_card .stats_grid {
        gap: 15px;
    }

    .section06 .profile_card .stat_item .large_num {
        font-size: 20px;
    }

    .section06 .problem_card .badge {
        padding: 10px 25px;
        font-size: 15px;
    }

    .section06 .result_card .title_wrap h3 {
        font-size: 22px;
    }

    .section06 .slider_wrap {
        padding: 0;
    }

    .section06 .slider_wrap .slick-prev,
    .section06 .slider_wrap .slick-next {
        display: none !important;
    }
    .section06 .problem_card .card_head,
    .section06 .result_card .card_head {
        margin-bottom: 15px;
    }
    .section07 {
        padding: 80px 0;
        background-position: 70% center;
        background-size: cover;
    }
    .section07 .container {
        padding: 0 20px;
    }
    .section07 .text_box .badge {
        font-size: 19px;
        padding: 10px 22px;
        margin-bottom: 0px;
    }
    .section07 .text_box h2 {
        font-size: 21px;
        font-weight:700;
        margin-bottom: 20px;
        word-break: keep-all;
    }
    .section07 .text_box .desc,
    .section07 .text_box .desc2,
    .section07 .text_box .highlight_desc {
        font-size: 15px;
        line-height: 1.4;
        font-weight:400;
        word-break: keep-all;
    }
    

}
