@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Outfit:wght@300;400;600;800&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

/* ==========================================================================
   제공 웹폰트 (BookkMyungjo) 및 상업적 무료 대체 폰트 3종
   ========================================================================== */

/* 제공: BookkMyungjo */
@font-face {
    font-family: 'BookkMyungjo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Lt.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* 제공: ElegantSerif */
@font-face {
    font-family: 'ElegantSerif';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2604-1@1.0/GraceSerif-Regular.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

/* 1. 경기천년제목 (획 끝 사선 처리가 산돌 광야와 가장 흡사한 묵직한 서체) */
@font-face {
    font-family: 'GyeonggiTitle';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/GyeonggiTitle.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 2. 완도청정바다체 (역동적인 붓끝의 파도 꺾임이 있어 브랜드 이미지와 잘 매치되는 날카로운 고딕) */
@font-face {
    font-family: 'WandoCleanSeaB';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/WandoCleanSeaB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 3. 평창평화체 (획의 끝처리가 사선 커팅되어 날렵하고 날카로운 느낌의 두꺼운 제목체) */
@font-face {
    font-family: 'PyeongChangPeace-Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-hz@1.0/PyeongChangPeace-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #314e8d;
    --primary-light: #4a6cb3;
    --accent-color: #00a8cc;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8fbff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background-color: #000000;
    /* 다크 테마 기본 배경 */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    /* 로고가 지나치게 헤더 영역을 침범하지 않도록 적당히 제어 */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.nav-links li:hover>a {
    color: #ffffff;
}

/* Header CTA Button (둥근 형태 가맹문의 버튼) */
.header-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: #0056b3;
    /* 이미지 시안 속 진한 파란색 계열 */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0d0f14;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-menu-content {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 80px;
    gap: 40px;
}

.mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-links li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.mega-links li a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
}

header:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Navigation Hamburger Menu & Drawer Styles */
.mobile-nav-toggle {
    display: none; /* PC에서는 기본 숨김 */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* 헤더 요소들보다 위에 배치 */
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 햄버거 -> X자 변환 애니메이션 */
.mobile-nav-toggle.open .line-top {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .line-middle {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-nav-toggle.open .line-bottom {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 11, 20, 0.98); /* 럭셔리 다크 블루/블랙 배경 */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 40px 40px; /* 상단 헤더 높이 확보 */
}

.mobile-nav-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-container {
    width: 100%;
    max-width: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    padding-bottom: 30px;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.mobile-menu-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.mobile-menu-links > li > a,
.submenu-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-title::after {
    content: '+';
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: #00a8cc;
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-title::after {
    content: '-';
    transform: rotate(180deg);
}

/* 아코디언 드롭다운 서브메뉴 */
.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.has-submenu.open .mobile-submenu {
    margin-top: 15px;
}

.mobile-submenu li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.mobile-submenu li a:hover {
    color: #00f2fe;
}

.mobile-nav-drawer .mobile-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

.mobile-nav-drawer .cta-button {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

/* Main Content Area */
main {
    min-height: 100vh;
}

/* Premium Dark Hero Section */
.hero-dark {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
    overflow: hidden;
    font-family: 'Noto Serif KR', serif;
    /* Noto Serif KR 로 일괄 폰트 교체 */
}

/* 메인 히어로 좌측 배경 비디오 */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* 좌측 절반만 배경으로 활용 */
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* 텍스트(3)보다 아래, 기본배경(0)보다 위 */
    background-color: #000000;
    /* 우측 영역의 순수 블랙 테마와 색상 정합 */
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
    /* 비디오가 배경 어둠 속에 녹아들어 은은하게 노출되도록 오퍼시티 적용 */
}

/* 우측 순수 블랙 테마와 경계선 없이 녹아드는 자연스러운 수평 딤 그라디언트 */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.55) 60%,
            #000000 100%);
    z-index: 2;
}

/* 우측 하단 구석에 선명하게 안착되는 숙성회 이미지 (글씨 겹침 방지를 위해 52%로 축소) */
.hero-sashimi-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    /* 이미지의 폭을 줄여 좌우 여백을 넓혀 겹침 해소 */
    max-width: 880px;
    z-index: 1;
    /* 텍스트 레이어보다 뒤에 배치 */
    pointer-events: none;
    opacity: 0;
    line-height: 0;
}

.hero-sashimi-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 이미지와 똑같은 레이아웃 정합을 위해 container를 이미지보다 높은 레이어(z-index: 3)로 띄움 */
.hero-dark-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 3;
    gap: 60px;
    padding-top: 15vh;
    /* 텍스트들이 상단 검은 대리석 영역에 고정되게 함 */
}

/* Hero Left - Slogan & Titles */
.hero-left {
    flex: 1.2;
    text-align: left;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    z-index: 3;
    /* 이미지 물방울 위에 선명하게 얹히도록 z-index 보정 */
}

.since-tag {
    font-family: 'Noto Serif KR', 'Outfit', serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.35em;
    margin-bottom: 22px;
    display: inline-block;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65); /* 어두운 배경 대비 가독성을 확보하기 위해 세련된 텍스트 섀도우 추가 */
}


.brand-name-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.brand-prefix {
    font-family: 'Noto Serif KR', serif;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.brand-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 100px;
    font-weight: 900;
    color: #0056b3;
    /* 물고기자리 메인 톤앤매너 블루 색상 적용 */
    line-height: 1.0;
    letter-spacing: -2px;
    /* 어두운 배경 위에서 파란색 글씨의 선명한 노출을 위한 블루 백글로우 추가 */
    text-shadow: 0 0 20px rgba(0, 86, 179, 0.35);
}

.hero-desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75); /* 가독성 향상을 위해 기존 0.6에서 대비를 0.75로 소폭 상향 조정 */
    line-height: 1.6;
    margin-top: 22px;
    word-break: keep-all;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* 텍스트 섀도우를 추가하여 비디오 배경 위에서도 또렷하게 보이게 함 */
}

/* Hero Features - 핵심 강점 3대 프리미엄 보더리스 세로 리스트 (순수 텍스트 형태) */
.hero-features {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    gap: 12px; /* 줄 간격 대폭 축소 */
    margin-top: 45px;
    width: 100%;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 3px 0; /* 상하 패딩 대폭 축소 */
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    width: fit-content; /* 리스트 콘텐츠 영역 최소화 */
}

.feature-text {
    position: relative;
    display: flex;
    flex-direction: row; /* 가로(수평) 배열로 전환 */
    align-items: baseline; /* 베이스라인 정렬로 글자 아래선 일치 */
    gap: 12px; /* 소제목과 서브텍스트 사이 간격 */
}

.feature-title {
    font-family: 'Noto Serif KR', serif; /* 메인 히어로 섹션 서체와 동일한 명조체 적용 */
    font-size: 20px; /* 텍스트 크기 확대 유지 */
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
    flex-shrink: 0; /* 제목이 줄어들지 않도록 고정 */
}

.feature-info {
    font-family: 'Noto Serif KR', serif; /* 메인 히어로 섹션 서체와 동일한 명조체 적용 */
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), max-width 0.5s ease, color 0.4s ease;
    
    /* 평상시 숨김 처리 (가로폭 닫기 및 페이드아웃, 왼쪽 시프트) */
    opacity: 0;
    max-width: 0;
    transform: translateX(-15px);
    overflow: hidden;
    white-space: nowrap;
}

/* 호버 시 슥 그어지는 골드 수평 언더라인 (가로 전개되는 전체 영역을 덮음) */
.underline-line {
    position: absolute;
    bottom: -5px; /* 텍스트 아래쪽 절대 좌표 배치 */
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #00f2fe 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 호버 및 액티브 활성화 시 입체 모션 및 컬러 인터랙션 */
.feature-item:hover, .feature-item.active {
    transform: translateX(8px); /* 우측으로 시프트 */
}

.feature-item:hover .feature-title, .feature-item.active .feature-title {
    color: #00f2fe; /* 제목 골드 강조 */
}

.feature-item:hover .feature-info, .feature-item.active .feature-info {
    /* 호버 및 액티브 시 우측으로 스무스하게 슬라이드인되며 전개 */
    opacity: 1;
    max-width: 300px; /* 상세 설명이 나타날 충분한 가로 길이 확보 */
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.7);
}

.feature-item:hover .underline-line, .feature-item.active .underline-line {
    transform: scaleX(1); /* 언더라인 노출 */
}

/* 반응형 조율 */
@media (max-width: 1200px) {
    .feature-title {
        font-size: 18px;
    }
    .feature-info {
        font-size: 13px;
    }
    .hero-features {
        gap: 10px;
    }
    .brand-prefix {
        font-size: 44px;
    }
    .brand-name {
        font-size: 84px;
    }
}

@media (max-width: 768px) {
    .hero-dark {
        height: auto !important;
        min-height: 100vh !important;
        padding: 120px 0 60px 0 !important;
        overflow: visible !important;
    }
    .hero-video-bg {
        width: 100% !important;
    }
    .hero-dark-container {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 40px !important;
        padding-top: 30px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        height: auto !important;
    }
    .hero-left {
        width: 100% !important;
        flex: none !important;
    }
    .hero-title {
        margin-bottom: 20px !important;
    }

    .brand-prefix {
        font-size: 64px !important;
    }
    .brand-name {
        font-size: 125px !important;
    }
    .hero-desc {
        font-size: 15px !important;
        margin-top: 20px !important;
        line-height: 1.5 !important;
    }
    .hero-features {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100px !important; /* 모바일에서 한 줄만 보이도록 높이 제한 */
        margin: 35px auto 0 !important;
        counter-reset: feature-counter;
        overflow: hidden !important;
    }
    .feature-item {
        position: absolute !important; /* 부모 뷰포트 내 겹침 */
        top: 0 !important;
        left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 6px 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        cursor: pointer !important;
        
        /* 비활성 상태: 투명화 및 하단 오프셋 */
        opacity: 0 !important;
        transform: translateY(20px) !important;
        pointer-events: none !important;
        visibility: hidden !important;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s !important;
    }
    
    /* 활성화된 아이템 강조 스타일 */
    .feature-item.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    .feature-item::before {
        counter-increment: feature-counter;
        content: "0" counter(feature-counter);
        font-family: 'Outfit', sans-serif !important;
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #00f2fe !important;
        text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
        transition: all 0.35s ease !important;
    }
    
    .feature-text {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3px !important;
    }
    .feature-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.45) !important; /* 비활성 상태: 흐릿하지 않은 뚜렷한 반투명 흰색 */
        background: none !important;
        -webkit-text-fill-color: initial !important;
        -webkit-background-clip: initial !important;
        transition: all 0.35s ease !important;
        text-align: center !important;
    }
    
    .feature-item.active .feature-title {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #ffffff !important; /* 활성 상태: 선명한 순백색 */
        background: none !important;
        -webkit-text-fill-color: initial !important;
        -webkit-background-clip: initial !important;
    }
    
    .feature-info {
        font-size: 13.5px !important;
        color: rgba(255, 255, 255, 0.75) !important; /* 활성 상태: 가독성 높은 연한 회백색 */
        font-weight: 400 !important;
        text-align: center !important;
        margin-left: 0 !important;
        
        /* 비활성화 시 상세 정보를 숨기기 위한 아코디언 슬라이드 설정 */
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease !important;
        margin-top: 0 !important;
    }
    
    .feature-item.active .feature-info {
        max-height: 40px !important;
        opacity: 1 !important;
        margin-top: 4px !important;
    }
    
    @keyframes fadeInUpMobile {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .underline-line {
        display: none !important; /* 모바일 비활성화 */
    }
    .hero-right {
        min-width: auto !important;
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        margin-top: 25px !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-right-title-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
    }
    .badge-premium {
        font-size: 48px !important;
        margin-bottom: 0 !important;
        align-self: auto !important;
    }
    .accent-title {
        font-size: 64px !important;
        margin-bottom: 0 !important;
        align-self: auto !important;
    }
    .revenue-box {
        min-width: auto !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .revenue-number {
        font-size: 130px !important;
    }
    .revenue-unit {
        font-size: 56px !important;
    }
    .hero-sashimi-img {
        width: 65% !important;
        max-width: 280px !important;
        opacity: 0.25 !important;
        bottom: 0 !important;
        right: 0 !important;
    }
}


/* Hero Right - Overlaid Texts */
.hero-right {
    flex: 1;
    min-width: 650px; /* 매출 숫자가 늘어나도 좌측 레이아웃을 침범하지 않도록 고정 최소 너비 설정 */
    flex-shrink: 0; /* 부모 flex 컨테이너 크기 변화에도 축소되지 않도록 고정 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(40px);
    z-index: 3;
    /* 이미지 위에 완전히 선명하게 얹히도록 z-index 처리 */
}

.hero-right-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.badge-premium {
    font-family: 'Noto Serif KR', serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@keyframes goldReflect {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.accent-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff 0%, #f3e5ab 25%, #d4af37 50%, #f3e5ab 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldReflect 6s linear infinite;
    display: inline-block;
    letter-spacing: -1.5px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.revenue-box {
    display: flex;
    align-items: baseline;
    min-width: 650px; /* 매출 금액의 동적 텍스트 자릿수 증가에도 박스 전체 폭을 동일하게 고정 */
    justify-content: flex-end; /* 우측 정렬 유지 */
}

.revenue-number {
    font-family: 'Noto Serif KR', serif;
    font-size: 145px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -2.5px;
    transition: text-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* 글로우 애니메이션용 가속 펜스 */
}

.revenue-number.glow-active {
    /* 네온 블루/화이트 톤의 입체적 글로우 플래시 효과 선언 */
    text-shadow:
        0 0 15px #ffffff,
        0 0 30px #00a8cc,
        0 0 45px #314e8d,
        0 0 60px #314e8d;
}

.revenue-number.glow-mini {
    /* 라이브 갱신 시 은은하게 반짝이는 마이크로 글로우 */
    text-shadow:
        0 0 8px #ffffff,
        0 0 15px #00f2fe,
        0 0 25px rgba(0, 242, 254, 0.4);
}

.revenue-unit {
    font-family: 'Noto Serif KR', serif;
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-left: 8px;
}

/* ==========================================================================
   마키 배너 섹션 (Marquee Banner Section)
   ========================================================================== */
.section-marquee-banner {
    position: relative;
    background: #050b14;
    /* 럭셔리 다크 블루 톤의 배경 */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* 자식들을 한 줄로 정렬하기 위한 트랙 */
.marquee-track {
    display: flex;
    width: max-content;
}

/* 리스트 컨테이너 */
.marquee-list {
    display: flex;
    align-items: center;
    gap: 60px;
    /* 각 텍스트 요소 사이의 여백 */
    padding-right: 60px;
    /* 트랙 복제본과 맞닿을 때의 끝 여백 */
}

/* 마키 배너 텍스트 요소 */
.marquee-item {
    display: flex;
    align-items: center;
    font-family: 'BookkMyungjo', 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

/* SVG 아이콘 공통 */
.marquee-icon {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    display: inline-block;
    vertical-align: middle;
}

.marquee-icon.sparkle {
    color: #00f2fe;
    /* 아쿠아 스타 */
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.65));
}

.marquee-icon.fish {
    color: #00a8cc;
    /* 아쿠아 블루 피쉬 */
    filter: drop-shadow(0 0 6px rgba(0, 168, 204, 0.6));
}

/* 마우스 호버(Hover) 시 배너가 일시 정지되도록 애니메이션 제어 */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused !important;
}

/* 우측에서 좌측으로 흐르는 버전 (RTL) */
.direction-rtl .marquee-track {
    animation: marquee-rtl 25s linear infinite;
}

/* 좌측에서 우측으로 흐르는 버전 (LTR) */
.direction-ltr .marquee-track {
    animation: marquee-ltr 25s linear infinite;
}

/* RTL 애니메이션 Keyframes */
@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* LTR 애니메이션 Keyframes */
@keyframes marquee-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   두 번째 섹션 (Quality & Slider Section)
   ========================================================================== */
.section-quality {
    position: relative;
    padding: 140px 0;
    background-color: #0b1a30;
    /* 이미지 배경이 로드되기 전의 폴백 컬러 */
    background-image: url('/images/section2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'BookkMyungjo', sans-serif;
}

.section-quality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 배경 무늬의 시각적 명도를 다소 낮춰 텍스트 강조 */
    z-index: 1;
}

.quality-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    z-index: 2;
}

.quality-left {
    flex: 1;
    max-width: 480px;
    opacity: 0;
    transform: translateY(40px);
}

.quality-subtitle {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 24px;
    opacity: 0.8;
}

.quality-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: -2px;
    word-break: keep-all;
}

