@charset "UTF-8";

/* =========================================
   [Global Setting] ai_model.css 톤앤매너 계승
   ========================================= */
body {
    background-color: #0b0e12 !important; /* 딥 다크 네이비 블랙 */
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}



/* =========================================
   [Common Style] 공통 헤더 스타일 (모든 섹션 통일)
   ========================================= */
   .section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head small {
    color: #F73C13;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.section-head h3 {
    font-size: clamp(30px, 4vw, 42px);
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.section-head h3 strong {
    color: #F73C13;
}

.section-head p {
    font-size: 18px;
    color: #8B95A1;
    margin-top: 20px;
    line-height: 1.6;
    word-break: keep-all;
}



/* =========================================
   [Global & Section Head] 반응형 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .section-head {
        margin-bottom: 60px; /* 여백 다이어트 */
    }
    .section-head h3 {
        font-size: 32px !important;
    }
}

/* 2. 일반 모바일 (768px 이하): 아기자기 & 야무진 스타일 */
@media screen and (max-width: 768px) {
    .section-head {
        margin-bottom: 45px;
        padding: 0 15px;
    }

    /* 소제목 (Small) */
    .section-head small {
        font-size: 13px !important; /* 16px -> 13px */
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    /* 메인 타이틀 (h3) */
    .section-head h3 {
        font-size: 24px !important; /* 42px -> 24px */
        line-height: 1.35;
        letter-spacing: -0.8px;
    }

    /* 설명글 (p) */
    .section-head p {
        font-size: 14px !important; /* 18px -> 14px */
        margin-top: 15px;
        line-height: 1.5;
        color: #9CA3AF; /* 모바일 가독성을 위해 살짝 밝게 */
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 최적화 */
@media screen and (max-width: 360px) {
    .section-head {
        margin-bottom: 35px;
    }
    .section-head h3 {
        font-size: 21px !important; /* 더 오목조목하게 */
    }
    .section-head p {
        font-size: 13px !important;
    }
    .section-head small {
        font-size: 11px !important;
    }
}



/* =========================================
   [Header Section] 중요도 역전 (한글 강조)
   ========================================= */
   /* [Header Section Container] */
.works-header.ai-video-bg {
    position: relative;
    width: 100%;
    height: 70vh; /* 높이는 기호에 따라 조절 (60vh~80vh 추천) */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* 영상 로드 전 기본 배경 */
}

/* [유튜브 배경 컨테이너] */
.video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none; /* 클릭 방지 */
}

.video-foreground {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 비율 유지 */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 비율 유지 */
    transform: translate(-50%, -50%);
}

.video-foreground iframe {
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.9; /* 영상 투명도 조절로 가독성 확보 */
    filter: brightness(0.5) grayscale(20%) blur(2px); /* 영상을 어둡고 약간 흐리게 */
}

/* [오버레이 그라데이션] 텍스트가 잘 보이도록 주변을 더 어둡게 */
.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* [텍스트 콘텐츠 스타일링] */
.works-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* 보조 제목 (영어) */
.works-header-content h2 {
    font-size: 20px;
    font-weight: 500;
    color: #F73C13; /* 포인트 컬러 */
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* 메인 카피 (한글) - 아주 크고 강력하게 */
.works-header-content p {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -2px;
    word-break: keep-all;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* =========================================
   [Header Section] 모바일 아기자기 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .works-header.ai-video-bg {
        height: 60vh; /* 높이 소폭 다이어트 */
        min-height: 450px;
    }
    .works-header-content p {
        font-size: 42px !important; /* 60px -> 42px */
    }
}

/* 2. 일반 모바일 (768px 이하): 야무지고 짱짱한 스타일 */
@media screen and (max-width: 768px) {
    .works-header.ai-video-bg {
        height: 50vh; /* 한 화면에 쏙 들어오도록 슬림화 */
        min-height: 400px;
    }

    /* 배경 영상 대비 강화 (텍스트 가독성) */
    .video-foreground iframe {
        filter: brightness(0.4) grayscale(30%) blur(3px); /* 모바일은 가독성을 위해 더 흐릿하게 */
    }

    /* 보조 제목 (영어) - 위젯처럼 작고 귀엽게 */
    .works-header-content h2 {
        font-size: 13px !important; /* 20px -> 13px */
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    /* 메인 카피 (한글) - 크지만 야무진 비율 */
    .works-header-content p {
        font-size: 28px !important; /* 60px -> 28px */
        line-height: 1.4;
        letter-spacing: -1px;
        padding: 0 15px; /* 양옆 여백으로 텍스트 몰입도 증가 */
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 최적화 */
@media screen and (max-width: 360px) {
    .works-header.ai-video-bg {
        height: 45vh;
        min-height: 350px;
    }

    .works-header-content h2 {
        font-size: 11px !important;
        margin-bottom: 15px;
    }

    .works-header-content p {
        font-size: 23px !important; /* 28px -> 23px 오목조목하게 */
        letter-spacing: -0.5px;
    }
}






/* =========================================
   [Main Wrap]
   ========================================= */
/* .ai-prod-wrap {
    padding-bottom: 140px;
    background: #0b0e12;
} */





/* =========================================
   [Section 1] Concept (Reality x Imagination)
   ========================================= */
   .concept-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 80px); /* 간격 유연하게 */
    margin-bottom: 160px;
    padding: 60px 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.concept-text { flex: 1; }

.concept-text h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.x-mark { color: #F73C13; }

.main-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #8B95A1;
}

/* ★ 강조 문구 스타일 */
.emphasize-txt {
    display: block;
    margin-top: 15px;
    font-size: 22px;
    color: #fff; /* 밝은 화이트로 시선 집중 */
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

.emphasize-txt::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #F73C13;
    margin-bottom: 15px;
}

/* 리스트 스타일 */
.concept-list {
    display: flex;
    gap: 30px;
}

.c-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    border-left: 2px solid #333;
}

.c-item i {
    font-size: 28px;
    color: #F73C13;
}

.c-item strong {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.c-item span {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.4;
}

/* Visual Box */
.concept-visual {
    flex: 1.1;
    height: 450px;
}


/* [Section 1] Visual Box - 회전하는 AI 오라 효과 복구 */
.ai-visual-box {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: radial-gradient(circle at center, #1c212a 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* 내부에서 도는 빛이 밖으로 안 나가게 */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ★ 빙글빙글 도는 붉은색 오라 효과 */
.ai-visual-box::before {
    content: '';
    position: absolute;
    width: 200%; /* 박스보다 훨씬 크게 만들어야 회전 시 빈틈이 없음 */
    height: 200%;
    /* 로그통의 포인트 컬러 #F73C13 사용 */
    background: conic-gradient(from 0deg, transparent 0%, #F73C13 10%, transparent 25%, transparent 100%);
    animation: rotate_aura 6s linear infinite; /* 6초마다 한 바퀴 */
    opacity: 0.3; /* 너무 눈부시지 않게 투명도 조절 */
    z-index: 1;
}

/* 중앙에 살짝 어두운 막을 씌워 글자 가독성 확보 */
.ai-visual-box::after {
    content: '';
    position: absolute;
    inset: 4px; /* 테두리 살짝 남기고 */
    background: radial-gradient(circle at center, #1c212a 20%, #000 100%);
    border-radius: 36px;
    z-index: 2;
}

.ai-visual-box span {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 0 0 20px rgba(247, 60, 19, 0.9);
}

/* 회전 애니메이션 정의 */
@keyframes rotate_aura {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   [Section 1] Concept - 모바일 아기자기 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하): 좌우 구조를 유지하되 비율 조정 */
@media screen and (max-width: 1024px) {
    .concept-section {
        gap: 40px;
        margin-bottom: 100px;
    }
    .concept-visual { height: 350px; }
}

/* 2. 일반 모바일 (768px 이하): 수직 적층 및 오목조목한 리스트 */
@media screen and (max-width: 768px) {
    .concept-section {
        flex-direction: column; /* 세로로 차곡차곡 */
        padding: 40px 20px 0;
        margin-bottom: 80px;
        text-align: center; /* 모바일은 중앙 정렬이 아기자기함 */
    }

    /* 타이틀 깎기 */
    .concept-text h3 {
        font-size: 26px !important;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    /* 설명글 슬림화 */
    .main-desc {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 35px;
        color: #9CA3AF;
    }

    /* 강조 문구 포인트 */
    .emphasize-txt {
        font-size: 17px !important; /* 22px -> 17px */
        margin-top: 20px;
    }

    .emphasize-txt::before {
        margin: 0 auto 15px; /* 선도 중앙으로 */
        width: 30px;
    }

    /* 리스트: 한 줄에 하나씩 혹은 옹기종기하게 */
    .concept-list {
        flex-direction: row; /* 가로 유지하되 간격 좁힘 */
        gap: 15px;
        justify-content: center;
        margin-top: 30px;
    }

    .c-item {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #333; /* 위쪽 선으로 변경하여 구분 */
        padding-top: 15px;
        align-items: center;
    }

    .c-item i { font-size: 22px; }
    .c-item strong { font-size: 15px; }
    .c-item span { font-size: 12px; word-break: keep-all; }

    /* 비주얼 박스: 작고 귀여운 상자 느낌으로 */
    .concept-visual {
        width: 100%;
        height: 250px; /* 450px -> 250px 슬림화 */
        margin-top: 40px;
        flex: none;
    }

    .ai-visual-box {
        border-radius: 25px;
    }

    .ai-visual-box span {
        font-size: 18px !important; /* 28px -> 18px */
        letter-spacing: 3px;
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 최적화 */
@media screen and (max-width: 360px) {
    .concept-text h3 { font-size: 22px !important; }
    
    .concept-list {
        flex-direction: column; /* 공간이 너무 좁으면 세로로 */
        gap: 20px;
    }

    .c-item { border-top: none; border-left: 2px solid #F73C13; align-items: flex-start; padding-left: 15px; text-align: left; }

    .concept-visual { height: 200px; }
}





/* =========================================
   [Section 3] Showcase (10 Categories)
   ========================================= */
   .showcase-section {
    max-width: 1400px;
    margin: 0 auto 180px;
    padding: 0 20px;
}

/* 섹션 헤더 스타일 보강 */
.showcase-section .section-head {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-section .section-head small {
    color: #F73C13;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.showcase-section .section-head h3 {
    font-size: clamp(30px, 4vw, 42px);
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.showcase-section .section-head h3 strong {
    color: #F73C13;
}

.showcase-section .section-head p {
    font-size: 18px;
    color: #8B95A1;
    margin-top: 20px;
}

/* 그리드 레이아웃 (5열) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* 개별 아이템 카드 */
.cat-item {
    background: #111418; /* 더 깊이 있는 다크 그레이 */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
}

.cat-item:hover {
    border-color: #F73C13;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* 썸네일 영역 - 숏폼 9:16 비율 느낌 강조 */
.cat-thumb {
    width: 100%;
    aspect-ratio: 9 / 13;
    background: #000;
    position: relative;
    overflow: hidden;
    /* 클릭 시 유튜브로 이동하는 것을 방지하고 텍스트 호버를 우선시함 */
    pointer-events: none; 
}

.cat-thumb iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* 16:9 영상을 9:13 박스에 꽉 채우기 위해 확대 및 중앙 정렬 */
    transform: translate(-50%, -50%) scale(1.5); 
    object-fit: cover;
}

/* 영상 위에 씌워지는 딤(Dim) 처리 - 텍스트 가독성 및 세련미 */
.cat-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 20, 24, 0.8) 0%, transparent 50%);
    z-index: 2;
    transition: 0.3s;
}

.cat-item:hover .cat-thumb::after {
    background: linear-gradient(to top, rgba(247, 60, 19, 0.2) 0%, transparent 100%);
}


/* 텍스트 정보부 */
.cat-info {
    padding: 30px 20px;
    background: linear-gradient(to bottom, #111418, #0b0e12);
}

.cat-info strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cat-info p {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}
/* =========================================
   [Section 3] Showcase - 모바일 2열 아기자기 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하): 3열로 1차 조정 */
@media screen and (max-width: 1024px) {
    .showcase-section { margin-bottom: 120px; }
    .category-grid {
        grid-template-columns: repeat(3, 1fr); /* 5열 -> 3열 */
        gap: 20px;
    }
}

/* 2. 일반 모바일 (768px 이하): 2*5 그리드 완성 */
@media screen and (max-width: 768px) {
    .showcase-section {
        margin-bottom: 80px;
        padding: 0 15px;
    }

    /* 섹션 헤더 아기자기 스케일링 */
    .showcase-section .section-head {
        margin-bottom: 40px;
    }
    .showcase-section .section-head h3 {
        font-size: 24px !important;
    }
    .showcase-section .section-head p {
        font-size: 14px !important;
        margin-top: 10px;
    }

    /* ★ 핵심: 2열 그리드 배치 */
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* 10개를 2*5로 나열 */
        gap: 12px; /* 카드 사이 앙증맞은 간격 */
    }

    /* 카드 다이어트 */
    .cat-item {
        border-radius: 15px; /* 곡률 슬림화 */
    }

    .cat-info {
        padding: 20px 12px; /* 패딩 축소 */
    }

    .cat-info strong {
        font-size: 15px !important; /* 20px -> 15px */
        margin-bottom: 6px;
        letter-spacing: -0.8px;
    }

    .cat-info p {
        font-size: 11px !important; /* 15px -> 11px */
        line-height: 1.4;
        color: #8B95A1;
    }

    /* 영상 썸네일 비율 조정 */
    .cat-thumb {
        aspect-ratio: 9 / 12; /* 모바일은 조금 더 짧게 잡아 정보 노출량 증가 */
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 튜닝 */
@media screen and (max-width: 360px) {
    .category-grid {
        gap: 8px; /* 더 촘촘하게 */
    }
    
    .cat-info {
        padding: 15px 10px;
    }

    .cat-info strong {
        font-size: 14px !important;
    }

    .cat-info p {
        font-size: 10px !important;
        letter-spacing: -0.5px;
    }
}


/* =========================================
   [Section 4] Total Solution (Why Logtong)
   ========================================= */
   .total-solution-section {
    padding: 0 0 160px; /* 하단 여백 확보 */
    background: #0b0e12;
}

.ts-box {
    background: #111418;
    padding: 80px 60px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}


/* 2. 3단계 프로세스 (Steps) */
.ts-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
}

.ts-step-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #F73C13;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(247, 60, 19, 0.3);
}

.ts-step-item strong {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.ts-step-item p {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.5;
}

/* 연결선 (PC 전용) */
.ts-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(247, 60, 19, 0.5), transparent);
    margin-top: 25px; /* 숫자와 제목 사이 쯤 위치 */
}

/* 3. 확장 전략 (Expansion Strategy) - Highlight Box */
.expansion-strategy {
    background: #0b0e12; /* 내부 박스는 더 어둡게 */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* 상단 그라데이션 라인 포인트 */
.expansion-strategy::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #F73C13, #FF8E53);
}

.exp-header { margin-bottom: 40px; }
.exp-header h4 {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.exp-header .orange { color: #F73C13; }

.exp-header p {
    font-size: 18px;
    color: #8B95A1;
    line-height: 1.6;
}
.exp-header p strong { color: #fff; }

/* 플랫폼 태그 클라우드 */
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.platform-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.platform-tags span:hover {
    background: rgba(247, 60, 19, 0.15);
    border-color: #F73C13;
    color: #F73C13;
    transform: translateY(-3px);
}

/* 예시 이미지 영역 */
.expansion-img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.expansion-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.expansion-img:hover img {
    transform: scale(1.03); /* 살짝 확대되는 인터랙션 */
}

/* 4. CTA 버튼 */
.ts-action .btn-consult {
    display: inline-block;
    padding: 22px 70px;
    background: #F73C13;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(247, 60, 19, 0.3);
}

.ts-action .btn-consult:hover {
    background: #ff4d26;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(247, 60, 19, 0.5);
}


/* =========================================
   [Section 4] Total Solution - 모바일 아기자기 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .ts-box { padding: 60px 40px; }
    .ts-steps { gap: 20px; }
    .ts-line { width: 50px; } /* 연결선 축소 */
    .exp-header h4 { font-size: 24px; }
}

/* 2. 일반 모바일 (768px 이하): 3단계 가로 유지 & 태그 슬림화 */
@media screen and (max-width: 768px) {
    .total-solution-section { padding-bottom: 80px; }

    .ts-box {
        padding: 40px 20px;
        border-radius: 25px;
    }

    /* ★ 프로세스 3단계: 가로 정렬 유지하며 아기자기하게 */
    .ts-steps {
        gap: 10px;
        margin-bottom: 50px;
    }

    .ts-line { display: none; } /* 연결선 제거 (공간 확보) */

    .step-num {
        font-size: 24px !important; /* 40px -> 24px */
        margin-bottom: 10px;
    }

    .ts-step-item strong {
        font-size: 14px !important; /* 22px -> 14px */
        letter-spacing: -0.5px;
        word-break: keep-all;
    }

    .ts-step-item p {
        font-size: 11px !important; /* 16px -> 11px */
        line-height: 1.4;
    }

    /* 확장 전략 박스 슬림화 */
    .expansion-strategy {
        padding: 35px 20px;
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .exp-header h4 {
        font-size: 19px !important;
        margin-bottom: 10px;
    }

    .exp-header p {
        font-size: 13px !important;
        line-height: 1.5;
    }

    /* 플랫폼 태그: 미니 뱃지화 */
    .platform-tags {
        gap: 6px;
        margin-bottom: 30px;
    }

    .platform-tags span {
        padding: 6px 12px;
        font-size: 11px !important; /* 15px -> 11px */
        border-radius: 6px;
    }

    /* CTA 버튼 콤팩트화 */
    .ts-action .btn-consult {
        padding: 16px 40px !important;
        font-size: 14px !important;
        width: 100%; /* 모바일은 꽉 차게 */
        max-width: 320px;
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 튜닝 */
@media screen and (max-width: 360px) {
    .ts-steps { gap: 5px; }
    .ts-step-item strong { font-size: 12px !important; }
    .ts-step-item p { display: none; } /* 아주 작은 화면에선 제목만 강조 */
    
    .exp-header h4 { font-size: 17px !important; }
    .platform-tags span { font-size: 10px !important; padding: 5px 10px; }
}



/* =========================================
   [Section] Service List (AI Creative Solution)
   ========================================= */
   .service-list-section {
    padding: 0 0 160px;
    background: #0b0e12;
}

/* 헤더 스타일 */
.sl-header {
    text-align: center;
    margin-bottom: 80px;
}

.sub-badge {
    display: inline-block;
    color: #F73C13;
    /* border: 1px solid rgba(247, 60, 19, 0.3); */
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sl-header h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
}

.sl-header h3 strong { color: #fff; } /* 강조 부분도 흰색 유지하되 굵게 */

.sl-desc {
    font-size: 18px;
    color: #8B95A1;
    line-height: 1.7;
}

.sl-desc strong { color: #F73C13; font-weight: 700; }

/* 그리드 레이아웃 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 서비스 카드 */
.srv-card {
    background: #111418;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 하이라이트 카드 (퍼포먼스 광고 등) */
.srv-card.highlight {
    background: linear-gradient(145deg, #161b22 0%, #0b0e12 100%);
    border-color: rgba(247, 60, 19, 0.3);
}

.srv-card:hover {
    transform: translateY(-10px);
    border-color: #F73C13;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* 아이콘 */
.srv-icon {
    width: 60px;
    height: 60px;
    background: #1c212a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #F73C13;
    transition: 0.3s;
}

.srv-card:hover .srv-icon {
    background: #F73C13;
    color: #fff;
}

/* 텍스트 내용 */
.srv-content h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.srv-sub {
    font-size: 14px;
    color: #F73C13;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.srv-txt {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* 높이 맞춤용 */
    word-break: keep-all;
}

/* 태그 리스트 */
.srv-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.srv-tags li {
    font-size: 13px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.srv-card:hover .srv-tags li {
    background: rgba(247, 60, 19, 0.1);
    color: #F73C13;
}
/* =========================================
   [Section] Service List - 모바일 2*3 그리드
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2열로 전환 */
        gap: 20px;
    }
}

/* 2. 일반 모바일 (768px 이하): 2*3 아기자기 레이아웃 */
@media screen and (max-width: 768px) {
    .service-list-section {
        padding-bottom: 80px;
    }

    /* 헤더 슬림화 */
    .sl-header { margin-bottom: 40px; }
    .sub-badge { 
        font-size: 11px !important; 
        padding: 6px 12px; 
        margin-bottom: 15px; 
    }
    .sl-header h3 { font-size: 24px !important; }
    .sl-desc { font-size: 14px !important; line-height: 1.5; padding: 0 10px; }

    /* ★ 핵심: 2*3 그리드 */
    .service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px;
    }

    /* 서비스 카드 다이어트 */
    .srv-card {
        padding: 25px 15px !important; /* 내부 패딩 대폭 축소 */
        border-radius: 18px;
        align-items: center; /* 모바일은 중앙 정렬이 아기자기함 */
        text-align: center;
    }

    /* 아이콘 축소 */
    .srv-icon {
        width: 45px !important; /* 60px -> 45px */
        height: 45px !important;
        font-size: 20px !important;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    /* 텍스트 내용 */
    .srv-content h4 {
        font-size: 16px !important; /* 24px -> 16px */
        margin-bottom: 4px;
        word-break: keep-all;
    }

    .srv-sub {
        font-size: 10px !important; /* 영문 서브타이틀 최소화 */
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .srv-txt {
        font-size: 11px !important; /* 16px -> 11px */
        line-height: 1.4;
        margin-bottom: 15px;
        color: #8B95A1;
    }

    /* 태그 리스트 오목조목하게 */
    .srv-tags {
        justify-content: center;
        gap: 5px;
    }

    .srv-tags li {
        font-size: 9px !important; /* 마이크로 폰트 */
        padding: 3px 8px;
        border-radius: 4px;
    }

    
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 최적화 */
@media screen and (max-width: 360px) {
    .service-grid { gap: 8px !important; }
    .srv-card { padding: 20px 10px !important; }
    .srv-content h4 { font-size: 14px !important; }
    .srv-txt { display: none; } /* 아주 작은 폰에선 설명 생략하고 제목/태그만 노출 */
    .srv-sub { margin-bottom: 8px; }
}

/* =========================================
   [Additional] Limitless Banner
   ========================================= */
   .limitless-banner {
    margin-top: 60px;
    position: relative;
    background: linear-gradient(135deg, #161b22 0%, #0b0e12 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* 호버 시 은은하게 밝아지며 강조 */
.limitless-banner:hover {
    border-color: rgba(247, 60, 19, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* 배경 장식 (오렌지빛 오라) */
.banner-deco {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(247, 60, 19, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content i {
    font-size: 32px;
    color: #F73C13;
    margin-bottom: 20px;
    display: inline-block;
    animation: twinkle 2s infinite ease-in-out;
}

.banner-content h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    color: #9CA3AF;
    line-height: 1.7;
    margin: 0;
}

.banner-content strong {
    color: #fff;
    font-weight: 700;
}

.banner-content .highlight {
    display: block;
    margin-top: 10px;
    color: #F73C13;
    font-weight: 600;
}

/* 반짝이는 아이콘 효과 */
@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}


/* =========================================
   [Additional] Limitless Banner - 반응형 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .limitless-banner {
        padding: 50px 30px;
        margin-top: 40px;
    }
    .banner-content h3 {
        font-size: 24px;
    }
}

/* 2. 일반 모바일 (768px 이하): 아기자기한 카드 위젯화 */
@media screen and (max-width: 768px) {
    .limitless-banner {
        margin: 40px 15px 0; /* 좌우 여백을 주어 카드 느낌 강조 */
        padding: 35px 20px;
        border-radius: 20px;
        background: linear-gradient(135deg, #161b22 0%, #0b0e12 100%);
    }

    /* 배경 데코 슬림화 (너무 퍼지지 않게) */
    .banner-deco {
        width: 80%;
        height: 80%;
        top: -30%;
        background: radial-gradient(ellipse at center, rgba(247, 60, 19, 0.12) 0%, transparent 70%);
    }

    /* 반짝이는 아이콘 축소 */
    .banner-content i {
        font-size: 24px !important; /* 32px -> 24px */
        margin-bottom: 15px;
    }

    /* 제목 다이어트: 섹션 헤더들과 톤 맞춤 */
    .banner-content h3 {
        font-size: 19px !important; /* 28px -> 19px */
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    /* 본문 텍스트 슬림화 */
    .banner-content p {
        font-size: 13px !important; /* 18px -> 13px */
        line-height: 1.5;
        color: #8B95A1;
        word-break: keep-all;
    }

    /* 하이라이트 문구 (당신의 상상이...) */
    .banner-content .highlight {
        font-size: 13px !important;
        margin-top: 8px;
        letter-spacing: -0.3px;
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 튜닝 */
@media screen and (max-width: 360px) {
    .limitless-banner {
        padding: 30px 15px;
    }
    .banner-content h3 {
        font-size: 17px !important;
    }
    .banner-content p {
        font-size: 12px !important;
    }
    .banner-content i {
        font-size: 20px !important;
    }
}





/* =========================================
   [Section 2] Strategy (Winning Logic)
   ========================================= */
   .strategy-section {
    padding: 140px 0;
    /* [수정] 완전 검정(#000)이 아닌 묵직한 다크 그레이로 차별화 */
    background-color: #1c212a;
    text-align: center;

    /* 경계선을 조금 더 선명하게 (배경이 밝아졌으므로) */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* 상단 은은한 오렌지 그라데이션 포인트 (유지) */
.strategy-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(247, 60, 19, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.strategy-section .inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 카드 그리드 */
.strategy-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 80px;
}

/* [카드 디자인 수정] 배경이 밝아졌으므로 카드는 다시 딥 블랙으로 처리하여 대비(Contrast) 극대화 */
.s-card {
    flex: 1;
    background: #0b0e12; /* 카드는 더 깊은 블랙 */
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.s-card:hover {
    transform: translateY(-15px);
    background: #000; /* 호버 시 완전 블랙으로 변하며 강조 */
    border-color: rgba(247, 60, 19, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* 하이라이트 카드 (Step 03) */
.s-card.highlight {
    border: 1px solid #F73C13;
    background: linear-gradient(145deg, #111418 0%, #000 100%);
}

/* 텍스트 가독성 조정 */
.s-card h4 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.s-card p {
    font-size: 17px;
    color: #9CA3AF; /* 회색 톤 유지 */
    line-height: 1.7;
}

.s-icon {
    font-size: 28px;
    color: #3a3f47; /* 화살표 컬러를 배경색에 맞춰 살짝 밝게 조정 */
    padding: 0 10px;
}

.strategy-footer {
    margin-top: 60px;
    font-size: 15px;
    color: #5d646e; /* 푸터 텍스트도 배경에 맞춰 가독성 확보 */
}

.strategy-footer strong {
    color: #8B95A1;
}



/* =========================================
   [Section 2] Strategy - 모바일 아기자기 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하): 화살표 간격 및 폰트 미세 조정 */
@media screen and (max-width: 1024px) {
    .strategy-section { padding: 100px 0; }
    .s-card { padding: 40px 30px; min-height: 300px; }
    .s-card h4 { font-size: 22px; }
}

/* 2. 일반 모바일 (768px 이하): 세로 적층 및 화살표 방향 전환 */
@media screen and (max-width: 768px) {
    .strategy-section { padding: 60px 0; }

    /* 그리드: 가로에서 세로로 */
    .strategy-grid {
        flex-direction: column !important;
        gap: 15px; /* 카드 사이 간격 조절 */
        margin-top: 45px;
        padding: 0 20px;
    }

    /* 카드 다이어트 */
    .s-card {
        width: 100% !important;
        flex: none !important;
        min-height: auto !important; /* 높이 고정 해제 */
        padding: 35px 25px !important;
        border-radius: 20px;
        text-align: center; /* 모바일은 중앙 정렬이 아기자기함 */
        align-items: center;
    }

    .s-card h4 {
        font-size: 19px !important; /* 26px -> 19px */
        margin-bottom: 12px;
    }

    .s-card p {
        font-size: 13px !important; /* 17px -> 13px */
        line-height: 1.5;
        word-break: keep-all;
    }

    /* ★ 핵심: 화살표를 아래 방향으로! */
    .s-icon {
        padding: 5px 0;
        transform: rotate(90deg); /* 오른쪽 화살표를 아래로 회전 */
        font-size: 20px !important;
        color: #F73C13; /* 화살표를 포인트 컬러로 강조 */
        opacity: 0.6;
    }

    /* 하이라이트 카드 (Step 03) */
    .s-card.highlight {
        transform: scale(1.02); /* 살짝만 키워서 마지막 단계 강조 */
    }

    /* 하단 보조문구 슬림화 */
    .strategy-footer {
        margin-top: 40px;
        font-size: 12px !important;
        padding: 0 25px;
        line-height: 1.4;
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 튜닝 */
@media screen and (max-width: 360px) {
    .strategy-section { padding: 50px 0; }
    .s-card { padding: 25px 20px !important; }
    .s-card h4 { font-size: 17px !important; }
    .s-card p { font-size: 12px !important; }
    .s-icon { font-size: 16px !important; }
}






/* =========================================
   [Section 5] Work Process (Vertical Flow)
   ========================================= */
   .process-flow-section {
    padding: 160px 0;
    background: #000;
}

.flow-container {
    max-width: 1000px; /* 절차는 조금 더 가늘게 배치해서 읽기 편하게 */
    margin: 80px auto 0;
    position: relative;
    padding-left: 50px; /* 선이 들어갈 공간 */
}

/* 수직 연결선 */
.flow-container::before {
    content: '';
    position: absolute;
    top: 0; left: 15px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #F73C13 0%, rgba(247, 60, 19, 0.1) 100%);
    opacity: 0.5;
}

.flow-item {
    position: relative;
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.flow-item:last-child { padding-bottom: 0; }

/* 단계 숫자 */
.flow-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #000;
    border: 2px solid #F73C13;
    color: #F73C13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    z-index: 5;
    position: absolute;
    left: -50px; /* 컨테이너 before 선 위치와 일치 */
    top: 0;
}

/* 텍스트 영역 */
.flow-txt h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 수정 횟수 배지 */
.badge-revision {
    font-size: 12px;
    background: rgba(247, 60, 19, 0.1);
    color: #F73C13;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(247, 60, 19, 0.3);
}

.flow-txt p {
    font-size: 17px;
    color: #8B95A1;
    line-height: 1.6;
    word-break: keep-all;
}

/* 강조 항목 (이미지 시안 단계 등) */
.flow-item.highlight .flow-num {
    background: #F73C13;
    color: #fff;
    box-shadow: 0 0 15px rgba(247, 60, 19, 0.5);
}

.flow-item.highlight .flow-txt h4 {
    color: #F73C13;
}

/* =========================================
   [Section 5] Work Process - 모바일 2*3 그리드
   ========================================= */
   @media screen and (max-width: 768px) {
    .process-flow-section {
        padding: 60px 0;
    }

    /* 1. 컨테이너: 수직 선 제거 및 그리드 설정 */
    .flow-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* ★ 핵심: 2열 배치 */
        gap: 12px !important;
        padding: 0 15px !important;
        margin-top: 40px;
        max-width: 100%;
    }

    /* 기존 수직 연결선 제거 */
    .flow-container::before { display: none; }

    /* 2. 개별 아이템: 카드 위젯 스타일로 변신 */
    .flow-item {
        flex-direction: column !important; /* 번호를 상단으로 */
        padding: 25px 15px !important;
        background: #111418;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 15px !important;
        text-align: center;
        align-items: center !important;
        margin-bottom: 0; /* padding-bottom 대신 gap 사용 */
    }

    /* 3. 단계 숫자: 카드 상단 중앙에 앙증맞게 배치 */
    .flow-num {
        position: static !important; /* absolute 위치 해제 */
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        margin: 0 auto;
    }

    /* 4. 텍스트 영역: 좁은 폭에 맞춰 슬림화 */
    .flow-txt h4 {
        font-size: 15px !important; /* 24px -> 15px */
        flex-direction: column !important; /* 제목과 배지를 세로로 */
        gap: 8px !important;
        line-height: 1.3;
    }

    /* 수정 횟수 배지 마이크로 다이어트 */
    .badge-revision {
        font-size: 10px !important;
        padding: 2px 8px;
        margin-top: 2px;
    }

    /* 설명글: 가독성 중심 슬림화 */
    .flow-txt p {
        font-size: 11px !important; /* 17px -> 11px */
        line-height: 1.5;
        color: #8B95A1;
        margin-top: 5px;
    }

    /* 하이라이트 효과 (03단계 강조) */
    .flow-item.highlight {
        border-color: rgba(247, 60, 19, 0.4);
        background: linear-gradient(145deg, #161b22 0%, #0b0e12 100%);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
}

/* 초소형 모바일 (360px 이하) 정밀 튜닝 */
@media screen and (max-width: 360px) {
    .flow-container { gap: 8px !important; }
    .flow-item { padding: 20px 10px !important; }
    .flow-txt h4 { font-size: 13px !important; }
    .flow-txt p { font-size: 10px !important; letter-spacing: -0.5px; }
}






/* FAQ 스타일 */
.ai-faq-section { padding: 100px 0; background: #1c212a; } /* 절차 섹션과 구분되는 배경색 */
.faq-container { max-width: 1000px; margin: 60px auto 0; }
.faq-item { background: #0b0e12; margin-bottom: 15px; border-radius: 15px; overflow: hidden; }
.faq-q { padding: 25px 30px; font-weight: 700; color: #fff; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-a { padding: 25px 30px; color: #9CA3AF; line-height: 1.6; font-size: 16px; }

/* =========================================
   [Section 6] FAQ - 모바일 슬림 최적화
   ========================================= */

/* 1. 태블릿 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .ai-faq-section { padding: 80px 0; }
}

/* 2. 일반 모바일 (768px 이하): 콤팩트 위젯 스타일 */
@media screen and (max-width: 768px) {
    .ai-faq-section { 
        padding: 60px 0; 
    }

    .faq-container { 
        margin-top: 40px; 
        padding: 0 15px; 
    }

    .faq-item { 
        margin-bottom: 12px; 
        border-radius: 12px; /* 곡률 슬림화 */
    }

    /* 질문(Q) 영역 */
    .faq-q { 
        padding: 20px 25px; 
        font-size: 14px !important; /* 16px 내외 -> 14px */
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
    }

    /* Q 아이콘 효과 (선택사항: CSS로 Q 표시 추가 시) */
    .faq-q::before {
        content: 'Q.';
        color: #F73C13;
        margin-right: 10px;
        font-weight: 800;
    }

    /* 답변(A) 영역 */
    .faq-a { 
        padding: 20px 25px; 
        font-size: 13px !important; /* 16px -> 13px */
        line-height: 1.5;
        background: #111418; /* 질문 영역과 미세한 명도 차이로 구분 */
        color: #8B95A1;
    }
}

/* 3. 초소형 모바일 (360px 이하): 극강의 슬림 최적화 */
@media screen and (max-width: 360px) {
    .faq-q { 
        padding: 18px 20px; 
        font-size: 13px !important; 
    }
    .faq-a { 
        padding: 18px 20px; 
        font-size: 12px !important; 
    }
}
