
        :root {
            --primary-brown: #4A2C2A;
            --secondary-brown: #633E3B;
            --accent-red: #A52A2A;
            --accent-gold: #D4AF37;
            --accent-yellow: #FFD700;
            --light-bg: #F9F9F9;
            --white: #FFFFFF;
            --text-dark: #333333;
            --text-gray: #666666;
        }

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

        body {
            font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
    
        img { 
            max-width: 100%;
            height: auto;
        }

        /* Header */
        header {
            width: 100%;
            height: 80px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            background-color: #fdfbef;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 900;
            font-size: 20px;
            color: var(--primary-brown);
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            /*gap: 20px;*/
            padding-top: 4px;
        }

        nav ul li a {
            text-decoration: none;
        }

        nav ul li a img {
            width: 64%;
        }
        
        .hamburger {
            display: none;
        }

        .btn-inquiry {
            background: var(--accent-red);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(13px, 0.9vw, 14px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://placehold.co/1920x800?text=Busy+Street+Restaurant+Background') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }
    
        .hero {
            position: relative;
            height: 640px;
            overflow: hidden;
        }

        /* 영상 */
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 640px;
            object-fit: cover;
            z-index: 0; /* -1 쓰지 마세요 */
        }

        /* 히어로 안 모든 텍스트 위로 */
        .hero > *:not(.hero-video) {
            position: relative;
            z-index: 2;
        }

        /* 글자가 잘 보이도록 어두운 오버레이 */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: -1;
        }

        /* 딤 레이어 */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4); /* 숫자 올리면 더 어두워짐 */
            z-index: 1;
        }

        .hero-badge {
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 64px);
            font-weight: 900;
            color: var(--accent-yellow);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 10px;
            display: inline-block;
            padding-bottom: 10px;
        }

        .hero h1 img {
            width: 70%
        }
            

        /* Quote Section */
        .quote-section {
            padding: 100px 20px 50px;
            text-align: center;
            background: var(--white);
            position: relative;
        }

        .quote-section p {
            font-family: 'Nanum Myeongjo', serif;
            font-size: clamp(25px, 4vw, 42px);
            color: #6c4839;
            font-weight: 700;
            line-height: 1.4;
            margin-top: 120px;
        }

        .hero-stats {
            display: flex;
            gap: 20px;
            margin-top: -200px;
            width: 100%;
            max-width: 1000px;
            justify-content: center;
            position: absolute; 
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .stat-card {
            background: #3b1416;
            border-radius: 15px;
            padding: 5px;
            flex: 1;
            text-align: center;
            height: 230px;
            position: relative;
        }

        .stat-card .card-inner {
            border: 1px solid #fad39e;
            border-radius: 13px;
            width: 300px;
            height: 210px;
            padding-top: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .stat-card .card-inner i img {
            width: 22%;
        }

        .stat-card .card-inner .card_img3 img {
            width: 26%;
        }

        .stat-card .label {
            font-size: 26px;
            display: block;
            color: #f2e9e6;
            height: 28px;
        }

        .stat-card .value {
            font-size: 46px;
            font-weight: 900;
            color: #fad39e;
        }


        /* Sales Performance */
        .sales-performance {
            padding: 60px 20px 100px;
            background: var(--white);
            text-align: center;
            position: relative;
        }

        .section-title-pill {
            display: inline-block;
            margin-bottom: 50px;
            max-width: 1100px;
            z-index: 2;
            position: relative;
        }

        /* 🔥 가운데 라인 */
        .sales-performance::after {
            content: "";
            position: absolute;
            top: 90px; /* ← 타이틀 위치에 맞게 조정 */
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 2px;
            background: #6c2428;
            z-index: 1;
        }

        .section-title-pill img {
            width: 70%;
        }

        .sales-performance .s-line {
            display: block;
            max-width: 1100px;
            height: 2px;
            color: #6c2428;
            position: absolute;
        }

        .performance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .perf-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: var(--white);
        }

        .perf-card.brown { border-top: 10px solid #704c3b; border: 3px solid #704c3b; }
        .perf-card.red { border-top: 10px solid #6c2428; border: 3px solid #6c2428;}
        .perf-card.gold { border-top: 10px solid #c99b58; border: 3px solid #c99b58;}

        .perf-header {
            padding: 10px;
            font-weight: 700;
            font-size: clamp(16px, 3vw, 22px);
            color: var(--white);
        }
        .perf-card.brown .perf-header { background: #704c3b; }
        .perf-card.red .perf-header { background: #6c2428; }
        .perf-card.gold .perf-header { background: #c99b58; }

        .perf-body {
            padding: 40px 20px 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .perf-body .label {
            font-size: clamp(20px, 3vw, 34px);
            font-weight: 600;
        }

        .perf-body .value {
            font-size: clamp(28px, 4vw, 50px);
            font-weight: 900;
            line-height: 1em;
        }

        perf-card.brown .value { color: #442614; }
        .perf-card.red .value { color: #442614; }
        .perf-card.gold .value { color: #442614; }
        .perf-body .value .v-color {
            color: #c99d5a;
        }

        .perf-icon-area {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 0px;
        }

        .perf-icon-area  img {
            width: 80%;
        }

        .perf-card.red .perf-footer {
            background: #6c2428;
            color: var(--white);
            text-align: center;
            font-weight: 700;
            padding: 15px;
            font-size: clamp(18px, 3vw, 24px);
        }
        .perf-card.red .perf-footer .f-color{
            color: #f4c96e;
        }

        .perf-footer {
            font-size: clamp(14px, 2vw, 18px);
            color: #867161;
            text-align: left;
        }


        /* 시그니쳐 메뉴 시작*/
        /* ===============================
           SIGNATURE SECTION
        ================================ */

        .signature-wrap {
            position: relative;
            background: url(img/signature_bg.png) no-repeat center/cover;
            padding: 300px 0 120px;
            overflow: hidden;
        }

        /* -----------------
           TITLE
        ------------------ */

        .signature-title {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 5;
            width: 100%;
            pointer-events: none;
            padding: 50px 0;
        }

        .signature-title-inner {
            opacity: 0;
            animation: fadeDown 1s ease forwards;
        }
        
        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 공통 이미지 */
        .signature-title img {
            display: block;
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
        }

        /* 상단 타이틀 */
        .signature-title .s-tit img {
            width: 280px;
            margin: 0 auto;
        }

        /* PC 텍스트 */
        .signature-title .s-txt {
            margin-top: 20px;
            text-align: center;
        }

        .signature-title .txt-pc {
            width: 600px;
            max-width: 90%;
            margin: 0 auto;
            display: block;
        }

        .signature-title .s-txt img {
            width: 900px;
        }

        /* 모바일 기본 숨김 */
        .signature-title .txt-mo {
            display: none;
        }

        .signature-icon {
            position: absolute;
            z-index: 4;
            top: 280px;
            left: 50%;
            margin-left: -360px;
        }
        .signature-icon img {
            width: 70%; 
        }
        
        .s-txt2 {
            font-size: clamp(20px, 3vw, 32px);
            color: #efd8d1;
            line-height: 2em;
        }


        /* ===============================
           SWIPER - 5개 최적화
        ================================ */

        .signatureSwiper {
            width: 100%;      
        }

        .signatureSwiper .swiper-slide {
            transition: all 0.6s ease;
            transform: scale(0.6);
            opacity: 0;
        }

        .signatureSwiper .swiper-slide img {
            width: 100%;
            border-radius: 50%;
            display: block;
        }

        /* 가운데 */
        .signatureSwiper .swiper-slide-active {
            transform: scale(1.0);
            opacity: 1;
            z-index: 3;
        }

        /* 좌우 */
        .signatureSwiper .swiper-slide-prev {
            transform: translateX(-150px) scale(0.8);
            opacity: 1;
            z-index: 2;
        }

        .signatureSwiper .swiper-slide-next {
            transform: translateX(150px) scale(0.8);
            opacity: 1;
            z-index: 2;
        }

        /* 캡션 */
        .signature-caption {
            text-align: center;
            margin-top: 50px;
        }
        
        /* -----------------
           CAPTION
        ------------------ */

        .signature-caption {
            text-align: center;
            margin-top: 50px;
        }

        /* 타이틀 박스 */
        .menu-title {
            position: relative;
            display: inline-block;
            padding: 26px 70px;
            background: #3f1d0e;
            color: #ffdaa6;
            font-size: 32px;
            font-weight: 700;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        /* 🔥 내부 라인 */
        .menu-title::before {
            content: "";
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border: 2px solid #ffdaa6;
            border-radius: 20px;
            pointer-events: none;
        }

        /* 🔥 좌우 점 (JS 영향 없음) */
        .menu-title::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;

            background:
                radial-gradient(circle, #ffdaa6 0 4px, transparent 5px) left 25px center / 8px 8px no-repeat,
                radial-gradient(circle, #ffdaa6 0 4px, transparent 5px) right 25px center / 8px 8px no-repeat;
        }

        /* 설명문구 */
        .signature-caption .menu-desc {
            display: block;
            background: none;
            padding: 0;
            font-size: 24px;
            color: #e7ddd7;
            line-height: 1.6;
        }

        /* 시그니쳐 메뉴 끝 */


       /* ===============================
           창업성공 경쟁력
        ================================ */

        .competitive {
            padding: 100px 20px 160px;
            background: #efefef;
            text-align: center;
        }

        /* 상단 영어 */
        .competitive .sub-title {
            font-size: 28px;
            font-weight: 900;
            color: #cfcfcf;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .competitive .sub-title img {
            width: 380px;
        }

        /* 메인 타이틀 */
        /* ===============================
           competitive 타이틀 (signature와 동일)
        ================================ */

        .competitive h2 {
            margin-bottom: 100px;
        }

        .competitive .s-txt {
            margin-top: 10px;
            text-align: center;
        }

        /* PC용 한 줄 */
        .competitive .txt-pc {
            width: 700px;      /* 시그니처와 동일 */
            max-width: 90%;
            margin: 0 auto;
            display: block;
        }

        /* 모바일 기본 숨김 */
        .competitive .txt-mo {
            display: none;
        }

        /* 카드 그리드 */
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 카드 */
        .adv-card {
            border: 3px solid #5b3a29;
            position: relative;
            padding: 40px 40px 260px;
            text-align: center;
            position: relative;
        }
        
        .advantage-grid .one {
            background: url(img/illust_1.png) #fff no-repeat;
            background-position: bottom;
            background-size: contain;
        }

        .advantage-grid .two {
            background: url(img/illust_2.png) #fff no-repeat;
            background-position: bottom;
            background-size: contain;
        }

        .advantage-grid .three {
            background: url(img/illust_3.png) #fff no-repeat;
            background-position: bottom;
            background-size: contain;
        }

        /* 번호 */
        .adv-card .number {
            position: absolute;
            top: -50px;
            left: 0;
            font-size: 40px;
            font-weight: 900;
            color: #5b3a29;
        }

        /* 제목 */
        .adv-card h3 {
            font-size: 28px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .adv-card.one h3 span,
        .adv-card.two h3 span,
        .adv-card.three h3 span {
            color: #ff4b2b;
        }

        /* 본문 */
        .adv-card p {
            font-size: 18px;
            line-height: 1.4;
            color: #5b3a29;
        }

        /* 하단 일러스트 */
        .adv-card .illustration {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
        }

        .adv-card .illustration img {
            width: 68%;
            height: auto;
            object-fit: contain;
            position: absolute;
            bottom: 0;
            right: -80px;
        }

        @media (max-width: 1024px) {
            .advantage-grid {
                grid-template-columns: 1fr;
                gap: 120px;
            }

            .adv-card {
                padding: 60px 30px 120px;
            }

            .adv-card .number {
                font-size: 48px;
                top: -30px;
            }
        }

        /* 창업성공 경쟁력 끝 */

        /* 테스트결과 시작 */
        /* ===============================
           TEST RESULTS
        ================================ */

        .test-results {
            position: relative;
            padding: 140px 20px;
            color: #fff;
            text-align: center;
            overflow: hidden;
        }

        /* 배경 오버레이 */
        .test-results::before {
            content: "";
            position: absolute;
            inset: 0;
            background:url(img/test_bg.png) no-repeat;
            z-index: 0;
        }

        .test-results .inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 타이틀 */
        .test-results .main-title {
            margin-bottom: 30px;
        }

        .test-results .main-title img:nth-child(1) {
            width: 72%;
        }
        
        .test-results .main-title img:nth-child(2) {
            width: 72%;
        }

        .test-results .main-title .top {
            display: block;
            font-size: 42px;
            font-weight: 900;
            color: #fff;
        }

        .test-results .main-title .bottom {
            display: block;
            font-size: 48px;
            font-weight: 900;
            color: #FFC107;
            margin-top: 10px;
        }

        .test-results .main-title img:nth-child(1) {
            width: 100%;
        }
        .test-results .main-title img:nth-child(2) {
            width: 100%;
        }

        /* 설명 */
        .desc {
            font-size: 16px;
            opacity: 0.85;
            line-height: 1.4em;
            margin-bottom: 80px;
        }

        .test-results .desc br {
            display: none;
        }

        /* 카드 그리드 */
        .result-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        /* 카드 */
        .result-card {
            position: relative;
        }

        .receipt {
            background: #fff;
            color: #222;
            padding: 30px 25px 120px;
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        /* 헤더 */
        .result-header .date {
            font-size: 16px;
            font-weight: 700;
        }

        .result-header .date span {
            color: #FF4B2B;
        }

        .result-header .total-sales {
            font-size: 28px;
            font-weight: 900;
            margin-top: 8px;
        }

        .result-header strong {
            text-decoration: underline;
        }

        /* 본문 */
        .result-body {
            margin-top: 20px;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            margin-bottom: 6px;
        }

        /* 순수익 박스 */
        .profit-box {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 10px;
            background: #fff;
            border: 5px solid #FF4B2B;
            padding: 15px 86px;
            max-width: 430px;
            padding: 18px 68px;
            display: flex;
            gap: 10px;
            align-items: baseline;
            font-weight: 900;
            border-radius: 10px;
        }

        .profit-box span {
            color: #FF4B2B;
            font-size: 18px;
            display: block;
            width: 60px;
        }

        .profit-box strong {
            color: #FF4B2B;
            font-size: 32px;
        }

        /* 톱니 */
        .zigzag {
            height: 50px; /* 높이 증가 */
            background:
                linear-gradient(-30deg, transparent 15px, #fff 15px),
                linear-gradient(30deg, transparent 15px, #fff 15px);
            background-size: 30px 30px;
            background-repeat: repeat-x;
            max-width: 400px;
            margin: 0 auto;
        }
        
        /* 테스트결과 끝 */
        
        /* 그래프 시작 */
        /* ===============================
           메인 헤더
        ================================ */
        .graph-wrap {
            background: #fff5e1;
        }
        .main-header {
            text-align: center;
            padding: 100px 20px 50px;
        }

        .main-header h1 img {
            width: 44%;
        }

        .main-header .accent {
            color: #ff4b2b;
        }

        .main-header p {
            font-size: 40px;
            margin-top: 10px;
            font-weight: 500;
        }


        /* ===============================
           매장 배지
        ================================ */
        .store-title {
            position: relative;
            text-align: center;
            margin: 40px 0 50px;
            z-index: 2;
        }
        
        /* 🔥 가운데 라인 */
        .store-title::after {
            content: "";
            position: absolute;
            top: 50%; /* ← 타이틀 위치에 맞게 조정 */
            left: 50%;
            transform: translateX(-50%);
            width: min(1000px, 90%);
            height: 2px;
            background: #4b2e1e;
        }

        .store-title span {
            background: #4b2e1e;
            color: #fff;
            padding: 12px 40px;
            border-radius: 30px;
            font-size: 22px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }


        /* ===============================
           레이아웃
        ================================ */
        .profit-layout {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
            flex-wrap: wrap;
            padding-bottom: 150px;
            background-color: #fff5e1
        }


        /* ===============================
           테이블
        ================================ */
        .table-box {
            min-width: 500px;  /* 👈 핵심 */
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .table-box table {
            width: 100%;
            border-collapse: collapse;
        }

        .table-box thead {
            background: #4b2e1e;
            color: #fff;
        }

        .table-box th,
        .table-box td {
            padding: 14px;
            text-align: center;
            font-size: 15px;
        }

        .table-box tbody tr:last-child {
            background: #4b2e1e;
            color: #fff;
            font-weight: 700;
        }

        /* ===============================
           도넛 이미지
        ================================ */
        .donut-box {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .donut-box img {
            max-width: 100%;
            /*width: 420px;       이미지 크기 고정 */
            height: auto;
        }

        /* 그래프 끝 */

        /* 시스템 시작 */
        /* ===============================
           SYSTEM UP SECTION
        ================================ */
        .system-up {
            background: #efe3cf;
            padding: 120px 20px;
        }

        .system-up .inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 타이틀 */
        .system-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .system-header img {
            width: 62%;
        }


        .system-header h2 span {
            color: #d7322d;
        }

        .system-header p {
            font-size: 38px;
            font-weight: 500;
            color: #3b2a1d;
        }

        /* 카드 그리드 */
        .system-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* 카드 */
        .system-card {
            background: #fff;
            border-radius: 20px;
            padding: 20px 60px 10px;
            text-align: center;
            transition: 0.3s ease;
        }

        .system-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .system-card .point {
            color: #d7322d;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .system-card h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 10px;
            color: #3b2a1d;
        }

        .system-card p {
            font-size: 16px;
            color: #555;
            margin-bottom: 25px;
        }

        .system-card img {
            max-width: 100%;
            height: auto;
        }
        
        .system-card:nth-child(1) img {
            width: 60%;
        }

        .system-card:nth-child(2) img {
            width: 80%;
        }

        .system-card:nth-child(4) img {
            width: 80%;
        }

        .system-card:nth-child(5) img {
            width: 80%;
        }

        /* 시스템 끝 */


        /* ===============================
           MENU SECTION
        ================================ */
        .menu-section {
            padding: 120px 20px;
            background: #f5f1ea;
            text-align: center;
            background: url(img/menu_bg.png) no-repeat;
        }

        .menu-header h2 {
            font-size: 36px;
            margin: 40px 0;
        }

        .menu-header h2 p:nth-child(1) img{
            width: 40%;
        } 
        .menu-header h2 p:nth-child(2) img{
            width: 30%;
        } 

        .menu_sub_txt {
            font-size: 22px;
            margin-bottom: 80px;
            color: #2e1006;
            font-weight: 700;
        }

        /* ===============================
           GRID
        ================================ */
        .menu-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .menu-item {
            position: relative;
            /*cursor: pointer;*/
        }

        .menu-item .menu-img {
            position: relative;
            border: 2px solid #797884;
            border-radius: 16px;
        }

        .menu-item img {
            width: 100%;
            border-radius: 15px;
            display: block;
        }

        .menu-item p {
            margin-top: 15px;
            font-weight: 600;
        }

        /* ===============================
           HOVER OVERLAY
        ================================ */
        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: 0.3s ease;
        }

        .menu-item:hover .overlay {
            opacity: 1;
        }

        .view-btn {
            background: white;
            padding: 12px 25px;
            border-radius: 30px;
            border: none;
            font-weight: 700;
            cursor: pointer;
        }

        /* ===============================
           더보기 버튼
        ================================ */
        .menu-more-wrap {
            margin-top: 60px;
        }

        .menu-more {
            background: #ff2f2f;
            color: white;
            padding: 15px 50px;
            border-radius: 40px;
            border: none;
            font-size: 18px;
            cursor: pointer;
            border: 2px solid #ffffff;
        }

        .menu-more img {
            width: 90%;
        }

        /* ===============================
           POPUP
        ================================ */
        .layer-popup {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popup-inner {
            position: relative;
            width: 46%;
            /*background: #fff;*/
            padding: 0px;
            border-radius: 14px;
        }

        .popup-inner img {
            width: 100%;
            border-radius: 15px;
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            border: none;
            font-size: 22px;
            cursor: pointer;
            background: none;
        }

        /* 메뉴 끝 */


        /* 리뷰 시작 */
        /* ===============================
           REVIEW SECTION
        ================================ */
        .review-section {
            position: relative;
            padding: 160px 20px;
            color: #fff;
        }

        .review-bg {
            position: absolute;
            inset: 0;
            background: url("img/review_bg.png") center/cover no-repeat;
            z-index: 0;
        }

        .review-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
        }

        .review-inner {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 타이틀 */
        .review-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .review-header h2 img {
            width: 40%;
            margin-top: 20px;
        }

        /* ===============================
           말풍선
        ================================ */
        .review-bubbles {
            display: flex;
            flex-direction: column;
        }
        
        .review-bubbles div:nth-child(5) {
            margin-left: -100px;
        } 

        .review-bubbles div:nth-child(5) img {
            width: 120%;
        }

        .bubble {
            position: relative;
            max-width: 80%;

            /* 애니메이션 초기값 */
            /*opacity: 0;*/
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        /* 등장 */
        .bubble.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* 왼쪽 */
        .bubble.left {
            align-self: flex-start;
        }

        /* 오른쪽 */
        .bubble.right {
            align-self: flex-end;
        }

        /* 리뷰 끝 */
        
        /* zero 시작 */
        /* ===============================
           ZERO SECTION
        ================================ */
        .zero-section {
            padding: 140px 20px;
            background: #f5f5f5;
            text-align: center;
        }

        /* 상단 타이틀 */
        .zero-header .sub-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
        }

        .zero-header .sub-title img {
            width: 30%;
        }

        .zero-header h2 {
            font-size: 64px;
            font-weight: 900;
            margin-top: 20px;
            line-height: 1.2;
        }

        .zero-header h2 p img {
            width: 40%;
        }
        .zero-header h2 p:nth-child(2) img {
            width: 32%;
        }

        .zero-header h2 span {
            color: #ff5a2f;
        }

        /* 어두운 박스 */
        .zero-wrapper {
            margin-top: 120px;
            background: #3f3a38;
            padding: 80px 60px;
            border-radius: 30px;
            max-width: 1400px;
            margin: 80px auto 0;
        }

        /* 3 ZERO 제목 */
        .zero-main-title {
            color: #fff;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 60px;
        }

        /* 카드 그리드 */
        .zero-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 카드 */
        .zero-card {
            background: #fff;
            border-radius: 25px;
            padding: 40px 30px 0;
            text-align: center;
            max-width: 400px;
        }

        .zero-card img {
            width: 100%;
            /*max-width: 220px;*/
            margin: 0px auto;
            display: block;
        }

        /* 번호 */
        .zero-num {
            font-size: 22px;
            font-weight: 800;
            /*margin-bottom: 15px;*/
            line-height: 1.2em;
        }

        /* 제목 */
        .zero-card h4 {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 0px;
        }

        .zero-card p {
            font-size: 18px;
            line-height: 1.4;
            color: #444;
            margin-bottom: 30px;
        }

        /* 하단 텍스트 */
        .zero-bottom {
            font-weight: 700;
            margin-top: 10px;
        }

        /* 컬러 포인트 */
        .blue { color: #1976d2; }
        .orange { color: #ff6a00; }
        .green { color: #18a558; }

        /* zero 끝 */

        /* sns 시작 */
        /* ===============================
           WRAPPER
        ================================ */
        
        .sns-section{
            background: url(img/sns_bg.png) no-repeat;
            padding: 140px 0;
        }
      
        .sns-header {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .sns-header span img {
            width: 20%;
        }
        
        .sns-header h2 img {
            width: 60%;
            margin-top: 20px;
        }

        .sns-wrapper {
          position: relative;
          width: 1150px;
          margin: 60px auto;   /* 👈 이게 가운데 정렬 */
          height: 650px;
          /*overflow: hidden;*/
        }

        .video-track {
          display: flex;
          gap: 0px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translateX(-50%) translateY(-50%);
          transition: transform 0.8s ease;
        }

        /* ===== 기본 영상 ===== */
        .video-track video {
          width: 260px;
          height: 520px;
          border-radius: 40px;
          object-fit: cover;
          background: #000;

          border: 6px solid #222;           /* 프레임 효과 */
          box-shadow: 0 20px 40px rgba(0,0,0,0.25);

          transform: scale(0.9);
          transition: 0.5s ease;
          
        }

        /* ===== 가운데 영상 ===== */
        .video-track video.active {
          transform: scale(1.25);
          opacity: 1;
          z-index: 5;
          box-shadow: 0 35px 60px rgba(0,0,0,0.35);
        }
        /* sns 끝 */

        /* 인테리어 시작 */
        /* ===============================
           인테리어 섹션
        ================================ */
        .interior-section {
          background: #f3f1ee;
          padding: 0 0 50px;
          font-family: 'Noto Sans KR', sans-serif;
          color: #5b3a29;
            font-family: 'Nanum Myeongjo', serif;
        }

        .interior-grid { 
          margin: 0 auto;
          display: grid;
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto auto;
          align-items: center;
        }
        .top-left{
            padding-left: 10%;
        }
        .top-right {
            margin-left: -50px;
        }
        .bottom-left {
            margin-right: -50px;
            margin-top: -200px;
        }
        .bottom-right {
            padding-left: 120px;
            margin-top: -120px
        }
        /* 텍스트 */
        .text h2 {
          font-size: 42px;
          line-height: 1.4;
          font-weight: 700;
          margin-bottom: 40px;
        }

        .text .quote {
          font-size: 26px;
          color: #8a5a3d;
          margin-bottom: 30px;
        }

        .text p {
          font-size: 24px;
          line-height: 1.9;
          margin-bottom: 26px;
        }

        /* 이미지 */
        .image img {
          width: 100%;
          display: block;
          border-radius: 20px;
          /*box-shadow: 0 40px 80px rgba(0,0,0,0.15);*/
        }

        /* 인테리어 끝 */

        /* 브랜드 스토리 시작 */
        /* ===============================
           브랜드 스토리 섹션
        ================================ */
        .story-section {
          background: #e9e6df;  /* 이미지와 유사한 베이지 톤 */
          padding: 160px 20px 140px;
          text-align: center;
          font-family: 'Nanum Myeongjo', serif;
          color: #4b2e1e;
        }

        .story-inner {
          max-width: 900px;
          margin: 0 auto;
        }

        /* 타이틀 */
        .story-title {
          font-size: 44px;
          font-weight: 800;
          margin-bottom: 60px;
          position: relative;
          display: inline-block;
          padding-bottom: 12px;
        }

        /* 타이틀 밑줄 */
        .story-title::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 26px;
          width: 100%;
          height: 2px;
          background: #4b2e1e;
          transform: translateX(-50%);
        }

        /* 본문 */
        .story-text p {
          font-size: 20px;
          line-height: 1.6;
          margin-bottom: 50px;
          font-weight: 500;
        }

        /* 이미지 */
        .story-image {
          margin-top: 80px;
        }

        .story-image img {
          width: 100%;
          max-width: 900px;
          display: block;
          margin: 0 auto;
        }


        /* 창업비용 시작 */
        /* ===============================
           창업비용 섹션
        ================================ */

        .psh-cost-wrap {
          background: #e9cfa9;
          padding: 100px 20px 120px;
          font-family: 'Noto Sans KR', sans-serif;
        }

        /* 타이틀 */
        .psh-cost-title {
          text-align: center;
          font-size: 46px;
          font-weight: 900;
          margin-bottom: 40px;
          color: #5b2c12;
        }

        .psh-cost-title img {
          width: 30%;
        }

        /* 테이블 박스 */
        .psh-cost-table-box {
          max-width: 1200px;
          margin: 0 auto;
          background: #f3f3f3;
          border-radius: 28px;
          overflow: hidden;
        }

        /* 테이블 */
        .psh-cost-table {
          width: 100%;
          border-collapse: collapse;
          table-layout: fixed; /* 🔥 빈값 있어도 너비 유지 */
        }

        /* 헤더 */
        .psh-cost-table thead {
          background: #7b2d0f;
          color: #fff;
        }

        .psh-cost-table th {
          padding: 26px 20px;
          font-size: 20px;
          font-weight: 800;
          text-align: center;
        }

        /* 바디 */
        .psh-cost-table td {
          padding: 30px 24px;
          font-size: 17px;
          text-align: center;
          border-bottom: 1px solid #e1e1e1;
          vertical-align: middle;
          word-break: keep-all;
            color: #7b2d0c;
        }

        .psh-cost-table tbody tr:last-child td {
          border-bottom: none;
        }

        /* 첫 컬럼 */
        .category {
          font-weight: 800;
          color: #7b2d0f;
          font-size: 18px;
        }

        /* 금액 컬럼 */
        .strike {
          text-decoration: line-through;
          text-align: right;
          font-weight: 400;
          font-size: 18px;
          color: #7b2d0f;
        }

       .psh-cost-table td.highlight {
          font-weight: 900;
          font-size: 18px;
          color: #ff4b2b;
        }

        /* 빈칸도 높이 유지 */
        .psh-cost-table td:empty::after {
          content: "\00a0";
        }

        /* 하단 안내 */
        .psh-cost-note {
          max-width: 1200px;
          margin: 50px auto 0;
          font-size: 15px;
          color: #6a3d26;
          line-height: 1.9;
        }
        /* 창업비용 끝 */

        /* 문의하기 시작 */
        .psh-contact {
          position: relative;
          padding: 140px 20px;
          background: url("img/cont_bg.png") no-repeat;
        }

        .psh-contact-inner {
          position: relative;
          max-width: 900px;
          margin: 0 auto;
          text-align: center;
          color: #fff;
        }

        .psh-contact-sub {
          font-size: 16px;
          font-weight: 600;
          color: #d18c63;
          margin-bottom: 10px;
        }

        .psh-contact-sub img {
            width: 20%;
        }

        .psh-contact-title {
          font-size: 48px;
          font-weight: 800;
          margin-bottom: 50px;
        }

        .psh-contact-title img {
            width: 24%;
        }

        .psh-contact-form {
          background: #fff;
          border-radius: 20px;
          padding: 40px;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
          text-align: left;
        }

        .form-row.full {
          grid-column: span 2;
        }

        .form-row label {
          display: block;
          font-size: 14px;
          font-weight: 700;
          color: #333;
          margin-bottom: 8px;
        }

        .form-row input[type="text"],
        .form-row input[type="email"] {
          width: 100%;
          height: 48px;
          border-radius: 6px;
          border: 1px solid #ddd;
          padding: 0 14px;
          font-size: 14px;
          background: #fafafa;
        }

        .radio-group {
          display: flex;
          gap: 24px;
          align-items: center;
          height: 48px;
        }

        .radio-group label {
          font-size: 14px;
          color: #333;
          font-weight: 500;
        }

        .psh-contact-agree {
          margin: 24px 0 40px;
          font-size: 14px;
          color: #fff;
        }

        .psh-contact-agree input {
          margin-right: 8px;
        }

        .psh-contact-btn {
          display: inline-block;
          background: #ff3b1f;
          color: #fff;
          padding: 18px 36px;
          border-radius: 100px;
          border: 2px solid #be0b0b;
          cursor: pointer;
        }

        .psh-contact-btn img {
            width: 70%;
        }

        .psh-contact-btn:hover {
          background: #e63219;
        }
        /* 문의하기 끝 */

        /* 푸터 시작 */
        .psh-footer {
          background: #fff;
          padding: 80px 20px 60px;
          text-align: center;
          font-family: 'Noto Sans KR', sans-serif;
            margin-bottom: 100px;
        }

        .psh-footer-inner {
          max-width: 1200px;
          margin: 0 auto;
        }

        .psh-footer-logo {
          margin-bottom: 40px;
        }

        .psh-footer-logo img {
          max-width: 240px;
          height: auto;
        }

        .psh-footer-info {
          color: #555;
          font-size: 16px;
          line-height: 1.8;
          margin-bottom: 50px;
        }

        .psh-footer-info p {
          margin: 8px 0;
        }

        .psh-footer-info .divider {
          margin: 0 12px;
          color: #bbb;
        }

        .psh-footer-copy {
          font-size: 14px;
          color: #888;
          letter-spacing: 0.5px;
        }
        /* 푸터 끝 */


        /*레이어 팝업 */
        .popup{
            position:fixed;
            inset:0;
            /*background:rgba(0,0,0,0.7);*/
            display:none;
            justify-content:center;
            align-items:center;
            z-index:9999;
        }

        .popup-content{
            width:34%;
            height: fit-content;
            max-width:90%;
            border-radius:10px;
            position:relative;
        }

        .popup-content p {
            text-align: center;
        }

        .popup-content img {
            width: 90%
        }

        .close-btn{
            position:absolute;
            bottom:20px;
            right:15%;
            border:none;
            background:none;
            font-size:22px;
            cursor:pointer;
            color: #fff;
        }


        /* 하단 고정 문의 버튼 */

        .floating-contact{
            position:fixed;
            bottom:0;
            left:0;
            width:100%;
            display:flex;
            z-index:9998;
            height: 80px;
        }

        .floating-contact a{
            flex:1;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            padding:14px 10px;
            font-weight:700;
            font-size:16px;
            text-decoration:none;
            color:#fff;
        }

        .call-btn{
            background:#c02b2b;
        }

        .insta-btn{
            background:#3b2a1d;
        }

        .floating-contact img{
            width:22px;
        }


/* =========================================================
   🔥 3단 반응형 통합 구조
   Desktop : 기본
   Tablet  : 1024px 이하
   Mobile  : 768px 이하
========================================================= */


/* ==============================
   📱 TABLET (1024px 이하)
============================== */
@media (max-width: 1024px) {

    /* 공통 컨테이너 폭 안정화 */
    .performance-grid,
    .advantage-grid,
    .result-grid,
    .system-grid,
    .menu-grid,
    .profit-layout,
    .interior-grid {
        width: 90%;
        margin: 0 auto;
    }

    /* 3열 → 2열 */
    .performance-grid,
    .advantage-grid,
    .system-grid,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* 테스트 결과는 세로가 더 안정적 */
    .result-grid {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    /* 그래프 세로 정렬 */
    .profit-layout {
        flex-direction: column;
        gap: 60px;
    }

    .table-box {
        min-width: auto;
        width: 100%;
    }

    /* 인테리어 2열 → 1열 */
    .interior-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .top-left,
    .top-right,
    .bottom-left,
    .bottom-right {
        margin: 0;
        padding: 0;
    }

}


/* ==============================
   📱 MOBILE (768px 이하)
============================== */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    /* ===== HEADER ===== */
     header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex: 1;
    }
    

    .btn-inquiry {
        order: 2;
        margin-right: 26px;
        padding: 6px 14px;
        font-size: 12px;
    }

    .hero h1 img {
        width: 90%;
    }
    
    .popup-content img {
        width: 90%
    }
    
     /* =================================================
       📱 MOBILE HAMBURGER MENU
    ================================================= */

    /* 햄버거 기본 숨김 */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1200;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #4A2C2A;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    /* 딤 배경 */
    .nav-dim {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 1000;
    }

    /* ===============================
       MOBILE
    ============================== */
    /* 햄버거 표시 */
    .hamburger {
        display: flex;
    }

    /* 기존 메뉴 숨김 */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fdfbef;
        flex-direction: column;
        padding-top: 100px;
        transition: 0.35s ease;
        z-index: 1100;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    nav ul li a img {
        width: 100%;
    }

    /* 열렸을 때 */
    nav.active {
        right: 0;
    }

    .nav-dim.active {
        display: block;
    }
    
    /* ==============================
   햄버거 기본
    ============================== */
    .hamburger {
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        order: 3;
    }

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #3f1d0e;
        border-radius: 2px;
        transition: 0.35s ease;
    }

    /* 3줄 위치 */
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }


    /* ==============================
       ACTIVE → X 변환
    ============================== */
    .hamburger.active span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        bottom: 10px;
        transform: rotate(-45deg);
    }
    
    .quote-section p br {
        display: none;
    }
    
    
    /* ==============================
       📱 MOBILE - hero video taller
    ============================== */
    .hero {
        height: 85vh;   /* 🔥 기존보다 세로 길게 */
    }

    .hero-video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        }

    .hero-badge img {
        width: 80%;
    }

    /* 라인삭제 */
    .sales-performance::after {
        display: none !important;
    }
    
    .section-title-pill img {
        width: 90%;
    }
    
    
    /* ===== 통계 카드 세로 ===== */
    .hero-stats {
        flex-direction: column;
        position: relative;
        margin-top: -160px;
        gap: 20px;
    }

    .stat-card {
        height: auto;
    }

    .stat-card .card-inner {
        position: relative;
        transform: translate(-50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: auto;
        padding: 30px 0;
    }

    /* ===== 전부 1열 ===== */
    .performance-grid,
    .advantage-grid,
    .system-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-grid {
        grid-template-columns: 1fr;
    }

    /* ===== 매출 타이틀 라인 ===== */
    .sales-performance::after {
        width: 90%;
    }

    /* ===== 그래프 ===== */
    .profit-layout {
        flex-direction: column;
        gap: 40px;
    }

    .main-header h1 img {
        width: 80%;
    }

    .main-header p {
        font-size: 18px;
    }

    /* ===== 시그니처 ===== */
    .signature-wrap {
        padding: 180px 0 80px;
    }

    .menu-title {
        font-size: 18px;
        padding: 20px 60px;
    }

    .signature-caption .menu-desc {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* ==============================
       📱 MOBILE - signature center 강조
    ============================== */
    .signatureSwiper {
        padding: 140px 0 0; /* 위아래 여백 확보 */
    }

    .signatureSwiper .swiper-wrapper {
        height: 420px;  /* 🔥 여기 숫자 조절 */
        display: flex;
        align-items: center;
    }

    /* 기본 슬라이드 크기 줄이기 */
    .signatureSwiper .swiper-slide {
        transform: scale(0.7) !important;
        opacity: 0 !important;
    }

    /* 가운데(active)만 크게 */
    .signatureSwiper .swiper-slide-active {
        transform: scale(1.25) !important;  /* 🔥 여기 수치 조절 */
        opacity: 1 !important;
        z-index: -20;
    }

    .signature-caption {
        margin-top: -10px;
    }
    
    .signature-icon{
        top: 220px;
        left: 76%;
    }
    .signature-icon img {
        width: 50%;
    }
    
    .profit-box {
        padding: 12px clamp(38px, 3vw, 40px);
    }
    
    .menu-section {
        background-size: cover;
    }
    /* ==============================
       📱 MOBILE - competitive 카드 여백 정리
    ============================== */
    .competitive {
        padding: 140px 20px;   /* 좌우 여백 안정값 */
        overflow: hidden;
    }

    .advantage-grid {
        grid-template-columns: 1fr;   /* 1열로 변경 */
        gap: 40px;
    }

    .adv-card {
        padding: 40px 30px 300px;   /* 카드 내부 여백 조정 */
        border-radius: 20px;
        position: relative;
    }

    .adv-card .content h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .adv-card .content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .adv-card .number {
        font-size: 38px;
        top: -48px;
    }


    /* ==============================
       📱 MOBILE - test-results bg full
    ============================== */
    .test-results {
        padding: 120px 20px;
    }

    .test-results::before {
        background: url(img/test_bg.png) center center no-repeat;
        background-size: cover;   /* 🔥 핵심 */
    }


    
    /* ==============================
       📱 MOBILE - graph 라인 숨김
    ============================== */
    .store-title {
        margin-top: 0;
    }
    
    .graph-wrap .store-title::after {
        /*display: none;*/
        width: min(300px, 80%);
    }
    
    .result-grid {
        gap: 40px;
    }

    
    /* 시스템 */
    .system-header img {
        width: 100%;
    }
    
    .system-header p {
        font-size: 26px;
        line-height: 1.3em;
        margin-top: 10px;
    }
    
    /* ==============================
       📱 MOBILE - review-section 최적화
    ============================== */
    .review-section {
        padding: 80px 20px;
    }

    .review-inner {
        padding: 0;
    }

    .review-header p img {
        width: 20%;
    }

    .review-header h2 {
        margin-top: 0;
    }

    .review-header h2 img {
        width: 60%;
        height: auto;
        margin-top: 20px;
    }

    .review-bubbles {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* 좌우 구분 제거 */
    .review-bubbles .bubble {
        max-width: 100%;
        text-align: center;
    }
    .review-bubbles .bubble.left {
        margin-left: -20px;
        transform: none;
    }
    .review-bubbles .bubble.left,
    .review-bubbles .bubble.right {
        transform: none;
        margin-right: -40px;
        margin-top: -50px;
    }

    .review-bubbles .bubble img {
        width: 120%;
        height: auto;
    }
    .bubble.right {
        align-self: center;
    }
    .review-bubbles div:nth-child(5) img {
        width: 140% !important;
    }


    /* 메뉴 */
    .menu-header .sub img {
        width: 20%;
    }
    .menu-header h2 {
        margin: 20px 0;
    }
    
    .menu-header h2 p:nth-child(1) img {
        width: 100%;
    }
    
    .menu-header h2 p:nth-child(2) img {
        width: 80%;
    }
    
    .menu_sub_txt {
        line-height: 1.3em;
    }
    
    .menu-more img {
        width: 60%;
    }
    
    .popup-inner {
        width: 90%;
    }

    
    /* ===== ZERO ===== */
    .zero-header .sub-title img {
        width: 80%;
    }
    
    .zero-header h2 {
        margin-top: 0;
    }
    
    .zero-header h2 p img {
        width: 90%;
    }
    
    .zero-header h2 p:nth-child(2) img {
        width: 92%;
    }
    
    .zero-grid {
        grid-template-columns: 1fr;
    }

    .zero-wrapper {
        padding: 50px 20px;
        margin-top: 40px;
    }
    

    /* =================================================
       📱 MOBILE SNS 단일 영상 모드 (크게 확대 버전)
    ================================================= */

    .sns-section {
        padding-top: 80px;
        background-size: cover;
    }
    .sns-wrapper {
        width: 100%;
        height: 620px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: hidden;
        margin: 0 auto;
    }
    
    .sns-header span img {
        width: 36%;
    }
    
    .sns-header h2 img {
        width: 86%;
    }
    
    .video-track {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 600px;
    }

    /* 기본 영상 숨김 */
    .video-track video {
        display: none;
    }

    /* 가운데 영상만 표시 */
    .video-track video.active {
        display: block;
        width: 280px;      /* 🔥 크기 확대 */
        height: 520px;     /* 🔥 비율 유지 */
        border-radius: 40px;
        margin: 0 auto;
        transform: none;
        box-shadow: 0 15px 30px rgb(130 130 130 / 50%);
    }


    /* ==============================
       📱 MOBILE - 인테리어 순서 재정렬
    ============================== */
    .interior-section {
        padding-top: 80px;
        overflow: hidden;
    }
    
    .text h2 {
        font-size: 25px;
    }
    
    .text .quote {
        font-size: 14px;
    }
    
    .text p {
        line-height: 1.6em;
        font-weight: 300;
        font-size: 13px;
    }
    
    .interior-grid {
        display: flex;
        flex-direction: column;
    }
    
    .image img {
        width: 98%;
    }

    /* 순서 강제 지정 */
    .top-left {
        order: 1;  /* 글 */
    }

    .top-right {
        order: 2;  /* 사진 */
        margin: -70px -30px 0 0;
    }

    .bottom-right {
        order: 3;  /* 글 */
        margin-top: -70px;
    }

    .bottom-left {
        order: 4;  /* 사진 */
        margin: -70px 0 0 -30px;
    }

    /* 브랜드 스토리 */
    .story-section {
        padding: 80px 20px 100px;
    }
    
    .story-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .story-title::after {
        height: 1px;
        bottom: 20px;
    }
    
    .story-text p {
        font-size: 12px;
        margin-bottom: 30px;
    }

    /* ===== 창업비용 ===== */
    .psh-cost-wrap {
        padding-top: 80px;
    }
    
    .psh-cost-title {
        margin-bottom: 30px;
    }
    
    .psh-cost-title img {
        width: 90%;
    }
    
    .psh-cost-table th,
    .psh-cost-table td {
        font-size: 13px;
        padding: 12px;
    }
    
    .psh-cost-table td.highlight {
        font-size: 13px;
    }
    
    .cost2{
        width: 40% !important;
    }
    
    .psh-cost-note {
        margin-top: 30px;
    }
    
    .psh-cost-note p {
        line-height: 1.6em;
        margin-bottom: 5px;
    }

    /* ===== 문의 ===== */
    .psh-contact {
        padding-top: 80px;
    }
    
    .psh-contact-sub{
        margin-bottom: 0;
    }
    
    .psh-contact-sub img {
        width: 30%;
    }
    
    .psh-contact-title img{
        width: 38%;
    }
    
    .psh-contact-title {
        margin-bottom: 30px;
    }
    
    .psh-contact-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .form-row.full {
        grid-column: span 1;
    }
    
    .psh-contact-btn {
        padding: 18px 0;
    }
    
    .psh-contact-btn img {
        width: 50%;
    }

    /* footer */
    .psh-footer-logo img {
        max-width: 180px;
    }
    
    .popup-content{
            width:80%;
            height: fit-content;
        }
    
        
    .floating-contact{
        height: 50px;
    }

}



@media (max-width: 280px) {
    .quote-section p br {
        display: none;
    }
    
    .signature-title .s-tit img {
        width: 40%;
    }
    
    .s-txt2 {
        font-size: 16px;
    }
    
    .signatureSwiper {
        padding: 100px 0 0;
    }
    
    .signature-icon {
        top: 200px;
        left: 100%;
    }
    
    .signature-icon img {
        width: 40%;
    }
    
    .signatureSwiper .swiper-wrapper {
        height: 360px;
    }
    
    .signature-title {
        top: 40px;
    }


    .competitive {
        padding: 80px 20px;
        overflow: hidden;
    }
    
    .competitive .sub-title img {
        width: 70%;
    }
    
    .competitive h2 {
        margin-bottom: 60px;
    }
    
    .adv-card .number {
        font-size: 28px;
        top: -36px;
    }
    
    .adv-card {
        padding-bottom: 230px;
    }
    
    .adv-card .illustration img {
        bottom: 40px;
        right: -60px;
    }
    
    .test-results {
        padding: 80px 20px;
    }
    
    .test-results .main-title {
        margin-bottom: 10px;
    }
    
    .desc {
        margin-bottom: 40px;
    }
    
    .receipt {
        padding: 30px 20px 120px;
    }
    
    .profit-box {
        padding: 12px clamp(16px, 3vw, 40px);
    }
    
    .main-header {
        padding-top: 80px;
    }
    
    .graph-wrap .store-title::after {
        width: 280px;
    }
    
    .profit-layout {
        gap: 60px;
    }
    
    .profit-layout {
        padding-bottom: 100px;
    }
    
    .menu-section {
        padding-top: 80px;
    }
    
    .menu-header h2 {
        margin: 0 0 20px 0;
    }
    
    .menu-header h2 p {
        height: 1.2em;
    }
    
    .menu_sub_txt {
        font-size: 18px;
    }
    
    .menu_sub_txt {
        margin-bottom: 40px;
    }
    
    .zero-section {
        padding: 80px 20px;
    }
    
    .zero-header h2 p {
        line-height: 0.8em;
    }
    
    .text h2 {
        font-size: 26px;
    }
    
    .text p {
        font-size: 16px;
    }
    
    .story-title {
        font-size: 22px;
    }
    
    .story-title::after {
        bottom: 20px;
    }
    
    .story-text p {
        font-size: 13px;
    }
    
    .story-image {
        margin-top: 40px;
    }
    
    .psh-cost-table-box {
        border-radius: 18px;
    }
    
    .cost2 {
        width: 30%;
    }
    
    .psh-cost-table td.highlight {
        font-size: 12px;
    }
    
    .psh-cost-table th, .psh-cost-table td {
        padding: 12px 6px;
        font-size: 12px;
    }
    
    .psh-cost-wrap {
        padding-bottom: 80px;
    }
    
    .psh-contact-title {
        line-height: 1em;
    }
    
    .psh-contact-btn {
        width: 240px;
        padding: 16px 0;
    }

    .psh-footer-logo img {
        width: 160px;
    }
    
    .popup-content{
            width:90%;
            height: fit-content;
        }
    
    .floating-contact{
        height: 30px;
    }
}