.quality-right {
    flex: 1.4;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
}

.quality-slider-container {
    position: relative;
    width: 100%;
}

.quality-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.quality-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s;
    z-index: 1;
}

.quality-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quality-slide.active .slide-img img {
    transform: scale(1.05);
}

.slide-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #ffffff;
    z-index: 3;
    pointer-events: none;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/sec_2_fish.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 30px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 86, 179, 0.4));
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s, opacity 0.6s ease 0.3s;
}

.quality-slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 0.6s ease 0.4s;
}

.quality-slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

.slide-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 620px;
    word-break: keep-all;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, opacity 0.6s ease 0.5s;
}

.quality-slide.active .slide-desc {
    transform: translateY(0);
    opacity: 1;
}

.slider-controls {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    justify-content: flex-start;
}

.ctrl-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.ctrl-btn svg {
    display: block;
}

/* ==========================================================================

.revenue-ticker-track {
    display: flex;
    width: max-content;
}

.revenue-ticker-list {
    display: flex;
    gap: 30px;
    padding: 20px 15px;
    animation: tickerRolling 30s linear infinite;
}

.revenue-ticker-wrap:hover .revenue-ticker-list {
    animation-play-state: paused;
}

@keyframes tickerRolling {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
        /* 무한 루프 롤러 정합 기준 절반 스크롤 */
}
}

.revenue-card {
    background: rgba(11, 26, 48, 0.35);
    /* 투명도가 높은 어두운 감청색 */
    border: 1px solid rgba(0, 168, 204, 0.2);
    /* 은은한 푸른빛의 얇은 테두리 */
    border-radius: 12px;
    padding: 24px 30px;
    min-width: 280px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.revenue-card:hover {
    background: rgba(11, 26, 48, 0.6);
    border-color: rgba(0, 168, 204, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 168, 204, 0.15);
}

.card-branch {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-val {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   네 번째 섹션 (Table Price Section)
   ========================================================================== */
.section-price {
    position: relative;
    width: 100%;
    height: 780px;
    /* 섹션 높이를 컴팩트하게 조율 */
    min-height: 780px;
    display: flex;
    align-items: center;
    background-color: #050c17; /* 이미지 배경 로드 전 및 마스크용 딥네이비 폴백 */
    background-image: url('/images/sec_4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 80px 0 0 0;
    /* bottom 패딩을 제거하여 이미지를 하단에 고정 */
    font-family: 'BookkMyungjo', sans-serif;
}

.price-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    height: 100%;
}

.price-left {
    flex: 1;
    max-width: 540px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(40px);
    z-index: 3;
    padding-bottom: 80px;
    /* 텍스트 세로 배치를 고려한 여백 */
}

/* 텍스트 메탈릭 쉬머 애니메이션 효과 정의 */
.price-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -2px;
    margin-bottom: 25px;
    
    /* 텍스트 내 실버-블루 메탈릭 텍스처 맵핑 */
    background: linear-gradient(
        135deg,
        #ffffff 20%,
        #a6c1ee 45%,
        #ffffff 50%,
        #00a8cc 55%,
        #ffffff 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 5s linear infinite;
    display: inline-block;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.price-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 45px;
    word-break: keep-all;
}

.price-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.summary-label-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.summary-label {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.summary-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.summary-value {
    font-size: 110px;
    font-weight: 900;
    color: #00a8cc;
    /* 시안 속 노란색/주황색 대형 수치 */
    line-height: 1.0;
    margin-top: 10px;
    letter-spacing: -3px;
    display: flex;
    align-items: baseline;
    font-variant-numeric: tabular-nums;
    transition: text-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.summary-value.glow-active {
    text-shadow:
        0 0 15px #00a8cc,
        0 0 30px #ffffff,
        0 0 45px #00a8cc;
}

.summary-value .unit {
    font-size: 38px;
    font-weight: 800;
    margin-left: 5px;
    letter-spacing: -1px;
}

.price-right {
    position: absolute;
    /* 하단 밀착을 위한 절대 배칭 */
    bottom: 0;
    right: 0;
    width: 48%;
    max-width: 760px;
    opacity: 0;
    transform: translateY(40px);
    z-index: 2;
}

.price-img-wrap {
    position: relative;
    width: 100%;
}

.price-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    /* 은은한 입체 그림자 */
    transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-img-wrap img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   다섯 번째 섹션 (Operation Hours Section)
   ========================================================================== */
.section-hours {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fc;
    /* 밝은 배경 폴백 */
    background-image: url('/images/sec_5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0;
    font-family: 'BookkMyungjo', sans-serif;
    text-align: center;
}

.hours-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hours-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a3a;
    /* 차콜/다크 텍스트 */
    letter-spacing: -1px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.hours-cards-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
}

.hours-card-float-wrap {
    flex: 1;
    max-width: 380px;
    display: flex;
    justify-content: center;
    perspective: 1200px;
    /* 3D 효과 깊이감을 float wrapper에 선언해 원근감 확장 */
}

/* 3단 이미지 카드 스타일 */
.hours-card {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-bg-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.card-bg-img img,
.card-bg-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.hours-card:hover .card-bg-img img,
.hours-card:hover .card-bg-img video {
    transform: scale(1.05);
    /* 마우스 호버 시 부드러운 줌 효과 */
}

/* 영업 시간 카드 내 비디오에 블러 필터 적용 (사람 얼굴 가리기 및 가독성 확보) */
.card-active .card-bg-img video {
    filter: blur(3px);
    transform: scale(1.08); /* 블러 경계 뭉개짐 방지용 */
}

.hours-card.card-active:hover .card-bg-img video {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    transition: background 0.3s ease;
    pointer-events: none;
}

.hours-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* 영업 시간 비디오 카드 딤(어둠) 처리 강화 */
.card-active .card-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.hours-card.card-active:hover .card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.card-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.03;
    /* 은은한 아날로그 텍스처 느낌 부여 */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* 반사광 효과 제거 */
.hours-card::after {
    display: none;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 4;
    text-align: left;
    color: #ffffff;
    pointer-events: none;
    transform: translateZ(45px);
    /* 글자를 대폭 전면으로 돌출시켜 3D 패러랙스 극대화 */
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    transform: translateZ(10px);
}

.step-time {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 38px;
    margin: 0;
    transform: translateZ(25px);
}

/* Ticker Roller Styles */
.ticker-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    height: 38px;
    font-size: 26px;
    font-weight: 800;
    line-height: 38px;
    vertical-align: middle;
}

.ticker-char {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    color: #ffffff;
}

/* 숫자 롤러 상자 */
.ticker-number-box {
    display: inline-block;
    height: 38px;
    position: relative;
    overflow: hidden;
    width: 17px; /* 고정폭 폰트 느낌으로 롤링 중 텍스트 흔들림 방지 */
    text-align: center;
}

.ticker-number-list {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(0);
    will-change: transform;
}

.ticker-number-list span {
    display: block;
    height: 38px;
    line-height: 38px;
    color: #ffffff;
}

/* 영업 시간 골든 타임 카드 텍스트 아쿠아 네온 브리딩 */
.card-active .ticker-char,
.card-active .ticker-number-list span {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.card-active .step-time {
    animation: neonTextPulse 2s infinite alternate ease-in-out;
}

@keyframes neonTextPulse {
    0% {
        text-shadow: 0 0 5px rgba(0, 229, 255, 0.4);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 229, 255, 0.9), 0 0 25px rgba(0, 229, 255, 0.5);
    }
}

.hours-title {
    font-size: 58px;
    font-weight: 900;
    color: #1a2a3a;
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hours-desc {
    font-size: 19px;
    color: rgba(26, 42, 58, 0.7);
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(30px);
}

/* ===== 개설비용 섹션 ===== */
.section-cost {
    background: url('/images/sec7.webp') center center / cover no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cost-container {
    position: relative;
    z-index: 1;
}

.cost-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
}

.cost-subtitle {
    font-size: 18px;
    color: #00f2fe;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.cost-title {
    font-family: 'BookkMyungjo', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cost-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* 테이블 래퍼 - 글래스모피즘 */
.cost-table-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 5px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* 테이블 헤더 */
.cost-table thead th {
    background: rgba(0, 242, 254, 0.06);
    color: #00f2fe;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 242, 254, 0.15);
}

.cost-table thead th:first-child {
    border-radius: 15px 0 0 0;
    width: 15%;
}

.cost-table thead th:nth-child(2) {
    width: 20%;
}

.cost-table thead th:nth-child(3) {
    width: 45%;
}

.cost-table thead th:last-child {
    border-radius: 0 15px 0 0;
    width: 20%;
}

/* 테이블 본문 */
.cost-table tbody td {
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    vertical-align: middle;
    transition: background 0.3s ease;
}

.cost-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.cost-label {
    font-weight: 700;
    color: #ffffff !important;
    font-size: 15px !important;
    white-space: nowrap;
}

.cost-amount {
    font-weight: 800;
    color: #ffffff !important;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px !important;
    letter-spacing: -0.5px;
}

.cost-amount.accent {
    color: #00f2fe !important;
    font-size: 20px !important;
}

.cost-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.cost-note {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

.cost-note.return {
    color: #4ecdc4 !important;
    font-weight: 600;
}

/* 별도 항목 행 */
.row-etc td {
    border-bottom: 1px solid rgba(0, 242, 254, 0.08);
    font-style: italic;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* 로열티 행 */
.row-royalty td {
    border-bottom: 2px solid rgba(0, 242, 254, 0.15);
}

/* 합계 행 */
.cost-table tfoot .row-total td {
    padding: 24px;
    background: rgba(0, 242, 254, 0.06);
    border-top: none;
}

.cost-table tfoot .row-total td:first-child {
    border-radius: 0 0 0 15px;
}

.cost-table tfoot .row-total .cost-amount.total {
    text-align: left;
    padding-left: 24px;
    border-radius: 0 0 15px 0;
}

.total-value {
    font-size: 32px;
    font-weight: 900;
    color: #00f2fe;
    letter-spacing: -1px;
}

.total-unit {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 242, 254, 0.75);
    margin-left: 4px;
}

/* 하단 안내 문구 */
.cost-notice {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 25px;
    letter-spacing: -0.3px;
}

/* Footer */
footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 5px;
}

/* ==========================================================================
   여섯 번째 섹션 (Success Franchise Model Section)
   ========================================================================== */
.section-model {
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.model-header-wrap {
    text-align: center;
    padding: 100px 0 60px;
    font-family: 'BookkMyungjo', sans-serif;
}

.model-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
}

.model-title {
    font-size: 58px;
    font-weight: 900;
    color: #1a2a3a;
    letter-spacing: -2px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.model-desc {
    font-size: 19px;
    color: rgba(26, 42, 58, 0.7);
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
}

.model-cards-wrap {
    display: flex;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
}

.model-card {
    position: relative;
    flex: 1;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity;
}

.model-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.model-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.0);
}

/* Ken Burns 시네마틱 효과 */
.model-card:nth-child(1) .model-card-bg img {
    animation: kenBurns1 22s infinite ease-in-out;
}

.model-card:nth-child(2) .model-card-bg img {
    animation: kenBurns2 26s infinite ease-in-out;
}

.model-card:nth-child(3) .model-card-bg img {
    animation: kenBurns3 24s infinite ease-in-out;
}

@keyframes kenBurns1 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(1%, -1%);
    }

    100% {
        transform: scale(1.0) translate(0, 0);
    }
}

@keyframes kenBurns2 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-1%, 1%);
    }

    100% {
        transform: scale(1.0) translate(0, 0);
    }
}

@keyframes kenBurns3 {
    0% {
        transform: scale(1.08) translate(0, 0);
    }

    50% {
        transform: scale(1.0) translate(1%, 1%);
    }

    100% {
        transform: scale(1.08) translate(0, 0);
    }
}

.model-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    transition: background 0.4s ease;
    pointer-events: none;
}

.model-card:hover .model-card-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.model-card-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.model-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
    color: #ffffff;
    pointer-events: none;
    text-align: center;
    padding: 30px;
    font-family: 'BookkMyungjo', sans-serif;
}

.model-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
    opacity: 0.85;
    letter-spacing: 2px;
}

.model-card-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1.5px;
    word-break: keep-all;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.model-card:hover .model-card-title {
    transform: scale(1.05);
}

/* ==========================================================================
   일곱 번째 섹션 (Success Growth History Section)
   ========================================================================== */
.section-growth {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
    overflow: hidden;
    padding: 120px 0;
    font-family: 'BookkMyungjo', sans-serif;
}

/* 성장사 섹션 배경 비디오 */
.growth-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #000000;
}

.growth-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    /* 텍스트 가독성을 위해 적절히 어둡게 조절 */
}

/* 비디오 위 오버레이 그라디언트 */
.growth-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(0, 0, 0, 0.4) 50%,
            #000000 100%);
    z-index: 2;
}

.growth-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 60vh;
    position: relative;
    z-index: 3;
    /* 비디오 오버레이보다 위에 노출 */
}

.growth-title-wrap {
    text-align: left;
    max-width: 600px;
    opacity: 0;
    transform: translateY(40px);
}

.growth-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.growth-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -2px;
}

.growth-title .highlight {
    color: #00f2fe;
    /* 시안 속 노란색/주황색 하이라이팅 */
}

.growth-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 30px;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

/* 타임라인 레이아웃 */
.timeline-wrap {
    position: relative;
    width: 100%;
    margin-top: 20px;
    top: -40px;
    /* 타이틀 영역 방향으로 그래프 전체를 올림 */
}

/* 데스크톱 전용 사선 SVG 스타일 */
.timeline-svg-line {
    display: none;
}

@media (min-width: 769px) {
    .timeline-svg-line {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 412px;
        z-index: 1;
        pointer-events: none;
        overflow: visible;
    }

    .timeline-line-bg {
        fill: none;
        stroke: rgba(255, 255, 255, 0.12);
        stroke-width: 2px;
        vector-effect: non-scaling-stroke;
    }

    .timeline-line-progress-svg {
        fill: none;
        stroke: #00f2fe;
        stroke-width: 2.5px;
        vector-effect: non-scaling-stroke;
        filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.85));
        stroke-dasharray: 3000;
        stroke-dashoffset: 3000;
        /* 선 드로잉 대기 상태 */
    }

    .timeline-glow-particle-svg {
        offset-path: path("M 0,396 C 400,396 700,250 1000,16");
        offset-rotate: auto;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 15px #00f2fe);
    }
}

/* 타임라인 가로선 (모바일/기본) */
.timeline-line {
    position: absolute;
    top: 15px;
    /* 노드 dot 중심축에 맞춤 */
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.timeline-line-progress {
    width: 0;
    /* JS에서 GSAP으로 scaleX/width 애니메이션 수행 */
    height: 100%;
    background: #00f2fe;
    transform-origin: left center;
}

.timeline-glow-particle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(to right, transparent, #00f2fe, #ffffff, #00f2fe, transparent);
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.85));
    animation: flowLight 4.5s infinite linear;
}

@keyframes flowLight {
    0% {
        left: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 타임라인 노드 */
.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 769px) {

    /* 데스크톱 사선 배치를 위한 노드 높이 조절 */
    .timeline-line {
        display: none;
        /* 데스크톱에서는 SVG 라인으로 대체 */
    }

    .timeline-nodes {
        height: 412px;
        position: relative;
        display: block;
        /* absolute 자식 배치를 위해 block 처리 */
    }

    .timeline-node {
        position: absolute !important;
        width: 200px;
        margin-top: 0 !important;
        /* 기존 margin-top 초기화 */
    }

    .timeline-node .node-dot-wrap {
        width: 100%;
        /* 절대 배치된 부모 폭에 꽉 차도록 명시 */
    }

    /* 100% 비례 기반 수학적 등간격 매칭 및 정밀 중앙/우측 정렬 보정 */
    .timeline-node:nth-child(1) {
        left: 0;
        top: 350px;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-node:nth-child(1) .node-dot-wrap {
        justify-content: flex-start;
    }

    .timeline-node:nth-child(2) {
        left: 33.33%;
        top: 312px;
        /* 타원 Y=350 지점 피팅 */
        margin-left: -100px;
        /* 고정폭 200px 기준 중앙 정렬 */
        align-items: center;
        text-align: center;
    }

    .timeline-node:nth-child(2) .node-dot-wrap {
        justify-content: center;
    }

    .timeline-node:nth-child(3) {
        left: 66.66%;
        top: 190px;
        /* 타원 Y=218 지점 피팅 */
        margin-left: -100px;
        /* 고정폭 200px 기준 중앙 정렬 */
        align-items: center;
        text-align: center;
    }

    .timeline-node:nth-child(3) .node-dot-wrap {
        justify-content: center;
    }

    .timeline-node:nth-child(4) {
        left: 100%;
        top: -25px;
        margin-left: -200px;
        /* 고정폭 200px 기준 우측 정렬 */
        align-items: flex-end;
        text-align: right;
    }

    .timeline-node:nth-child(4) .node-dot-wrap {
        justify-content: flex-end;
    }
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-node:last-child {
    align-items: flex-end;
    text-align: right;
}

.node-dot-wrap {
    height: 32px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.node-dot {
    width: 12px;
    height: 12px;
    background-color: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.65);
    transition: transform 0.3s ease;
}

.timeline-node:hover .node-dot {
    transform: scale(1.4);
}

/* 적색 네온 펄스 애니메이션 */
.node-dot.red-pulse {
    width: 16px;
    height: 16px;
    background-color: #ff3344;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.7);
    animation: pulseRed 2.0s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.8);
    }

    70% {
        transform: scale(1.0);
        box-shadow: 0 0 0 14px rgba(255, 51, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 68, 0);
    }
}

/* 노드 정보 */
.node-info {
    color: #ffffff;
    font-family: 'BookkMyungjo', sans-serif;
}

.node-year {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    opacity: 0.95;
}

.node-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.node-val {
    font-size: 38px;
    font-weight: 900;
    color: #00f2fe;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.node-val span {
    font-size: 20px;
    font-weight: 700;
    margin-left: 3px;
}

.node-val.highlight {
    font-size: 46px;
    color: #ff3344;
    /* 마지막 '12배 성장'은 강렬한 레드 하이라이팅 */
    text-shadow: 0 0 15px rgba(255, 51, 68, 0.3);
}

/* 금빛 수치 텍스트 반짝임 효과 (Shimmer Gold) */
.shimmer-gold {
    position: relative;
    background: linear-gradient(to right, #00f2fe 20%, #ffffff 40%, #00f2fe 60%, #00f2fe 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
}

.node-val.highlight.shimmer-gold {
    background: linear-gradient(to right, #ff3344 20%, #ffffff 40%, #ff3344 60%, #ff3344 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes goldShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* ==========================================================================
   여덟 번째 섹션 (Interactive Sales Ranking Board Section)
   ========================================================================== */
.section-ranking {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #020c1b;
    /* 다크 네이비 폴백 */
    background-image: url('/images/sec8.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0;
    font-family: 'BookkMyungjo', sans-serif;
}

.ranking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ranking-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
}

.ranking-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
}

.ranking-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.25;
}

/* 년도 및 월 선택 컨트롤러 */
.ranking-selector-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.year-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.year-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 40px 12px 20px;
    /* 우측 화살표 여백 확보 */
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'BookkMyungjo', 'Outfit', sans-serif;
    white-space: nowrap;
    outline: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.year-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.year-select option {
    background-color: #0b1a30;
    color: #ffffff;
}

.select-arrow {
    position: absolute;
    right: 16px;
    pointer-events: none;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.month-tabs-wrap {
    flex-grow: 1;
    overflow-x: auto;
    scrollbar-width: none;
    /* 파이어폭스 스크롤 숨김 */
}

.month-tabs-wrap::-webkit-scrollbar {
    display: none;
    /* 크롬/사파리 스크롤 숨김 */
}

.month-tabs {
    display: flex;
    gap: 8px;
    width: max-content;
}

.month-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'BookkMyungjo', sans-serif;
    flex-shrink: 0;
}

.month-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.month-tab.active {
    color: #ffffff;
    background: #0056b3;
    /* 브랜드 진파란색 */
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}

.mobile-only {
    display: none !important;
}

/* 모바일 전용 단일 월 스위처 디자인 */
.mobile-month-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 20px;
    box-sizing: border-box;
}

.month-arrow-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.month-arrow-btn:active {
    color: #00a8cc;
    transform: scale(0.9);
}

.active-month-text {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'BookkMyungjo', sans-serif;
}

/* 랭킹 전광판 보드 */
.ranking-board-wrap {
    width: 100%;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(40px);
}

.ranking-table {
    background: rgba(11, 26, 48, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* 공통 행 레이아웃 */
.ranking-row-header,
.ranking-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-row:last-child {
    border-bottom: none;
}

.ranking-row-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
    font-size: 15px;
}

.col-rank {
    width: 15%;
    font-weight: 800;
    font-size: 18px;
}

.col-branch {
    width: 50%;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.col-sales {
    width: 35%;
    text-align: right;
    font-weight: 800;
    font-size: 18px;
}

/* 데이터 행 스타일 */
.ranking-row {
    color: #ffffff;
    transition: background 0.3s ease;
}

.ranking-row.rank-1st {
    color: #00a8cc;
    /* 1위 골드 */
}

.ranking-row.rank-1st .col-rank,
.ranking-row.rank-1st .col-sales {
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.65);
    animation: neonTextPulse 2.0s infinite alternate ease-in-out;
}

/* ==========================================================================
   아홉 번째 섹션 (Perfect Fillet System Section)
   ========================================================================== */
.section-fillet {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    padding: 120px 0 120px;
    /* 상하 여백을 컴팩트하게 줄여 가독성 향상 */
    font-family: 'Noto Serif KR', serif;
}

/* Perfect Fillet System Section Video Background */
.fillet-video-bg {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%; /* 하단 55% 영역만 비디오 배치 (셰프 이미지가 있는 상단은 순수 검은색 유지) */
    z-index: 1;
    overflow: hidden;
    /* 비디오의 상단 경계선을 부드럽게 페이드아웃 처리하여 사각형 테두리를 완전히 제거 */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000000 25%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000000 25%);
}

.fillet-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: blur(4px) brightness(0.35); /* 사람 얼굴이 선명하지 않도록 조율하고 텍스트 가독성을 위해 어둡게 처리 */
}

.fillet-video-overlay {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%; /* 비디오 크기와 동기화 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.fillet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.fillet-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 1; /* GSAP 대신 CSS 클래스 제어로 대체 */
    transform: none;
}

.fillet-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 5px; /* 넓은 자간에서 시작 */
    display: block;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), letter-spacing 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fillet-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.25;
}

.fillet-title .reveal-text {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    opacity: 0;
    filter: blur(12px); /* 렌즈 포커스 아웃 블러 */
    transform: translateY(40px) scale(0.97);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s ease;
}

.fillet-title .highlight-wrap {
    display: inline-block;
}

.fillet-title .highlight {
    color: #00a8cc;
    text-shadow: 0 0 20px rgba(0, 168, 204, 0.4);
    white-space: nowrap;
    display: inline-block;
}

.mobile-br {
    display: none !important;
}

.fillet-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 25px;
    font-weight: 400;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   뷰포트 진입 시 (.focused) 엇박자 리빌 작동
   ========================================== */

/* 1. 서브타이틀 자간 좁혀지며 안착 */
.section-fillet.focused .fillet-subtitle {
    opacity: 0.9;
    transform: translateY(0);
    letter-spacing: -0.5px;
}

/* 2. 메인 타이틀 줄 단위 블러 포커스 아웃 걷히며 솟아오름 */
.section-fillet.focused .reveal-text {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.section-fillet.focused .reveal-text:nth-of-type(1) {
    transition-delay: 0.15s;
}

.section-fillet.focused .reveal-text:nth-of-type(2) {
    transition-delay: 0.35s;
}

/* 3. '필렛 시스템' 청량한 시안 블루 네온 펄스 작동 */
.section-fillet.focused .highlight-wrap .highlight {
    animation: neonGlowPulse 2.5s infinite alternate ease-in-out 1.5s;
}

@keyframes neonGlowPulse {
    from {
        text-shadow: 0 0 15px rgba(0, 168, 204, 0.4);
    }
    to {
        text-shadow: 0 0 25px rgba(0, 168, 204, 0.9), 0 0 10px rgba(0, 168, 204, 0.4);
    }
}

/* 4. 본문 설명글 순차 등장 */
.section-fillet.focused .fillet-desc {
    opacity: 0.7;
    transform: translateY(0);
    transition-delay: 0.55s;
}

/* 셰프 이미지 영역 */
.fillet-image-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 3 / 2; /* 기존 3:2 비율에 완벽히 매칭 */
    opacity: 0;
    transform: scale(0.95);
    z-index: 3;
}

.fillet-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fillet-slide.active {
    opacity: 1;
    visibility: visible;
}

.fillet-chef-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* 가로세로를 3:2 비율에 완전히 꽉 채워 들쭉날쑥함을 방지 */
    mix-blend-mode: screen;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.8));
    /* 사각형 외곽 테두리를 자연스럽게 페이드아웃하여 사각형 경계 제거 */
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000000 45%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000000 45%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
}

.fillet-shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4; /* 이미지보다 상위에 두어 테두리 경계를 확실히 덮음 */
    pointer-events: none;
    /* 안쪽으로 깊은 순수 블랙 그림자를 생성해 사각형 모서리를 그윽하게 감싸 안음 */
    box-shadow: inset 0 0 100px 40px #000000;
}

.image-behind-glow {
    position: absolute;
    width: 80%; /* 글로우 크기를 키워 뒷배경 비디오와의 조화를 도움 */
    height: 80%;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.25) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* 하단 카드 영역 */
.fillet-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    opacity: 0;
    z-index: 4;
    transition: opacity 0.8s ease; /* 래퍼 부드럽게 페이드인 */
}

/* 뷰포트 포커스 진입 시 카드 래퍼 노출 */
.section-fillet.focused .fillet-cards {
    opacity: 1;
}

.fillet-card {
    flex: 1;
    background: rgba(11, 26, 48, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    /* 1.2초 동안 가속도 곡선을 타고 부드럽게 나타나도록 transition 설정 */
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    will-change: transform, opacity;
}

/* 첫 번째 박스: 우측(120px)에서 출발하여 좌측으로 */
.fillet-card:nth-child(1) {
    transform: translateX(120px);
}

/* 두 번째 박스: 좌측(-120px)에서 출발하여 우측으로 */
.fillet-card:nth-child(2) {
    transform: translateX(-120px);
}

/* 뷰포트 진입 시 (.focused) 상태 적용 */
.section-fillet.focused .fillet-card {
    opacity: 1;
    transform: translateX(0); /* 양방향에서 안쪽으로 모여 제자리 안착 */
}

/* 첫 번째 카드: 타이틀 리빌 완료 후 지연 등장 */
.section-fillet.focused .fillet-card:nth-child(1) {
    transition-delay: 0.85s;
}

/* 두 번째 카드: 첫 번째 카드 등장 후 연속적으로 엇박자 지연 등장 */
.section-fillet.focused .fillet-card:nth-child(2) {
    transition-delay: 1.05s;
}

/* 안착 완료된 상태에서의 호버 효과 처리 (트랜지션 충돌 우려 해소) */
.section-fillet.focused .fillet-card:hover {
    transform: translateY(-8px) translateX(0); /* 호버 시 위로 8px만 안정적으로 이동 */
    border-color: rgba(0, 168, 204, 0.4);
    box-shadow: 0 20px 45px rgba(0, 168, 204, 0.25);
    /* 호버 시 0.4초의 빠른 트랜지션 반응을 주기 위해 재정의 */
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fillet-card .card-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    border-left: 4px solid #00a8cc;
    padding-left: 14px;
    line-height: 1.2;
}

.fillet-card .fillet-card-content {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.fillet-card .fillet-card-content p {
    margin-bottom: 8px;
    word-break: keep-all;
}

.fillet-card .fillet-card-content p:last-child {
    margin-bottom: 0;
}

.fillet-card .fillet-card-content .accent {
    color: #00f2fe;
    font-weight: 700;
}

/* ==========================================================================
   열 번째 섹션 (Pisces Factory & Comparison Section)
   ========================================================================== */
.section-factory {
    position: relative;
    width: 100%;
    /* 연안부두 항구 실루엣 배경 적용 */
    background-image: url('/images/factory_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 220px 0;
    font-family: 'BookkMyungjo', sans-serif;
}

/* 기존 다크 테마 섹션들과의 부드러운 비주얼 연결을 위해 상하단을 자연스러운 검은색 그라디언트로 페이딩하고, 
   중앙의 텍스트와 카드 가독성을 위해 밝은 하늘빛/화이트 오버레이를 오버랩합니다. */
.factory-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            #000000 0%,
            rgba(240, 246, 255, 0.93) 15%,
            rgba(240, 246, 255, 0.93) 85%,
            #000000 100%);
    z-index: 1;
}

.factory-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* 상단 헤더 영역 - 밝은 배경에 대응하기 위해 다크 그레이 컬러 적용 */
.factory-header {
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.factory-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0084ff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    background: rgba(0, 132, 255, 0.08); /* 옅은 파란 캡슐 배지 배경 */
    border: 1px solid rgba(0, 132, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.factory-title {
    font-size: 52px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1.5px;
    line-height: 1.25;
}

.factory-title .title-bold {
    color: #0f172a;
}

.factory-title .title-highlight {
    color: #0084ff; /* 물고기자리 블루 포인트 */
    position: relative;
    display: inline-block;
}

/* 텍스트 밑줄 데코레이션으로 임팩트 부여 */
.factory-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 132, 255, 0.12);
    z-index: -1;
}

.factory-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-top: 25px;
    max-width: 800px;
    word-break: keep-all;
}

/* 순수익 시뮬레이션 박스 스타일 (예쁜 정보 박스화) */
.profit-simulation-box {
    margin: 35px auto 0;
    width: 100%;
    max-width: 650px;
    background: rgba(0, 132, 255, 0.03); /* 밝은 블루 그레이 톤 */
    border: 1px dashed rgba(0, 132, 255, 0.25); /* 세련된 점선 테두리 */
    border-radius: 14px;
    padding: 22px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.profit-simulation-box:hover {
    background: rgba(0, 132, 255, 0.06);
    border-color: rgba(0, 132, 255, 0.4);
    transform: translateY(-2px);
}

.sim-badge {
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    background: #0084ff; /* 고대비 블루 뱃지 */
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: -0.2px;
}

.sim-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.sim-text strong {
    color: #0084ff; /* 중요 숫자는 물고기자리 블루로 세련되게 강조 */
    font-weight: 800;
}

/* 비교 카드 그리드 레이아웃 */
.factory-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 물고기자리 카드가 더 높게 솟아 보이도록 하단 정렬 */
    gap: 0;
    /* 자석 오버랩 효과를 주기 위해 기본 갭을 0으로 처리합니다. */
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.factory-card {
    border-radius: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    /* GSAP 진입 트랜스폼 동작과의 떨림 현상을 방지하기 위해 transition에서 transform을 배제하고 box-shadow만 적용합니다. */
    transition: box-shadow 0.4s ease;
}

/* 타사 브랜드 카드 - 심플하고 플랫한 화이트 톤 */
.card-other {
    width: 380px;
    height: 385px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 55px 40px;
    z-index: 1;
    /* 물고기자리 카드 뒤로 들어가게 우선순위를 1로 낮춤 */
    transform: translateX(25px);
    /* 우측으로 25px 가량 전진시켜 중앙 겹침 유도 */
}

.card-other:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-other .card-brand-title {
    font-size: 26px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 15px;
}

.card-other .card-brand-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #777777;
    margin-bottom: 45px;
}

.card-other .price-info .price-label {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #e53e3e; /* 수치와 일치하는 레드 계열로 변경 */
    font-weight: 700; /* 더 잘 보이도록 두께 상향 */
    display: block;
    margin-bottom: 6px;
}

.card-other .price-info .price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 30px; /* 크기 축소 */
    font-weight: 700;
    color: #e53e3e; /* 경고를 뜻하는 오렌지 레드 계열 */
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-other .price-info .price-value .arrow-up {
    font-size: 18px;
    color: #e53e3e;
    display: inline-block;
    animation: bounceUp 1.2s infinite alternate ease-in-out;
}

@keyframes bounceUp {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

/* 물고기자리 카드 - 스케일이 더 크고 선명한 블루 그라디언트 강조 톤 */
.card-pisces {
    width: 410px;
    height: 425px;
    background: linear-gradient(135deg, #0084ff 0%, #0056b3 100%);
    padding: 65px 40px;
    color: #ffffff;
    box-shadow: 0 25px 55px rgba(0, 86, 179, 0.3);
    z-index: 2;
    /* 타사 카드 위에 얹히도록 우선순위 상향 */
    transform: translateX(-25px);
    /* 좌측으로 25px 가량 전진시켜 중앙 겹침 유도 */
}

.card-pisces:hover {
    box-shadow: 0 30px 65px rgba(0, 86, 179, 0.5);
}

.card-pisces .card-brand-title {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-pisces .card-brand-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
}


.profit-highlight-sub {
    font-size: 13px;
    font-weight: 700;
    color: #ffd166; /* 돋보이는 옐로우 계열 포인트 */
    display: inline-block;
    margin-top: 6px;
    opacity: 0.95;
    line-height: 1.4;
}

.card-pisces .price-info .price-label {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    color: #00f2fe; /* 수치와 일치하는 시안 블루 계열로 변경 */
    opacity: 0.9;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.card-pisces .price-info .price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 46px; /* 크게 확장 */
    font-weight: 900;
    color: #00f2fe; /* 형광에 가까운 고선명 시안 블루 */
    text-shadow: 0 0 25px rgba(0, 242, 254, 0.8), 0 0 10px rgba(0, 242, 254, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-pisces .price-info .price-value .arrow-down {
    font-size: 24px;
    color: #00f2fe;
    display: inline-block;
    animation: bounceDown 1.2s infinite alternate ease-in-out;
}

@keyframes bounceDown {
    from { transform: translateY(0); }
    to { transform: translateY(4px); }
}

/* 빨간 별표 데코레이션 및 위글(흔들림) 애니메이션 */
.star-decor {
    position: absolute;
    top: -42px;
    right: -32px;
    width: 90px;
    height: 90px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(12deg);
    animation: starWiggle 3.2s infinite ease-in-out;
}

.star-decor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(255, 51, 68, 0.35));
}

/* 손글씨 별표가 시선 유도를 할 수 있도록 주기적으로 회전각도와 크기를 미세하게 바운싱합니다. */
@keyframes starWiggle {
    0% {
        transform: rotate(12deg) scale(1);
    }

    50% {
        transform: rotate(18deg) scale(1.08);
    }

    100% {
        transform: rotate(12deg) scale(1);
    }
}

/* 공법 및 다이렉트 시스템 (sec_11) 섹션 스타일링 */
.section-process {
    position: relative;
    width: 100%;
    background-color: #000000;
    padding: 0;
    /* 상하 여백을 없애서 위아래 검정 섹션과 바로 이어지도록 함 */
    overflow: hidden;
}

.process-container {
    width: 100%;
    max-width: 100%;
    /* 풀와이드 화면 연출을 위해 가두기 제약 해제 */
    padding: 0;
}

.process-wrapper {
    display: flex;
    gap: 0;
    /* 좌우 칼럼 사이의 틈(여백) 제거 */
    width: 100%;
}

.process-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50%;
    /* 가로 화면의 정확한 절반을 점유 */
    width: 50%;
}

/* 카드 프레임 - 여백 없이 꽉 찬 벽(Wall) 레이아웃 적용 */
.process-card {
    position: relative;
    width: 100%;
    height: 640px;
    /* 풀와이드에 맞추어 더욱 웅장한 높이 제공 */
    border-radius: 0;
    /* 모퉁이 여백 둥글기 제거 */
    overflow: hidden;
    border: none;
    /* 외곽선 테두리 제거 */
    box-shadow: none;
    /* 개별 카드 입체 그림자 제거 */
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 마우스가 카드 위에 올라가면 배경 이미지만 줌인되는 럭셔리 모션 구현 */
.process-card:hover .card-bg img {
    transform: scale(1.08);
}

/* 흰색/노란색 글자 가독성을 완벽하게 보장하기 위해 이미지 위에 어두운 그라데이션 오버레이 적용 */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

/* 이미지 위에 오버랩되는 텍스트 영역 */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 60px;
    /* 넓어진 화면 폭에 비례해 안쪽 여백 확장 */
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.process-title {
    font-family: 'BookkMyungjo', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.45;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    word-break: keep-all;
}

.process-title .highlight {
    color: #00f2fe;
    /* 시안 속 돋보이는 노란색/금빛 강조 라인 */
    display: block;
    margin-top: 6px;
    font-weight: 900;
}

.process-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    word-break: keep-all;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .revenue-title {
        font-size: 48px;
    }

    .revenue-desc {
        font-size: 16px;
    }

    .revenue-card {
        padding: 24px 30px;
        min-width: 260px;
    }

    .card-branch {
        font-size: 18px;
    }

    .card-val strong {
        font-size: 20px;
    }

    .quality-container {
        flex-direction: column;
        gap: 50px;
        align-items: stretch;
    }

    .quality-left {
        max-width: 100%;
        text-align: center;
    }

    .quality-title {
        font-size: 40px;
    }

    .quality-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 26px;
    }

    .slide-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .slider-controls {
        justify-content: center;
    }

    /* 1024px 이하부터 햄버거 메뉴 토글로 강제 전환 */
    *, *::before, *::after {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* 가로 스크롤이 필수적이거나 가로로 흐르는 특수 애니메이션/슬라이더는 예외 처리 */
    .marquee-track, 
    .marquee-list, 
    .marquee-item,
    .cost-table, 
    .cost-table-wrap,
    .store-slider, 
    .store-item, 
    .store-item img,
    .wing-bg-slider,
    .wing-bg-item {
        max-width: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    /* 1024px 이하 태블릿/모바일 랭킹 셀렉터 럭셔리 대칭 세로정렬 튜닝 */
    .ranking-selector-wrap {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 480px !important; /* 화면 중앙 정렬 및 최대폭 제한 */
        margin: 0 auto 30px !important;
    }

    .year-select-wrap {
        width: 100% !important;
        position: relative !important;
    }

    .year-select {
        width: 100% !important; /* 다시 100% 너비를 차지하도록 수정 */
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        height: 50px !important; /* 높이 50px 대칭 */
        box-sizing: border-box !important;
        font-family: 'BookkMyungjo', 'Outfit', sans-serif !important;
        
        /* 텍스트 가로 중앙 정렬 유지 */
        text-align: center !important;
        text-align-last: center !important;
    }

    .select-arrow {
        right: 20px !important; /* 100% 너비에 맞추어 원래대로 우측 끝 정렬 */
    }

    .mobile-month-selector {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 10px !important;
        padding: 0 15px !important;
        height: 50px !important; /* 높이 50px 대칭 완성 */
        box-sizing: border-box !important;
    }

    .month-arrow-btn {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 6px !important;
    }

    .month-arrow-btn:active {
        color: #00f2fe !important; /* 액티브 반응형 피드백 */
    }

    .active-month-text {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        letter-spacing: 0.5px !important;
    }

    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    main {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* 모바일/태블릿에서 GSAP 미트리거 또는 모션 라이브러리 초기 로딩 시 요소 숨김 방지 */
    .sales-dashboard .left-wing,
    .sales-dashboard .right-wing {
        opacity: 1 !important;
        transform: none !important;
        display: block !important; /* 모바일에서 확실하게 레이아웃에 포함 */
    }

    .store-item.active {
        opacity: 1 !important; /* 첫 로딩 시 활성화된 매장 이미지는 강제 노출 */
    }

    .store-status-card {
        opacity: 1 !important; /* 모바일 매출 카드는 강제 노출 */
        transform: none !important;
    }

    /* 랭킹보드 모바일/태블릿에서 GSAP 미트리거 시 노출 보장 */
    .ranking-header,
    .ranking-selector-wrap,
    .ranking-board-wrap {
        opacity: 1 !important;
        transform: none !important;
    }

    header {
        background: rgba(0, 0, 0, 0.9) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }

    header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    nav {
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mega-menu {
        display: none !important; /* 모바일/태블릿 메가메뉴 완전 숨김 */
    }

    .nav-links {
        display: none !important; /* 모바일/태블릿 가로 네비게이션 숨김 */
    }

    header .header-cta {
        display: none !important; /* 모바일/태블릿 가로 헤더 CTA 숨김 */
    }

    .mobile-nav-toggle {
        display: flex !important; /* 모바일/태블릿 삼선 햄버거 토글 노출 */
    }

    .hero-dark-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
        justify-content: center;
        align-items: center;
        padding-top: 100px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-right {
        align-items: center;
        text-align: center;
        margin-top: 0;
        min-width: auto !important; /* 모바일에서는 고정 최소 폭 해제 */
        flex-shrink: 1 !important; /* 모바일에서 공간 부족 시 자연스러운 축소 허용 */
    }

    .revenue-box {
        min-width: auto !important; /* 모바일에서는 고정 최소 폭 해제 */
        justify-content: center !important; /* 모바일 중앙 정렬 */
    }

    /* 모바일/태블릿에서는 숙성회 이미지를 노출하지 않음 */
    .hero-sashimi-img {
        display: none !important;
    }

    .brand-name {
        font-size: 56px;
    }

    .hero-right-title-wrap {
        display: flex !important;
        align-items: baseline !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .badge-premium {
        font-size: 30px !important;
        margin-bottom: 0 !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .badge-premium::before {
        display: none !important;
    }

    .accent-title {
        font-size: 44px !important;
        margin-bottom: 0 !important;
    }

    .revenue-number {
        font-size: 80px;
    }

    .revenue-unit {
        font-size: 34px;
    }

    .section-price {
        height: auto !important;
        min-height: auto !important;
        padding: 100px 0 0 0 !important;
    }

    .price-container {
        flex-direction: column;
        gap: 20px !important;
        text-align: center;
        height: auto !important;
    }

    .price-left {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding-bottom: 0 !important;
    }

    .price-title {
        font-size: 40px;
    }

    .price-desc {
        font-size: 16px;
    }

    .price-summary {
        align-items: center;
        max-width: 480px;
    }

    .summary-line {
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    }

    .price-right {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .price-img-wrap {
        max-width: 550px;
    }

    .hours-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .hours-cards-wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hours-card-float-wrap {
        width: 100%;
        max-width: 480px;
    }

    .hours-card {
        width: 100%;
        height: 200px;
    }

    .hours-title {
        font-size: 42px;
    }

    .hours-desc {
        font-size: 16px;
    }

    .model-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .model-title {
        font-size: 42px;
    }

    .model-desc {
        font-size: 16px;
    }

    .model-cards-wrap {
        flex-direction: column;
    }

    .model-card {
        height: 380px;
    }

    .model-card-title {
        font-size: 28px;
    }

    .growth-title {
        font-size: 48px;
    }

    .timeline-wrap {
        margin-top: 60px;
    }

    .node-val {
        font-size: 30px;
    }

    .node-val.highlight {
        font-size: 38px;
    }

    /* 랭킹보드 1024px 반응형 */
    .ranking-title {
        font-size: 42px;
    }

    .ranking-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .ranking-table {
        padding: 20px;
    }

    .col-rank {
        width: 15% !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .col-branch {
        width: 35% !important;
        font-size: 14px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .col-sales {
        width: 50% !important;
        font-size: 14px !important;
        white-space: nowrap !important;
        text-align: right !important;
    }

/* 필렛 1024px 반응형 */
.section-fillet {
    padding: 90px 0 90px;
    /* 태블릿 환경에 맞게 상하 패딩 축소 */
}

.fillet-title {
    font-size: 42px;
}

.fillet-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
}

.fillet-desc {
    font-size: 16px;
}

.fillet-cards {
    flex-direction: column !important; /* 태블릿 규격부터 세로 정렬로 변경 */
    gap: 20px;
    padding: 0 20px;
    margin-top: 40px;
}

.fillet-card {
    width: 100% !important; /* 가로 너비 전체 사용 */
    padding: 30px 25px;
}

.fillet-card .card-title {
    font-size: 22px;
}

/* 자체생산센터 1024px 반응형 */
.section-factory {
    padding: 160px 0;
}

.factory-title {
    font-size: 42px;
}

.factory-cards {
    flex-direction: column !important; /* 태블릿 구간부터 즉시 수직 배치 */
    align-items: center !important;
    gap: 0 !important;
    margin-top: 40px !important;
}

.card-other,
.card-pisces {
    width: 100% !important;
    max-width: 380px !important; /* 모바일/태블릿 적정 너비 */
    height: auto !important;
    padding: 40px 30px !important;
}

.card-other {
    transform: translateY(15px) !important; /* 위아래 포개지도록 보정 */
}

.card-pisces {
    transform: translateY(-15px) !important; /* 위아래 포개지도록 보정 */
}

/* 공법 및 다이렉트 시스템 1024px 반응형 */
.section-process {
    padding: 0;
}

.process-wrapper {
    gap: 0;
}

.process-card {
    height: 540px;
}

.card-content {
    padding: 50px 30px;
}

.process-title {
    font-size: 26px;
}

.process-desc {
    font-size: 14.5px;
}
}

@media (max-width: 768px) {
    .section-revenue {
        padding: 80px 0;
    }

    .revenue-subtitle {
        font-size: 16px;
    }

    .revenue-title {
        font-size: 34px;
    }

    .revenue-desc {
        font-size: 14px;
        margin-top: 15px;
    }

    .revenue-subheader h3 {
        font-size: 18px;
    }

    .revenue-card {
        padding: 20px 25px;
        min-width: 220px;
    }

    .card-branch {
        font-size: 16px;
    }

    .card-val strong {
        font-size: 18px;
    }

    .quality-title {
        font-size: 30px;
    }

    .quality-slider {
        height: 320px;
    }

    .slide-text-box {
        padding: 40px 24px 24px;
    }

    .slide-badge {
        padding: 8px 24px;
        font-size: 11px;
        margin-bottom: 12px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .slide-desc {
        font-size: 13px;
        line-height: 1.5;
    }



    .cta-button {
        font-size: 13px;
        padding: 8px 18px;
    }



    .brand-name {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-right-title-wrap {
        gap: 10px;
        margin-bottom: 16px;
    }

    .badge-premium {
        font-size: 26px !important;
        padding: 0;
        margin-bottom: 0;
    }

    .badge-premium::before {
        display: none;
    }

    .accent-title {
        font-size: 34px !important;
        margin-bottom: 0;
    }

    .revenue-number {
        font-size: 64px;
    }

    .revenue-unit {
        font-size: 28px;
    }

    .price-title {
        font-size: 30px;
    }

    .price-desc {
        font-size: 14px;
    }

    .summary-label {
        font-size: 18px;
    }

    .summary-value {
        font-size: 76px;
    }

    .summary-value .unit {
        font-size: 26px;
    }

    .price-img-wrap {
        max-width: 100%;
    }

    .hours-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .hours-card {
        height: 180px;
    }

    .step-time {
        font-size: 22px;
    }

    .hours-title {
        font-size: 30px;
    }

    .hours-desc {
        font-size: 14px;
    }

    .model-subtitle {
        font-size: 18px;
    }

    .model-title {
        font-size: 32px;
    }

    .model-desc {
        font-size: 14px;
    }

    .model-card {
        height: 300px;
    }

    .model-card-title {
        font-size: 24px;
    }

    .growth-title {
        font-size: 36px;
    }

    .growth-subtitle {
        font-size: 16px;
    }

    .growth-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 15px;
    }

    /* 세로형 타임라인 전환 */
    .timeline-line {
        top: 0;
        left: 15px;
        /* 노드 dot이 세로선 위에 오도록 맞춤 */
        width: 2px;
        height: 100%;
    }

    .timeline-line-progress {
        width: 100%;
        height: 0;
        transform-origin: center top;
    }

    .timeline-glow-particle {
        top: 0;
        left: 50%;
        width: 6px;
        height: 80px;
        background: linear-gradient(to bottom, transparent, #00f2fe, #ffffff, #00f2fe, transparent);
        transform: translateX(-50%);
        animation: flowLightVertical 4.5s infinite linear;
    }

    @keyframes flowLightVertical {
        0% {
            top: 0%;
            opacity: 0;
        }

        5% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    .timeline-nodes {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .timeline-node {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .timeline-node:last-child {
        align-items: center;
        text-align: left;
    }

    .node-dot-wrap {
        margin-bottom: 0;
        width: 32px;
        justify-content: center;
    }

    .node-info {
        text-align: left;
    }

    .node-year {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .node-val {
        font-size: 26px;
    }

    .node-val.highlight {
        font-size: 30px;
    }

    /* 랭킹보드 모바일(768px) 반응형 */
    .ranking-title {
        font-size: 28px !important;
    }

    .ranking-subtitle {
        font-size: 14px !important;
    }

    .ranking-table {
        padding: 15px 12px !important;
        border-radius: 12px !important;
    }

    .ranking-row-header,
    .ranking-row {
        padding: 14px 0 !important;
    }

    .col-rank {
        width: 15% !important; /* 순위 너비 미세 조정 */
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .col-branch {
        width: 35% !important; /* 지점명 너비 35%로 조율 */
        font-size: 13px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .col-sales {
        width: 50% !important; /* 일 최고 매출 영역 너비 50%로 대폭 확장하여 줄바꿈 방지 */
        font-size: 13px !important;
        white-space: nowrap !important; /* 금액과 '원'이 한 줄에 출력되도록 설정 */
        text-align: right !important;
    }

    /* 랭킹보드 1~3위 순위별 광채 테두리 및 배지 포인트 튜닝 */
    .ranking-row.rank-1st {
        color: #00a8cc !important;
        background: rgba(0, 242, 254, 0.08) !important;
        border-radius: 8px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        border-bottom: 1px solid rgba(0, 242, 254, 0.15) !important;
    }

    .ranking-row.rank-2nd {
        color: #e0e0e0 !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border-radius: 8px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .ranking-row.rank-3rd {
        color: #cd7f32 !important;
        background: rgba(205, 127, 50, 0.04) !important;
        border-radius: 8px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* 매장별 매출 대시보드 모바일(768px) 반응형 */
    .sales-dashboard {
        flex-direction: column-reverse !important;
        height: auto !important;
        min-height: auto !important;
    }

    .left-wing {
        width: 100% !important;
        height: 360px !important; /* 이미지 슬라이더 영역을 모바일에 맞게 컴팩트하게 */
        flex: none !important;
    }

    .right-wing {
        width: 100% !important;
        height: auto !important; /* 슬로건 및 설명 영역은 텍스트 길이에 따라 자동 유연하게 */
        padding: 50px 20px !important;
        flex: none !important;
    }

    .store-status-card {
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 290px !important;
        padding: 16px 20px !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    }

    #storeName {
        font-size: 16px !important;
    }

    .status-details {
        margin-bottom: 12px !important;
    }

    .status-details li {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    .status-sales {
        padding: 10px !important;
    }

    .status-sales .label {
        font-size: 10px !important;
    }

    #storeSales {
        font-size: 18px !important;
    }

    .right-wing .main-slogan {
        font-size: 28px !important;
        line-height: 1.4 !important;
        margin-bottom: 40px !important;
    }

    .dashboard-owner-message .message-item {
        padding: 8px 0 8px 15px !important;
    }

    .dashboard-owner-message p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* 개설비용 모바일(768px) 반응형 */
    .section-cost {
        padding: 80px 0;
    }

    .cost-title {
        font-size: 36px;
    }

    .cost-subtitle {
        font-size: 16px;
    }

    .cost-table-wrap {
        padding: 0;
        overflow-x: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .cost-table {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        border: none !important;
        background: transparent !important;
    }

    .cost-table thead {
        display: none !important;
    }

    .cost-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .cost-table tbody tr {
        display: flex !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 16px !important;
        padding: 24px !important;
        margin-bottom: 16px !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
    }

    .cost-table tbody tr:hover {
        border-color: rgba(0, 242, 254, 0.3) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        transform: translateY(-2px) !important;
    }

    .cost-table tbody td {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
        text-align: left !important;
        background: transparent !important;
        box-sizing: border-box !important;
    }

    .cost-table tbody td.cost-label {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 12px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .cost-table tbody td.cost-amount {
        font-family: 'Outfit', sans-serif !important;
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #00f2fe !important;
        margin-bottom: 10px !important;
    }

    .cost-table tbody td:nth-child(3) {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        line-height: 1.6 !important;
        margin-top: 4px !important;
        order: 3 !important;
    }

    .cost-table tbody td.cost-note {
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        width: auto !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-align: center !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .cost-table tbody td.cost-note.return {
        background: rgba(0, 132, 255, 0.1) !important;
        color: #0084ff !important;
        border-color: rgba(0, 132, 255, 0.2) !important;
    }

    .cost-table tbody td.cost-note:empty {
        display: none !important;
    }

    .cost-table tfoot {
        display: block !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .cost-table tfoot tr.row-total {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: linear-gradient(135deg, #0084ff 0%, #0056b3 100%) !important;
        border: none !important;
        border-radius: 16px !important;
        padding: 30px 20px !important;
        text-align: center !important;
        box-shadow: 0 15px 35px rgba(0, 86, 179, 0.25) !important;
        box-sizing: border-box !important;
        margin-top: 10px !important;
    }

    .cost-table tfoot tr.row-total td {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
        text-align: center !important;
        background: transparent !important;
    }

    .cost-table tfoot tr.row-total td.cost-label {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }

    .cost-table tfoot tr.row-total td.cost-amount.total {
        margin-top: 0 !important;
    }

    .cost-table tfoot tr.row-total .total-value {
        font-size: 32px !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }

    .cost-table tfoot tr.row-total .total-unit {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin-left: 4px !important;
    }

    .cost-notice {
        font-size: 12px !important;
        text-align: center !important;
        margin-top: 20px !important;
        color: rgba(255, 255, 255, 0.4) !important;
    }

    /* 필렛 모바일(768px) 반응형 */
    .section-fillet {
        padding: 70px 0 70px;
        /* 모바일 환경에 맞게 상하 패딩 축소 */
    }

    .fillet-title {
        font-size: 32px;
    }

    .fillet-subtitle {
        font-size: 16px;
    }

    .fillet-desc {
        font-size: 14px;
        margin-top: 15px;
    }

    .fillet-cards {
        margin-top: 30px;
        padding: 0 10px;
    }

    .fillet-card {
        padding: 24px 20px;
    }

    .fillet-card .card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .fillet-card .fillet-card-content {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 자체생산센터 768px 반응형 */
    .section-factory {
        padding: 120px 0;
    }

    .factory-header {
        margin-bottom: 40px;
    }

    .factory-subtitle {
        font-size: 16px;
    }

    .factory-title {
        font-size: 32px;
    }

    .factory-desc {
        font-size: 14px;
        margin-top: 15px;
    }

    .card-other .card-brand-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .card-other .card-brand-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .card-other .price-info .price-value {
        font-size: 28px;
    }

    .card-pisces .card-brand-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .card-pisces .card-brand-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .card-pisces .price-info .price-value {
        font-size: 34px;
    }

    .star-decor {
        width: 70px;
        height: 70px;
        top: -30px;
        right: -15px;
    }

    /* 공법 및 다이렉트 시스템 768px 반응형 */
    .section-process {
        padding: 0;
    }

    .process-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .process-col {
        width: 100%;
        max-width: 100%;
        /* 모바일에서 전체 폭 차지 */
    }

    .process-card {
        height: 480px;
    }

    .card-content {
        padding: 40px 20px;
    }

    .process-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .process-title .highlight {
        margin-top: 4px;
    }

    .process-desc {
        font-size: 13.5px;
        line-height: 1.7;
    }
}

/* ==============================================
   열두 번째 섹션: 압도적 경쟁력 (가로형 아코디언)
   ============================================== */
.section-competitiveness {
    position: relative;
    width: 100%;
    background-color: #0a0a0a;
    background-image: url('/images/sec12_back.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* 파라랙스 효과 */
    padding: 160px 0 180px;
    overflow: hidden;
    font-family: 'Noto Serif KR', serif;
}

/* 배경 오버레이 제거 - 원본 이미지 그대로 노출 */
.comp-bg-overlay {
    display: none;
}

.comp-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 섹션 헤더 */
.comp-header {
    text-align: center;
    margin-bottom: 70px;
}

.comp-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: #00b4d8;
    /* 골드 계열 */
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.comp-eyebrow::before,
.comp-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #00b4d8;
    opacity: 0.6;
}

.comp-eyebrow::before {
    right: 100%;
}

.comp-eyebrow::after {
    left: 100%;
}

.comp-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    /* 배경이 밝으므로 어두운 텍스트 */
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.comp-highlight {
    color: #00b4d8;
}

.comp-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: rgba(30, 30, 30, 0.65);
    /* 밝은 배경에 맞게 어두운 계열 */
    line-height: 1.8;
    margin: 0;
}

/* 아코디언 컨테이너 */
.comp-accordion {
    display: flex;
    height: 560px;
    /* 세로 기준값 - 이미지가 이 높이 내에서 자연 비율로 표시됨 */
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    gap: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* 개별 아코디언 아이템 */
.accordion-item {
    position: relative;
    flex: 0 0 90px;
    /* 닫힌 상태 너비 */
    overflow: hidden;
    cursor: pointer;
    transition: flex 1.0s cubic-bezier(0.25, 1, 0.5, 1);
    /* 탭 전환 속도 조절 */
    background: #ffffff;
    /* 탭 내부 흰색 배경 */
    border-right: 1px solid rgba(180, 150, 90, 0.25);
}

.accordion-item:last-child {
    border-right: none;
}

/* 활성화 아이템: 남은 공간 전부 차지 */
.accordion-item.active {
    flex: 1;
}

/* 닫힌 상태: 세로 탭 헤더 */
.item-tab-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 2;
    background: #f5f0e8;
    /* 닫힌 탭: 크림색 배경으로 구분감 */
    transition: opacity 0.3s ease, background 0.3s ease;
}

.accordion-item.active .item-tab-header {
    opacity: 0;
    pointer-events: none;
}

.tab-num {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #00b4d8;
}

.tab-label {
    font-size: 13px;
    font-weight: 600;
    color: #2a2a2a;
    /* 밝은 배경에 맞게 어두운 라벨 */
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 0.15em;
}

/* 펼쳐진 본문 영역 */
.item-body {
    position: absolute;
    top: 0;
    left: 90px;
    /* 탭 헤더 너비만큼 오프셋 */
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    /* flex 전환 후 페이드인 */
    pointer-events: none;
}

.accordion-item.active .item-body {
    opacity: 1;
    pointer-events: auto;
}

.item-body-content {
    display: flex;
    align-items: center;
    /* 텍스트와 이미지 세로 중앙 정렬 */
    padding: 50px 0 50px 40px;
    gap: 0;
}

/* 텍스트 영역 */
.item-text {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
    /* 텍스트와 이미지 사이 간격 */
}

.item-num-large {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(200, 169, 110, 0.15);
    margin-bottom: -20px;
    /* 타이틀과 겹쳐 깊이감 연출 */
    letter-spacing: -0.05em;
}

.item-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    /* 흰 배경 위 어두운 타이틀 */
    line-height: 1.3;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.item-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 14.5px;
    color: rgba(30, 30, 30, 0.7);
    /* 흰 배경 위 어두운 설명 텍스트 */
    line-height: 1.85;
    margin: 0 0 28px;
}

.item-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-tags li {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #00b4d8;
    padding-left: 16px;
    position: relative;
    letter-spacing: 0.03em;
}

.item-tags li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #00b4d8;
    opacity: 0.6;
    font-size: 11px;
    top: 1px;
}

/* 이미지 영역: 우측 끝에 꽉 붙임 */
.item-image {
    flex: 0 0 42%;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    /* 이미지를 하단에 배치 */
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: -50px; /* 부모 하단 패딩 공간을 이겨내고 바닥선에 완전 밀착 */
}

.item-image img {
    width: 100%;
    height: auto;
    /* 자연 비율 유지 - 컨테이너보다 작아지면 flex-end로 하단 정렬됨 */
    display: block;
    transition: transform 0.7s ease;
    transform: translateY(20px); /* 이미지 시각적 포지션을 하단으로 하강 */
}

.accordion-item.active .item-image img:hover {
    transform: translateY(20px) scale(1.04);
}

/* 모든 아이템 배경 흰색 통일 - 개별 그라디언트 제거 */
.accordion-item[data-index="0"],
.accordion-item[data-index="1"],
.accordion-item[data-index="2"],
.accordion-item[data-index="3"] {
    background: #ffffff;
}

/* 아이템 좌측 골드 액센트 바 */
.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 3px;
    height: 60%;
    background: #00b4d8;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.accordion-item.active::before {
    opacity: 1;
}

/* 1024px 태블릿 반응형 */
@media (max-width: 1024px) {
    .section-competitiveness {
        padding: 120px 0 140px;
    }

    .comp-inner {
        padding: 0 30px;
    }

    .comp-title {
        font-size: 38px;
    }

    .comp-accordion {
        height: 440px;
    }

    .item-image {
        width: 240px;
        height: 300px;
    }

    .item-title {
        font-size: 24px;
    }

    .item-desc {
        font-size: 13px;
    }

    .item-body-content {
        padding: 40px 30px 40px 30px;
        gap: 25px;
    }
}

/* 768px 모바일 반응형: 가로 아코디언 → 세로 탭 리스트 */
@media (max-width: 768px) {
    .section-competitiveness {
        padding: 90px 0 100px;
        background-attachment: scroll;
        /* 모바일 fixed 성능 이슈 방지 */
    }

    .comp-inner {
        padding: 0 20px;
    }

    .comp-title {
        font-size: 30px;
    }

    .comp-header {
        margin-bottom: 40px;
    }

    /* 모바일: 세로 스택 레이아웃 */
    .comp-accordion {
        flex-direction: column;
        height: auto;
        gap: 10px;
        background: transparent;
        box-shadow: none;
    }

    .accordion-item {
        flex: none !important;
        width: 100%;
        border-radius: 12px;
        border-right: none;
        overflow: hidden;
        transition: none;
    }

    /* 모바일: 탭 헤더를 항상 가로로 노출 */
    .item-tab-header {
        position: relative;
        width: 100%;
        height: 60px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 12px;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: rgba(200, 169, 110, 0.08);
    }

    .tab-label {
        writing-mode: horizontal-tb;
        font-size: 15px;
    }

    /* 모바일: 본문은 클릭 시 열리도록 절대위치 해제 */
    .item-body {
        position: relative;
        left: 0;
        top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        pointer-events: auto;
        transition: max-height 0.5s ease;
    }

    .accordion-item.active .item-body {
        max-height: 750px; /* 본문과 이미지가 잘리지 않도록 넉넉하게 확장 */
    }

    .item-body-content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        align-items: flex-start;
    }

    .item-num-large {
        font-size: 50px;
    }

    .item-image {
        width: 100%;
        height: 240px;
        margin-bottom: 0; /* 데스크톱의 마이너스 마진 리셋 */
        border-radius: 12px;
        overflow: hidden;
    }

    .item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 가로세로 비율에 맞춰 가득 채움 */
        transform: translateY(0) !important; /* 데스크톱 하강 효과 강제 제거 */
    }
}

/* ==============================================
   열세 번째 섹션: 메뉴 쇼케이스
   ============================================== */
.section-menu {
    position: relative;
    width: 100%;
    background: #0d0d0d;
    padding: 120px 0;
    overflow: hidden;
    font-family: 'Noto Serif KR', serif;
}

/* 배경 장식: 대각선 골드 라인 */
.section-menu::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 169, 110, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.section-menu::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: 100px;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(200, 169, 110, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.menu-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* 상단 에디토리얼 헤더 영역: 가로 정렬 */
.menu-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
}

.menu-editorial-title {
    flex: 1;
    max-width: 700px;
}

.menu-editorial-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.menu-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: #00b4d8;
    text-transform: uppercase;
}

.menu-deco-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, rgba(200, 169, 110, 0.5), transparent);
}

.menu-headline {
    font-size: 48px;
    /* 가로형에 맞게 폰트 크기 슬라이딩 */
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.menu-headline-sm {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    font-family: 'Pretendard', sans-serif;
}

.menu-sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

/* 가로형 메뉴 탭 네비게이션 */
.menu-tabs {
    display: flex;
    flex-direction: row;
    gap: 10px;
    border-left: none;
    align-items: center;
    position: relative;
}

.menu-tab-btn {
    background: none;
    border: none;
    padding: 10px 18px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

/* 가로형 언더라인 골드 액센트 */
.menu-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -31px;
    /* border-bottom 선과 정확하게 오버랩 */
    width: 100%;
    height: 2px;
    background: #00b4d8;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left;
    z-index: 2;
}

.menu-tab-btn.active {
    color: #00b4d8;
    font-weight: 700;
}

.menu-tab-btn.active::before {
    transform: scaleX(1);
}

.menu-tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* 우측 쇼케이스 */
.menu-showcase {
    position: relative;
    min-height: 540px;
}

/* 패널 전환: GSAP과의 충돌 방지를 위해 CSS transition 제거 */
.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.menu-panel.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* 비대칭 에디토리얼 그리드: 4개 카드 꽉 채우기 (1.5fr - 1fr - 1.2fr) */
.menu-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    grid-template-rows: 255px 255px;
    gap: 16px;
    /* 카드 사이 간격을 넓혀 잡지 화보 느낌 강화 */
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
    cursor: pointer;
}

/* 첫 번째 카드 (메인): 좌측 2행 전체 차지 */
.menu-card:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}

/* 두 번째 카드: 중앙 상단 */
.menu-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* 세 번째 카드: 중앙 하단 */
.menu-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* 네 번째 카드: 우측 2행 전체 차지 */
.menu-card:nth-child(4) {
    grid-column: 3;
    grid-row: span 2;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.menu-card:hover img {
    transform: scale(1.07);
}

/* 카드 정보 오버레이 */
.menu-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    transform: translateY(4px);
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-info {
    transform: translateY(0);
}

.card-category {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #00b4d8;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.menu-card:nth-child(1) .card-name,
.menu-card:nth-child(4) .card-name {
    font-size: 20px;
}

.card-price {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* 하단: 메뉴 더보기 액션 영역 */
.menu-more-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.btn-menu-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: transparent;
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 50px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #00b4d8;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 호버 시 내부에서 골드 빛이 차오르는 효과 */
.btn-menu-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    background: #00b4d8;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.btn-menu-more span,
.btn-menu-more svg {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-menu-more svg {
    transition: transform 0.3s ease;
    stroke: #00b4d8;
}

/* 호버 이벤트 */
.btn-menu-more:hover {
    color: #0d0d0d;
    border-color: #00b4d8;
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.25);
    transform: translateY(-2px);
}

.btn-menu-more:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-menu-more:hover svg {
    transform: translateX(4px);
    stroke: #0d0d0d;
}

/* 1024px 반응형 */
@media (max-width: 1024px) {
    .menu-inner {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 0 30px;
    }

    .menu-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-bottom: 24px;
    }

    .menu-headline {
        font-size: 38px;
    }

    .section-menu {
        padding: 90px 0;
    }
}

/* 768px 반응형 */
@media (max-width: 768px) {
    .section-menu {
        padding: 70px 0;
    }

    .menu-inner {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .menu-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
    }

    .menu-headline {
        font-size: 30px;
    }

    .menu-tabs {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        /* 줄바꿈 방지 */
        overflow-x: auto;
        /* 가로 스크롤 허용 */
        -webkit-overflow-scrolling: touch;
        /* 모바일 부드러운 스크롤 */
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        gap: 4px;
        scrollbar-width: none;
        /* Firefox 스크롤바 숨김 */
        -ms-overflow-style: none;
        /* IE 스크롤바 숨김 */
        padding-bottom: 8px;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari 스크롤바 숨김 */
    }

    .menu-tab-btn {
        padding: 12px 18px;
        font-size: 14px;
        flex-shrink: 0;
        /* 버튼 압축 방지 */
        white-space: nowrap;
        /* 텍스트 개행 방지 */
    }

    .menu-tab-btn::before {
        left: 0;
        top: auto;
        bottom: -9px;
        /* 모바일 보더 라인에 밀착 정렬 */
        width: 100%;
        height: 2px;
        transform: scaleX(0);
        transform-origin: left;
    }

    .menu-tab-btn.active::before {
        transform: scaleX(1);
    }

    .menu-showcase {
        min-height: 400px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .menu-card {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 16/10;
    }

    .menu-more-action {
        margin-top: 15px;
    }

    .btn-menu-more {
        padding: 14px 34px;
        font-size: 14px;
    }

    /* 모바일 히어로 비디오 배경 최적화 */
    .hero-video-bg {
        width: 100%;
        opacity: 0.6;
    }

    .hero-video-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.55) 50%,
                rgba(0, 0, 0, 0.85) 100%);
    }
}

/* Sales Dashboard - Store Stats */
.sales-dashboard {
    display: flex;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    background-color: #314e8d;
    /* 브랜드 기본 네이비 테마 */
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.left-wing {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.store-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.store-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.store-item.active {
    opacity: 1;
}

.store-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 좌측 반투명 블러 카드 */
.store-status-card {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    z-index: 5;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.status-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    padding-bottom: 10px;
}

#storeName {
    font-size: 24px;
    font-weight: 700;
}

.status-details {
    margin-bottom: 20px;
    list-style: none;
}

.status-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.status-details .label {
    color: #8faadb;
    /* 은은한 블루톤 폰트컬러 */
}

.status-sales {
    background: rgba(49, 78, 141, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-sales .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

#storeSales {
    font-size: 28px;
    font-weight: 800;
}

/* 우측 콘텐츠 슬라이더 */
.right-wing {
    flex: 1;
    position: relative;
    background-image: url('/images/fish.webp');
    /* 필요에 맞춰 배경 이미지 지정 */
    background-size: cover;
    background-position: center;
    background-color: #314e8d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    overflow: hidden;
}

.wing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slogan-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.right-wing .sub-slogan {
    font-family: 'Outfit', sans-serif; /* 영문 프리미엄 서체 통일 */
    color: #c5a059;
    /* 골드 계열 포인트 컬러 */
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.right-wing .main-slogan {
    font-family: 'Noto Serif KR', serif; /* 메인 히어로 명조 서체 통일 */
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 70px;
    color: #ffffff;
}

.accent-line {
    width: 60px;
    height: 2px;
    background-color: #00a8cc;
    /* 아쿠아 포인트 컬러 */
    margin: 30px auto 0;
}


.dashboard-owner-message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.dashboard-owner-message .message-item {
    border-left: 2px solid #00a8cc; /* 기본 청색 포인트 바 제공 */
    padding: 10px 0 10px 25px;
    background: rgba(255, 255, 255, 0.02); /* 은은한 백그라운드 기본 제공 */
    text-align: left;
    
    /* 1. 기본 비활성 상태: 처음에는 투명하게 감추고 15px 아래에 배치 */
    opacity: 0;
    transform: translateY(15px);
    
    /* 트랜지션 기본 장착 */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
}

/* 2. 포커스 시 활성 상태: 선명하게 보이고 원래 위치로 복귀하게 명시 */
.dashboard-owner-message.focused .message-item {
    opacity: 1;
    transform: translateY(0);
}

/* 등장할 때의 엇박자 딜레이(Stagger) 설정 */
.dashboard-owner-message.focused .message-item:nth-child(1) {
    transition-delay: 0s;
}
.dashboard-owner-message.focused .message-item:nth-child(2) {
    transition-delay: 0.25s;
}
.dashboard-owner-message.focused .message-item:nth-child(3) {
    transition-delay: 0.5s;
}

.dashboard-owner-message p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff; /* 가독성 높은 순백색 기본값 제공 */
    font-weight: 500;
    margin: 0;
}

/* 모바일 태블릿 반응형 레이아웃 처리 */
@media (max-width: 1024px) {
    .sales-dashboard {
        flex-direction: column-reverse;
        height: auto;
    }

    .left-wing,
    .right-wing {
        width: 100%;
        height: 500px;
    }

    .right-wing .main-slogan {
        font-size: 32px;
    }

    .store-status-card {
        bottom: 30px;
        left: 30px;
        right: 30px;
        width: auto;
    }
}

.reveal-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #00182e;
    /* 브랜드 메인 네이비 */
    font-family: 'Noto Serif KR', serif;
}

.reveal-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 위에 덮여있다가 스크롤 시 구멍이 넓어지는 오버레이 이미지 */
.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    clip-path: circle(20% at 50% 50%);
    /* 초기 마스크 구멍 크기 (가운데 20%) */
    background-color: #00182e;
    pointer-events: none;
    /* 오버레이 위에서 스크롤 작동 방해 방지 */
}

.reveal-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.reveal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    /* 원활한 가독성을 위해 배경 명도 하향 */
}

/* 마스크 안쪽에 숨겨져 있을 숏츠 콘텐츠 컨테이너 */
.shorts-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    /* 최종적으로 리빌 된 뒤 사용자가 클릭할 수 있도록 우선순위 상향 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00182e;
    padding: 0 10%;
    opacity: 0;
    pointer-events: none;
    /* 리빌 전에는 유저 클릭 비활성화 */
}

.shorts-grid-area {
    width: 65%;
    display: flex;
    justify-content: flex-start;
}

.shorts-text-area {
    width: 30%;
    text-align: left;
    color: #ffffff;
}

.shorts-title {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
    opacity: 0;
    transform: translateX(30px);
    /* 오른쪽에서 왼쪽으로 솟아날 초기값 */
}

.shorts-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateX(30px);
}

.shorts-desc-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
    text-align: left;
}

.shorts-desc-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 400;
    word-break: keep-all;
}

.shorts-desc-item.highlight-desc {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-left: 16px;
}

.shorts-desc-item.highlight-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 3px;
    height: 18px;
    background-color: #00a8cc;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item .label {
    font-size: 14px;
    color: #00a8cc;
    /* 포인트 하늘색 */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-item .count {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.shorts-grid {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* 유튜브 숏츠 카드 비디오 프레임 */
.shorts-card {
    flex: 1;
    aspect-ratio: 9 / 16;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-80px);
    /* 위에서 아래로 내려올 초기값 */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.shorts-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-card:hover {
    transform: translateY(-90px) scale(1.05);
    /* 슬라이드 다운 상태에서 약간 위로 올라오는 호버 */
    border-color: #00a8cc;
    box-shadow: 0 40px 80px rgba(0, 168, 204, 0.3);
}
/* ==========================================================================
   스토어 지점 현황 바로가기 섹션 (Store Status Shortcut Section)
   ========================================================================== */
.section-store-shortcut {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(135deg, #021123 0%, #08203e 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shortcut-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 168, 204, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.shortcut-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.shortcut-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
}

.shortcut-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #00a8cc;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.shortcut-title {
    font-family: 'BookkMyungjo', 'Noto Serif KR', serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -1px;
    word-break: keep-all;
}

.shortcut-title span {
    color: #00f2fe;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.45);
}

.shortcut-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 45px;
    word-break: keep-all;
}

.btn-store-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #00f2fe 0%, #00a8cc 100%);
    color: #00182e;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-store-shortcut:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 242, 254, 0.45);
}

.shortcut-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-store-shortcut:hover .shortcut-arrow {
    transform: translateX(6px);
}

/* 스토어 지점 현황 바로가기 반응형 (store-shortcut responsive) */
@media (max-width: 1024px) {
    .section-store-shortcut {
        padding: 100px 0;
    }
    .shortcut-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .section-store-shortcut {
        padding: 80px 0;
    }
    .shortcut-title {
        font-size: 28px;
    }
    .shortcut-desc {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }
    .btn-store-shortcut {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================================================
   열네 번째 섹션: 창업 상담 신청 및 문의하기 (Inquiry Section)
   ========================================================================== */
.section-inquiry {
    position: relative;
    width: 100%;
    background: url('/images/sec_4.webp') center top / cover no-repeat;
    background-attachment: fixed;
    padding: 90px 0;
    overflow: hidden;
    font-family: 'Pretendard', sans-serif;
}

/* 배경 이미지 위 브랜드 톤 (#00182e) 딤 오버레이 */
.section-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 24, 46, 0.85);
    pointer-events: none;
    z-index: 0;
}

.inquiry-container {
    position: relative;
    z-index: 1;
}

/* 폼 타이틀 및 헤더 */
.inquiry-header {
    text-align: center;
    margin-bottom: 70px;
}

.inquiry-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00a8cc;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.inquiry-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.inquiry-notice {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* 폼 카드 컨테이너 (글래스모피즘) */
.inquiry-form-card {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 상담자 정보 대분류 제목 */
.form-group-title-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.form-group-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

/* 폼 로우 레이아웃 */
.form-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.form-label-cell {
    width: 130px;
    min-width: 130px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
}

.form-label-cell.align-top {
    align-self: flex-start;
    padding-top: 14px;
}

.form-input-cell {
    flex: 1;
}

/* 필수 항목 발광 도트 */
.required-dot,
.required-dot-legend {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00f2fe;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.85);
    position: relative;
    vertical-align: middle;
}

.required-dot {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 4px rgba(0, 242, 254, 0.6);
        transform: scale(0.9);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 242, 254, 1);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 4px rgba(0, 242, 254, 0.6);
        transform: scale(0.9);
    }
}

/* 폼 인풋 필드 기본 */
.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-control:focus {
    border-color: #00a8cc;
    background: rgba(0, 0, 0, 0.45);
    outline: none;
    box-shadow: 0 0 20px rgba(0, 168, 204, 0.15);
}

/* 텍스트에어리어 추가설정 */
.textarea-control {
    height: 150px;
    resize: none;
    line-height: 1.6;
}

/* 커스텀 라디오 그룹 */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
}

.custom-radio input[type="radio"] {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.custom-radio input[type="radio"]:checked + .radio-mark {
    border-color: #00a8cc;
    box-shadow: 0 0 10px rgba(0, 168, 204, 0.3);
}

.radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: #00f2fe;
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
}

.custom-radio input[type="radio"]:checked + .radio-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

/* 이메일 조합 영역 */
.email-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
}

.email-select {
    cursor: pointer;
}

.email-select option {
    background-color: #00182e;
    color: #ffffff;
}

/* 개인정보 동의 및 약관 뷰어 */
.form-agreement-row {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #ffffff;
    user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-mark {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-mark {
    border-color: #00a8cc;
    background: rgba(0, 168, 204, 0.1);
    box-shadow: 0 0 10px rgba(0, 168, 204, 0.2);
}

.checkbox-mark::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #00f2fe;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

.agreement-check-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-privacy-view {
    background: none;
    border: none;
    color: #00a8cc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 0;
    outline: none;
}

.btn-privacy-view:hover {
    color: #00f2fe;
}

/* 개인정보 보호정책 모달 팝업 */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.privacy-modal.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.privacy-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #00182e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.privacy-modal.active .privacy-modal-content {
    transform: scale(1);
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
}

.privacy-modal-header h4 {
    font-family: 'Noto Serif KR', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.btn-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none;
    line-height: 1;
}

.btn-modal-close:hover {
    color: #ffffff;
}

.privacy-modal-body {
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.privacy-modal-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: #00f2fe;
    margin: 20px 0 10px;
}

.privacy-modal-body h5:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    margin-bottom: 12px;
    word-break: keep-all;
}

.privacy-modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.privacy-modal-body li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.privacy-modal-body strong {
    color: #ffffff;
}

/* 모달 바디 스크롤바 커스텀 */
.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 전송 제출 버튼 */
.form-submit-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0056b3 0%, #00a8cc 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.4);
    letter-spacing: 0.5px;
}

.btn-submit:active {
    transform: translateY(-1px);
}

.submit-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-submit:hover .submit-arrow {
    transform: translateX(6px);
}

/* ==========================================================================
   문의하기 섹션 반응형 (Inquiry Section Responsive)
   ========================================================================== */
@media (max-width: 991px) {
    .inquiry-form-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .mobile-br {
        display: block !important;
    }

    .section-inquiry {
        padding: 90px 0;
    }

    .inquiry-title {
        font-size: 36px;
    }

    .inquiry-form-card {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
    }

    .form-label-cell {
        width: 100%;
        min-width: 100%;
    }

    .form-input-cell {
        width: 100% !important;
    }

    .form-label-cell.align-top {
        padding-top: 0;
    }

    .email-input-group {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .email-input-group .form-control {
        flex: none !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .email-separator {
        color: rgba(255, 255, 255, 0.4) !important;
        font-size: 15px !important;
        text-align: center !important;
    }

    .email-select {
        grid-column: 1 / span 3 !important;
        width: 100% !important;
        margin-top: 4px !important;
    }

    .radio-group {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px 20px !important;
    }

    .agreement-check-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .btn-privacy-view {
        margin-left: 30px !important;
        font-size: 13px !important;
        color: #00a8cc !important;
        text-decoration: underline !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 30px;
    }
}

/* ==========================================================================
   맨 위로 이동 버튼 (Scroll to Top Button)
   ========================================================================== */
.btn-scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 24, 46, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    outline: none;
}

.btn-scroll-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: rgba(0, 24, 46, 0.85);
    border-color: #00a8cc;
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.25);
    transform: translateY(-5px);
}

.btn-scroll-top:hover svg {
    transform: translateY(-4px);
}

.btn-scroll-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-scroll-top {
        bottom: 145px; /* 하단 퀵바와 겹치지 않게 높이 추가 상향 조정 */
        right: 25px;
        width: 45px;
        height: 45px;
    }
    .btn-scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   480px 초소형 모바일 기기 전용 미세 폰트 및 패딩 조율
   ========================================================================== */
@media (max-width: 480px) {
    .logo img {
        height: 36px !important; /* 모바일 로고 크기 축소 */
    }
    
    .brand-prefix {
        font-size: 42px !important; /* 히어로 소제목 크기 확대 */
    }
    
    .brand-name {
        font-size: 82px !important; /* 히어로 타이틀 크기 확대 */
    }
    

    
    .hero-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    .revenue-number {
        font-size: 86px !important; /* 매출액 텍스트 크기 확대 */
    }
    
    .revenue-unit {
        font-size: 34px !important;
    }
    
    .hero-right-title-wrap {
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 14px !important;
    }

    .badge-premium {
        font-size: 32px !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .badge-premium::before {
        display: none !important;
    }

    .accent-title {
        font-size: 42px !important;
        margin-bottom: 0 !important;
    }
    
    .container {
        padding: 0 20px !important; /* 모바일 기기 최소 여백 */
    }
    
    .mobile-nav-drawer {
        padding: 90px 25px 25px;
    }
    
    .mobile-menu-links > li > a, .submenu-title {
        font-size: 18px;
    }
    
    .mobile-submenu li a {
        font-size: 13px;
    }
    
    .mobile-cta .cta-button {
        font-size: 14px;
        padding: 10px 0;
    }

    .inquiry-form-card {
        padding: 30px 15px !important;
        border-radius: 12px !important;
    }
}

/* ==========================================================================
   서클 마스크 리빌 섹션 모바일 반응형 (Reveal Section Responsive)
   ========================================================================== */
@media (max-width: 768px) {
    .reveal-section {
        height: 100vh !important;
        overflow: hidden !important;
        background-color: #00182e !important;
    }

    .reveal-inner {
        height: 100% !important;
    }

    .reveal-overlay {
        display: block !important;
    }

    .shorts-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 30px 20px !important;
        gap: 20px !important;
        height: 100% !important;
        box-sizing: border-box !important;
    }

    .shorts-grid-area {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .shorts-grid {
        flex-direction: row !important;
        gap: 12px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .shorts-card {
        flex: 0 0 28% !important;
        width: 28% !important;
        max-width: 110px !important;
        min-width: 90px !important;
        aspect-ratio: 9 / 16 !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    .shorts-card:hover {
        transform: none !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    }

    .shorts-text-area {
        width: 100% !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .shorts-title {
        font-size: 20px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
    }

    .shorts-metrics {
        flex-direction: column !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 10px !important;
    }

    .shorts-desc-group {
        text-align: center !important;
        gap: 20px !important;
    }

    .shorts-desc-item {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }

    .shorts-desc-item.highlight-desc {
        font-size: 15px !important;
        padding-left: 0 !important;
    }

    .shorts-desc-item.highlight-desc::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .shorts-container {
        padding: 20px 15px !important;
        gap: 15px !important;
    }

    .shorts-card {
        max-width: 95px !important;
        min-width: 80px !important;
    }

    .shorts-title {
        font-size: 17px !important;
        margin-bottom: 10px !important;
    }
    
    .shorts-metrics {
        gap: 20px !important;
    }
    
    .metric-item .count {
        font-size: 19px !important;
    }
}

/* ==========================================================================
   하단 고정 퀵 문의바 및 탑 버튼 겹침 방지 (Sticky Quick Contact Bar)
   ========================================================================== */
.sticky-quick-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 26, 48, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 990;
    padding: 15px 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.sticky-quick-bar.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.quick-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.quick-bar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.badge-live {
    background: #ff3344;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    animation: livePulse 1.2s infinite alternate ease-in-out;
}

@keyframes livePulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.quick-bar-form {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 15px;
}

.quick-input-group {
    position: relative;
    max-width: 180px;
    width: 100%;
}

.quick-input-group input {
    width: 100%;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-input-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
    outline: none;
}

.quick-agreement {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.quick-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.quick-checkbox-label input {
    display: none;
}

.quick-checkbox-mark {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.quick-checkbox-label input:checked + .quick-checkbox-mark {
    background: #00e5ff;
    border-color: #00e5ff;
}

.quick-checkbox-label input:checked + .quick-checkbox-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #0b1a30;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-quick-submit {
    height: 42px;
    background: #00e5ff;
    color: #0b1a30;
    border: none;
    border-radius: 8px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-quick-submit:hover {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.quick-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-quick-submit:hover .quick-arrow {
    transform: translateX(3px);
}

.btn-quick-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.2s ease;
}

.btn-quick-close:hover {
    color: #ffffff;
}

/* 모바일 반응형 튜닝 */
@media (max-width: 991px) {
    .quick-bar-container {
        flex-direction: column;
        gap: 12px;
        padding: 5px 16px;
    }
    .quick-bar-title {
        align-self: flex-start;
    }
    .quick-bar-form {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .sticky-quick-bar {
        padding: 10px 0;
    }
    .quick-bar-container {
        padding: 0 12px;
        gap: 8px;
    }
    .quick-bar-title {
        display: none; /* 모바일 크기에서는 타이틀 생략 */
    }
    .quick-bar-form {
        gap: 8px;
    }
    .quick-input-group {
        max-width: none;
        flex: 1;
    }
    .quick-input-group input {
        height: 38px;
        padding: 0 8px;
        font-size: 12px;
    }
    .quick-agreement {
        display: none; /* 공간 부족으로 모바일에서 동의 박스는 생략 (기본 checked 전송) */
    }
    .btn-quick-submit {
        height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }
    .btn-quick-close {
        position: absolute;
        top: -30px;
        right: 10px;
        background: rgba(11, 26, 48, 0.9);
        border: 1px solid rgba(0, 229, 255, 0.2);
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        font-size: 18px;
        padding: 4px 10px;
        height: auto;
    }
}

/* ==========================================================================
   독립 메뉴 페이지 전용 스타일 (Menu Page Hero & Layout)
   ========================================================================== */
.menu-page-hero {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Noto Serif KR', serif;
}

.menu-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: blur(5px) brightness(0.25);
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 70%, #000000 100%);
    z-index: 2;
}

.menu-hero-container {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #00e5ff;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.menu-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.menu-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-break: keep-all;
}

.menu-page-content {
    background-color: #000000;
    padding-top: 60px !important;
}

/* 반응형 히어로 */
@media (max-width: 1024px) {
    .menu-page-hero {
        height: 380px;
    }
    .menu-hero-title {
        font-size: 38px;
    }
    .menu-hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .menu-page-hero {
        height: 300px;
    }
    .menu-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .menu-hero-desc {
        font-size: 14px;
    }
    .menu-page-content {
        padding-top: 40px !important;
    }
}

/* ==========================================================================
   시네마틱 브랜드 스토리텔링 전용 스타일 (Cinematic Brand Storytelling)
   ========================================================================== */
.brand-storytelling-wrap {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
}

/* 고정(Pin)될 풀비주얼 백그라운드 컨테이너 */
.story-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background-color: #000000;
}

/* 개별 배경 레이어 (GSAP으로 opacity 0 -> 1 전환 교차 디졸브) */
.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.story-bg.active {
    opacity: 1;
}

/* 내용 콘텐츠 영역 */
.story-content-wrap {
    position: relative;
    z-index: 2; /* 배경보다 위에 위치 */
}

/* 개별 스토리 트랙 (풀스크린 높이 확보) */
.story-track {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    box-sizing: border-box;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
}

/* 콘텐츠 배치 분기 */
.story-container.flex-center {
    justify-content: center;
    text-align: center;
}

.story-container.flex-left {
    justify-content: flex-start;
    text-align: left;
}

.story-container.flex-right {
    justify-content: flex-end;
    text-align: left;
}

/* 공통 텍스트 블록 스타일링 (에디토리얼 매거진 감성) */
.story-intro-block,
.story-outro-block {
    max-width: 850px;
    color: #ffffff;
    font-family: 'Noto Serif KR', serif;
}

.story-text-block {
    max-width: 580px;
    color: #ffffff;
    font-family: 'Noto Serif KR', serif;
    background: rgba(0, 0, 0, 0.4);
    padding: 50px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

/* 장식적 요소 */
.story-tag {
    font-size: 14px;
    font-weight: 700;
    color: #0056b3; /* 타이틀 포인트 컬러 고정 */
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}

.story-chapter {
    font-size: 13px;
    font-weight: 700;
    color: #0056b3; /* 타이틀 포인트 컬러 고정 */
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 86, 179, 0.3);
}

.story-main-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.story-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.story-line {
    width: 50px;
    height: 2px;
    background-color: #0056b3; /* 타이틀 포인트 컬러 고정 */
    margin-bottom: 30px;
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.6);
}

.story-intro-desc {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    word-break: keep-all;
}

.story-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    word-break: keep-all;
}

/* 강조 텍스트 (로열 블루 포인트) */
.highlight-blue {
    color: #0056b3 !important; /* 포인트 컬러 고정 */
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 86, 179, 0.3);
}

/* 마우스 스크롤 안내 지표 */
.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.indicator-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.indicator-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: #0056b3; /* 스크롤 휠도 포인트 연동 */
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s infinite;
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 14px;
        opacity: 0.3;
    }
    100% {
        top: 6px;
        opacity: 1;
    }
}

/* 아웃트로 가맹 상담 이동 버튼 */
.outro-btn-wrap {
    margin-top: 45px;
}

.btn-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0056b3; /* 대단원 CTA도 포인트 고정 */
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

.btn-story-cta:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-story-cta .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-story-cta:hover .arrow-icon {
    transform: translateX(4px);
}

/* GSAP 스크롤 제어를 위한 폰트 페이드 준비 클래스 */
.font-fade {
    opacity: 0;
    transform: translateY(30px);
}

/* 반응형 모바일 튜닝 */
@media (max-width: 1024px) {
    .story-main-title {
        font-size: 48px;
    }
    .story-intro-desc {
        font-size: 18px;
    }
    .story-title {
        font-size: 32px;
    }
    .story-desc {
        font-size: 15px;
    }
    .story-container {
        padding: 0 24px;
    }
    .story-text-block {
        max-width: 500px;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .story-main-title {
        font-size: 36px;
    }
    .story-title {
        font-size: 26px;
    }
    .story-intro-desc {
        font-size: 16px;
    }
    .story-container.flex-left,
    .story-container.flex-right {
        justify-content: center;
        text-align: center;
    }
    .story-text-block {
        max-width: 100%;
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.6); /* 모바일에서는 텍스트 가독성을 위해 불투명도 보강 */
    }
    .story-line {
        margin: 0 auto 25px;
    }
    .btn-story-cta {
        padding: 15px 35px;
        font-size: 15px;
    }
}

/* ==========================================================================
   통합 커뮤니티 페이지 전용 스타일 (Community Page & Panels)
   ========================================================================== */
.comm-page-hero {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Noto Serif KR', serif;
}

.comm-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.comm-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: blur(5px) brightness(0.25);
}

.comm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 70%, #000000 100%);
    z-index: 2;
}

.comm-hero-container {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.comm-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #0056b3; /* 로열 블루 고정 */
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}

.comm-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.comm-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-break: keep-all;
}

.comm-page-content {
    background-color: #000000;
    padding: 80px 0 120px;
    min-height: 600px;
}

.comm-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 탭 바 내비게이션 */
.comm-header-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.comm-tabs {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    height: auto;
}

.comm-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Noto Serif KR', serif;
}

.comm-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.comm-tab-btn.active {
    background: #0056b3; /* 포인트 로열 블루 */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

/* 탭 패널 전환 공통 */
.comm-panel {
    display: none;
    opacity: 0;
}

.comm-panel.active {
    display: block;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   1. 공지사항 스타일 (Notice Table)
   -------------------------------------------------------------------------- */
.board-table-wrap {
    width: 100%;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Noto Serif KR', serif;
}

.board-table th, 
.board-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.board-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
}

.board-table td {
    font-size: 15px;
}

.board-table tbody tr {
    transition: all 0.3s ease;
}

.board-table tbody tr:hover {
    background: rgba(0, 86, 179, 0.03); /* 호버 시 딥 블루 딤드 광채 */
}

.board-table td a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.board-table tbody tr:hover td a {
    color: #0056b3; /* 제목 링크 포인트 컬러 적용 */
    text-decoration: underline;
}

.col-num { width: 10%; text-align: center; }
.col-subject { width: 60%; }
.col-date { width: 15%; text-align: center; color: rgba(255, 255, 255, 0.4); }
.col-views { width: 15%; text-align: center; color: rgba(255, 255, 255, 0.4); }

.notice-pinned {
    background: rgba(0, 86, 179, 0.015);
}

.badge-pin {
    display: inline-block;
    background: #0056b3;
    color: #ffffff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   2. 자주 묻는 질문 스타일 (FAQ Accordion)
   -------------------------------------------------------------------------- */
.faq-accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 86, 179, 0.3);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s ease;
    font-family: 'Noto Serif KR', serif;
}

.faq-icon-q {
    font-size: 20px;
    font-weight: 900;
    color: #0056b3; /* 포인트 로열 블루 */
    margin-right: 15px;
    font-family: 'Outfit', sans-serif;
}

.faq-q-text {
    flex: 1;
}

.faq-arrow-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 15px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    line-height: 1;
}

.faq-item.active .faq-arrow-icon {
    transform: rotate(45deg);
    color: #0056b3;
}

.faq-item.active {
    background: rgba(0, 86, 179, 0.01);
    border-color: rgba(0, 86, 179, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-inner {
    padding: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    word-break: keep-all;
    font-family: 'Noto Serif KR', serif;
}

/* --------------------------------------------------------------------------
   3. 고객의 소리 스타일 (Voice Grid Cards)
   -------------------------------------------------------------------------- */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voice-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.voice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 86, 179, 0.25);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.05);
}

.voice-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.voice-author {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Noto Serif KR', serif;
}

.voice-stars {
    color: #0056b3; /* 별 아이콘도 로열 블루 */
    font-size: 14px;
    letter-spacing: 2px;
}

.voice-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.voice-content {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 25px;
    flex: 1;
    word-break: keep-all;
    font-family: 'Noto Serif KR', serif;
}

.voice-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 15px;
}

/* --------------------------------------------------------------------------
   4. 문의게시판 스타일 (Inquiry Form Box)
   -------------------------------------------------------------------------- */
.comm-inquiry-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8);
}

.inquiry-intro {
    text-align: center;
    margin-bottom: 40px;
}

.inquiry-intro .box-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Noto Serif KR', serif;
}

.inquiry-intro .box-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    word-break: keep-all;
}

.comm-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.required-dot {
    width: 5px;
    height: 5px;
    background: #0056b3; /* 필수 입력 아이콘도 로열 블루 */
    border-radius: 50%;
    margin-left: 6px;
    display: inline-block;
}

.comm-inquiry-form .form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    height: 48px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.comm-inquiry-form .select-control {
    cursor: pointer;
    background-color: #0b1a30; /* 옵션 드롭다운용 다크 브라우저 호환 */
}

.comm-inquiry-form .text-area {
    height: 160px !important;
    padding: 16px !important;
    resize: none;
    line-height: 1.6;
}

.comm-inquiry-form .form-control:focus {
    border-color: #0056b3; /* 포커스 시 로열 블루 */
    background: rgba(0, 86, 179, 0.02);
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.15);
}

.form-agreement-wrap {
    margin: 5px 0;
}

.agreement-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.agreement-label input[type="checkbox"] {
    display: none;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.agreement-label input[type="checkbox"]:checked + .checkbox-box {
    background: #0056b3;
    border-color: #0056b3;
}

.agreement-label input[type="checkbox"]:checked + .checkbox-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.agreement-label:hover .agreement-text {
    color: rgba(255, 255, 255, 0.8);
}

.form-btn-submit-wrap {
    margin-top: 10px;
    text-align: center;
}

.btn-comm-submit {
    width: 100%;
    height: 52px;
    background: #0056b3; /* 로열 블루 고정 */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.btn-comm-submit:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-comm-submit .submit-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-comm-submit:hover .submit-arrow {
    transform: translateX(4px);
}

/* 커뮤니티 반응형 디자인 */
@media (max-width: 1024px) {
    .comm-page-hero {
        height: 380px;
    }
    .comm-hero-title {
        font-size: 38px;
    }
    .comm-hero-desc {
        font-size: 16px;
    }
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .comm-inquiry-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .comm-page-hero {
        height: 300px;
    }
    .comm-hero-title {
        font-size: 28px;
    }
    .comm-hero-desc {
        font-size: 14px;
    }
    .comm-page-content {
        padding: 60px 0 80px;
    }
    .comm-tabs {
        flex-direction: row;
        border-radius: 30px;
        width: 100%;
        padding: 4px;
        overflow-x: auto;
        white-space: nowrap;
        height: auto !important;
        scrollbar-width: none; /* 파이어폭스 */
        -webkit-overflow-scrolling: touch;
    }
    .comm-tabs::-webkit-scrollbar {
        display: none; /* 크롬/사파리 */
    }
    .comm-tab-btn {
        width: auto;
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    .comm-inquiry-box {
        padding: 30px 20px;
    }
    .inquiry-intro .box-title {
        font-size: 22px;
    }
    /* 테이블 모바일 가로 스크롤 및 글씨 깨짐 방지 최적화 */
    .board-table {
        min-width: 680px;
    }
    .board-table th,
    .board-table td {
        padding: 14px 12px;
        font-size: 13.5px;
    }
    .col-subject {
        word-break: keep-all;
    }
}

/* --------------------------------------------------------------------------
   비밀글 목록 추가 스타일 (Private Posts List Styles)
   -------------------------------------------------------------------------- */
.comm-list-wrap {
    margin-top: 60px;
    width: 100%;
}

.comm-list-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Noto Serif KR', serif;
    border-left: 4px solid #0056b3;
    padding-left: 12px;
    line-height: 1.2;
}

.private-post {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.private-post .icon-lock {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.private-post span {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* 비밀글 행 호버 시 자물쇠 색상 변화 */
.board-table tbody tr:hover td.private-post .icon-lock {
    color: #0056b3;
}

.board-table tbody tr:hover td.private-post span {
    color: rgba(255, 255, 255, 0.7);
}

/* 처리상태 뱃지 */
.badge-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Pretendard', sans-serif;
    text-align: center;
}

/* 답변완료 (로열 블루 테마 연계) */
.status-complete {
    background: rgba(0, 86, 179, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(0, 86, 179, 0.4);
}

/* 접수완료/답변대기 (앰버 골드 테마) */
.status-pending {
    background: rgba(0, 242, 254, 0.06);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

/* 고객의 소리 접수 박스 상단 마진 조율 */
.voice-inquiry-box {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .comm-list-wrap {
        margin-top: 40px;
    }
    .comm-list-title {
        font-size: 18px;
    }
    .badge-status {
        padding: 3px 10px;
        font-size: 11px;
    }
}

/* --------------------------------------------------------------------------
   고객의 소리 팝업 모달 & 의견 접수하기 버튼 스타일
   -------------------------------------------------------------------------- */
.comm-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.comm-list-header .comm-list-title {
    margin-bottom: 0; /* 헤더 배치 시 아래 마진 리셋 */
}

/* 의견 접수하기 버튼 */
.btn-open-voice-modal {
    background: #0056b3; /* 로열 블루 고정 */
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    font-family: 'Noto Serif KR', serif;
}

.btn-open-voice-modal:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-open-voice-modal .btn-icon {
    width: 15px;
    height: 15px;
}

/* 고객의 소리 접수 모달 전체 래퍼 */
.comm-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; /* 스티키 바나 헤더보다 위에 위치하도록 10000 설정 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto; /* 세로 화면 좁을 때 스크롤 지원 */
    box-sizing: border-box;
}

.comm-modal-wrap.active {
    opacity: 1;
    pointer-events: auto;
}

/* 모달 백그라운드 블러 오버레이 */
.comm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* 모달 본체 */
.comm-modal-content {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: #0b1a30; /* 다크 프리미엄 배경 */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 40px 40px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.comm-modal-wrap.active .comm-modal-content {
    transform: scale(1);
}

/* 모달 닫기 버튼 */
.comm-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, transform 0.3s;
    outline: none;
}

.comm-modal-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.comm-modal-close svg {
    width: 22px;
    height: 22px;
}

/* 모바일 팝업 대응 */
@media (max-width: 768px) {
    .comm-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-open-voice-modal {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13.5px;
    }
    .comm-modal-wrap {
        align-items: flex-start; /* 모바일 세로 좁을 때 위에서부터 배열하여 스크롤 흐름 제공 */
        padding: 20px 0;
    }
    .comm-modal-content {
        padding: 30px 20px 24px;
        width: 94%;
        margin-top: 10px; /* 상단 마진 */
        transform: translateY(20px) scale(0.95);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
    }
    .comm-modal-wrap.active .comm-modal-content {
        transform: translateY(0) scale(1);
    }
    .comm-modal-close {
        top: 15px;
        right: 15px;
    }
    /* 팝업 헤더 영역 축소 */
    .comm-modal-content .inquiry-intro {
        margin-bottom: 20px;
        text-align: left;
        padding-right: 25px; /* 닫기 버튼 충돌 방지 */
    }
    .comm-modal-content .inquiry-intro .box-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .comm-modal-content .inquiry-intro .box-desc {
        font-size: 12.5px;
        line-height: 1.55;
        margin-top: 6px;
    }
    /* 모바일 팝업 폼 요소 축소 */
    .comm-inquiry-form {
        gap: 14px;
    }
    .comm-inquiry-form .form-control {
        height: 42px;
        font-size: 13.5px;
        padding: 0 12px;
    }
    .comm-inquiry-form .text-area {
        height: 110px !important; /* 모바일 입력창 높이 다이어트 */
        padding: 12px !important;
    }
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .form-agreement-wrap {
        margin: 0;
    }
    .agreement-text {
        font-size: 12.5px;
    }
    .checkbox-box {
        width: 16px;
        height: 16px;
    }
    .agreement-label input[type="checkbox"]:checked + .checkbox-box::after {
        top: 1px;
        left: 5px;
        width: 3px;
        height: 7px;
    }
    .btn-comm-submit {
        height: 45px;
        font-size: 14.5px;
    }
}

/* ==========================================================================
   Pretendard 폰트 일괄 적용 (기존 다양한 한글/영문 폰트 통합)
   ========================================================================== */
*, *::before, *::after {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Pretendard', 'Malgun Gothic', sans-serif !important;
}

/* ==========================================================================
   [NEW] 영월 폰트 등록 및 메인 히어로 섹션 전용 적용
   ========================================================================== */
@font-face {
    font-family: 'Yeongwol';
    src: url('/fonts/Yeongwol.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* 메인 히어로 지정 요소에만 영월체 적용 (그 외 요소는 원래 서체로 원복) */
.hero-dark .brand-prefix,
.hero-dark .brand-name,
.hero-dark .badge-premium,
.hero-dark .accent-title,
.hero-dark .revenue-number,
.hero-dark .revenue-unit {
    font-family: 'Yeongwol', serif !important;
}

/* ==========================================================================
   하단 고정 퀵 문의바 (Sticky Quick Contact Bar) 스타일 정의
   ========================================================================== */
.sticky-quick-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 21, 45, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    padding: 16px 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.sticky-quick-bar.is-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.quick-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.quick-bar-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.quick-bar-title-wrap {
    display: flex;
    align-items: center;
}

.quick-bar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.badge-live {
    background: #ff3b30;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: quick-pulse-red 1.8s infinite;
}

@keyframes quick-pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.quick-bar-title strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* 데스크톱에서는 굳이 전화번호 링크를 노출하지 않거나 숨김 */
.quick-bar-phone {
    display: none;
    font-size: 20px;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-bar-phone:hover {
    color: #ffd54f;
}

.quick-agreement {
    display: flex;
    align-items: center;
}

.quick-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    user-select: none;
    gap: 6px;
}

.quick-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.quick-checkbox-mark {
    position: relative;
    height: 16px;
    width: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.3s;
}

.quick-checkbox-label:hover input ~ .quick-checkbox-mark {
    border-color: #ffc107;
}

.quick-checkbox-label input:checked ~ .quick-checkbox-mark {
    background-color: #ffc107;
    border-color: #ffc107;
}

.quick-checkbox-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.quick-checkbox-label input:checked ~ .quick-checkbox-mark:after {
    display: block;
}

.quick-checkbox-label .quick-checkbox-mark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-label-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.quick-bar-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-input-group input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13px;
    width: 150px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.quick-input-group input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.quick-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-quick-submit {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    color: #111111;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    outline: none;
}

.btn-quick-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.35);
}

.btn-quick-submit:active {
    transform: translateY(0);
}

.btn-quick-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    outline: none;
    transition: color 0.3s, transform 0.3s;
    padding: 4px;
}

.btn-quick-close:hover {
    color: #ffffff;
    transform: translateY(-50%) rotate(90deg);
}

/* ==========================================================================
   모바일 전용 반응형 스타일 (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .sticky-quick-bar {
        padding: 12px 16px;
        background: #06152d; /* 짙은 남색 배경 */
    }

    .quick-bar-container {
        padding: 0;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .quick-bar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .quick-bar-title {
        display: none !important; /* 모바일에서는 타이틀 숨김 */
    }

    .quick-bar-phone {
        display: inline-block; /* 모바일에서는 가맹문의 전화번호 노출 */
        font-family: 'Yeongwol', serif !important;
        font-size: 21px !important;
        font-weight: bold;
        color: #ffc107;
    }

    .quick-agreement {
        margin-left: 0;
    }

    .quick-checkbox-label {
        font-size: 12px;
    }

    .quick-bar-form {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 8px;
        width: 100%;
    }

    .quick-input-group input {
        width: 100%;
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 4px;
    }

    .btn-quick-submit {
        padding: 9px 16px;
        font-size: 13px;
        border-radius: 4px;
    }

    .btn-quick-close {
        right: -8px;
        top: -6px;
        font-size: 20px;
    }
    
    /* 스크롤 탑 버튼 위치 보정 (하단 퀵바와 겹치지 않게 추가 상향) */
    .btn-scroll-top {
        bottom: 145px !important;
    }
}



