@charset "utf-8";

/* ==========================================================================
   1. Fonts & Reset
   ========================================================================== */
@font-face {
    font-family: 'GmarketSansLight';
    src: url('../fonts/GmarketSansLight.woff') format('woff');
    font-weight: 300; font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('../fonts/GmarketSansMedium.woff') format('woff');
    font-weight: normal; font-style: normal;
}
@font-face {
    font-family: 'GmarketSansBold';
    src: url('../fonts/GmarketSansBold.woff') format('woff');
    font-weight: 700; font-style: normal;
}
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@font-face {
    font-family: 'Noto Sans KR';
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Noto Sans KR';
    src: url('../fonts/NotoSansKR-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal;
}
@font-face {
    font-family: 'Noto Sans KR';
    src: url('../fonts/NotoSansKR-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal;
}
@font-face {
    font-family: 'LOTTERIACHAB';
    src: url('../fonts/LOTTERIACHAB.woff2') format('woff2');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Lobster';
    src: url('../fonts/Lobster-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}

:root {
    --font-main: 'GmarketSansMedium', sans-serif;
    --font-bold: 'GmarketSansBold', sans-serif;
    --font-body: 'Pretendard', sans-serif;
    --color-black: #111111;
    --color-white: #ffffff;
    --color-point: #ff3300;
    --color-gray: #999999;
    --color-gray-bg: #f5f5f5;
    --header-height: 70px;
    --z-popup: 9999;
    --z-modal: 9998;
    --z-header: 1000;
    --z-wing: 900;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    width: 100%; font-family: var(--font-main); font-size: 16px;
    line-height: 1.6; color: var(--color-black); word-break: keep-all;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* 화면에는 보이지 않지만 검색엔진/스크린리더는 읽는 텍스트 */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   2. Layout & Container
   ========================================================================== */
.container { 
    width: 100%; 
    max-width: 1600px; 
    padding: 0 20px; 
    margin: 0 auto; 
}
.section { padding: 80px 0; }
.main-content { padding-top: var(--header-height); }

/* ==========================================================================
   3. Header
   ========================================================================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background: #00c86f; backdrop-filter: blur(10px);
    z-index: var(--z-header); border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.header .container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}
.header .logo {
    position: absolute;
    left: 40px;
}
.header-right {
    position: absolute;
    right: 40px;
}
.logo a { 
    display: block;
    line-height: 1;
}
.logo-img {
    height: auto;
    width: auto;
    max-height: 80px;
    object-fit: contain;
}
.header-right { 
    display: block;
}
.btn-contact {
    padding: 12px 28px 10px 28px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 500;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}
.btn-contact:hover {
    background: #000;
    transform: scale(1.1);
}

/* GNB */
.gnb {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh;
    background: #00c86f; padding: 100px 40px 40px; transition: 0.3s;
    z-index: 1001; box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.gnb.active { right: 0; }
.gnb ul li { margin-bottom: 20px; }
.gnb ul li a {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 24px;
    color: #fff;
    display: block;
    transition: transform 0.3s ease;
}
.gnb ul li a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* GNB 하단 버튼 (모바일 메뉴) */
.gnb-bottom-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gnb-btn {
    display: block;
    text-align: center;
    padding: 16px 20px;
    border-radius: 30px;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}
.gnb-btn-login {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.gnb-btn-login:hover {
    background: rgba(255,255,255,0.15);
}
.gnb-btn-quote {
    background: #fff;
    color: #00c86f;
    border: 2px solid #fff;
    font-size: 19px;
}
.gnb-btn-quote:hover {
    background: #f0fdf4;
}

/* User Menu Dropdown */
.user-menu-wrapper {
    position: relative;
    display: inline-block;
}
.user-name {
    color: #fff;
    font-family: var(--font-bold);
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}
.user-name:hover {
    transform: scale(1.1);
}
.user-name::after {
    content: '▼';
    font-size: 12px;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.user-menu-wrapper:hover .user-name::after {
    transform: rotate(180deg);
}
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    overflow: hidden;
}
.user-menu-wrapper:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}
.user-dropdown a:last-child {
    border-bottom: none;
}
.user-dropdown a:hover {
    background: #f5f5f5;
    color: #00c86f;
    transform: none;
}

/* Desktop User Menu */
.user-menu-wrapper-desktop {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.user-name-desktop {
    color: #fff;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 16px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 30px;
}
.user-name-desktop:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}
.user-name-desktop::after {
    content: '▼';
    font-size: 9px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.user-menu-wrapper-desktop:hover .user-name-desktop::after {
    transform: rotate(180deg);
}
.user-dropdown-desktop {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    overflow: hidden;
}
.user-menu-wrapper-desktop:hover .user-dropdown-desktop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown-desktop a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}
.user-dropdown-desktop a:last-child {
    border-bottom: none;
}
.user-dropdown-desktop a:hover {
    background: #f5f5f5;
    color: #00c86f;
    transform: none;
}
#loginLinkDesktop {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    margin-right: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
#loginLinkDesktop:hover {
    background: #000;
    color: #fff;
}

.mobile-menu-btn { 
    width: 30px; height: 30px; 
    position: relative; 
    z-index: 1002; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-menu-btn span { 
    display: block; 
    width: 100%; 
    height: 3px; 
    background: #000; 
    transition: 0.3s; 
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ==========================================================================
   4. Table Layout Styles (원본 테이블 구조 유지)
   ========================================================================== */
/* 메인 테이블: 전체 화면 배경을 위해 너비 100% 설정 (내부 컨테이너로 1600px 제한) */
#__01 {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed; /* 셀 너비 고정을 위해 추가 */
}
.main-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
.main-table td,
#__01 td {
    vertical-align: top;
    position: relative;
}

/* 헤더 텍스트 셀 */
.header-text-cell {
    padding: 15px 20px;
    background: #fff;
}
.header-text {
    text-align: center;
}
.site-logo {
    font-family: var(--font-bold);
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--color-black);
}
.top-nav {
    font-family: var(--font-main);
    font-size: 14px;
    color: #666;
}
.top-nav a {
    color: #000;
    transition: transform 0.3s ease;
    display: inline-block;
}
.top-nav a:hover {
    color: #000;
    transform: scale(1.1);
}

/* 메인 타이틀 섹션 */
.main-title-cell {
    padding: 70px 15px 60px 0 !important;
    background: #fff;
    text-align: right;
    vertical-align: middle;
    width: 45%; /* 비율 조정 */
}
.main-title-section {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
    position: relative;
    height: 450px; /* 고정 높이로 슬라이드 전환 안정화 */
}
.text-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 80px; /* 텍스트를 아래로 내리기 위한 상단 여백 추가 */
}
.text-slide {
    position: absolute;
    top: 220px; /* 위에서 220px 아래로 위치 조정 (100px 올림) */
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.text-slide.active {
    opacity: 1;
    visibility: visible;
}
.main-title {
    font-family: var(--font-bold);
    font-size: 64px; /* 폰트 크기 확대 */
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}
.main-subtitle {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}
.btn-detail {
    display: inline-block;
    padding: 18px 55px;
    background: #00c86f;
    color: #fff;
    border-radius: 40px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-detail:hover {
    background: #00b863;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 200, 111, 0.4);
}
.main-image-cell {
    padding: 100px 0 60px 15px !important;
    background: #fff;
    vertical-align: middle;
    text-align: left;
    position: relative;
    width: 55%; /* 비율 조정 */
}
.main-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px; /* 이미지를 아래로 내리기 위한 상단 여백 추가 */
}
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 800px; /* 크기 조금 더 축소 (900px -> 800px) */
    z-index: 10;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}
.carousel-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dots .dot.active {
    background: #00c86f;
    width: 40px;
    height: 9px;
    border-radius: 4.5px;
}
.carousel-images {
    position: relative;
    width: 100%;
    height: 620px; /* 크기 조금 더 축소 (700px -> 620px) */
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.carousel-img.active {
    opacity: 1;
}

/* ==========================================================================
   11. Hero Video Section — 2026 Premium Interactive
   ========================================================================== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    margin: 0 0 -5px 0;
    padding: 0;
    display: block;
    background: #000;
}

/* 멀티 비디오 레이어 */
.hv-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: calc(100% + 5px);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.hv-video.active { opacity: 1; z-index: 2; }

/* 시네마틱 오버레이 */
.hv-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.5) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.1) 100%);
    z-index: 3;
    pointer-events: none;
}

/* 브랜드 태그 (콘텐츠 영역 상단) */
.hv-brand {
    margin-bottom: 16px;
}
.hv-brand-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

/* 중앙 콘텐츠 슬라이드 */
.hv-content {
    position: absolute;
    bottom: 140px;
    left: 60px;
    z-index: 10;
    max-width: 650px;
}
.hv-slide {
    position: absolute;
    bottom: 0; left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    white-space: nowrap;
}
.hv-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.hv-slide.exit {
    opacity: 0;
    transform: translateY(-20px);
}
.hv-number {
    display: block;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}
.hv-title {
    font-family: 'GmarketSansBold', sans-serif;
    font-size: 72px;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hv-subtitle {
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.hv-desc {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}
.hv-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hv-tags span {
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.hv-tags span:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* 하단 네비 + 카운터 */
.hv-bottom {
    position: absolute;
    bottom: 50px;
    left: 60px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.hv-nav {
    display: flex;
    gap: 6px;
}
.hv-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    text-align: left;
    width: 100px;
}
.hv-nav-label {
    display: block;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
    transition: color 0.4s;
}
.hv-nav-btn.active .hv-nav-label { color: rgba(255,255,255,0.9); }
.hv-nav-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.hv-nav-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: none;
}
.hv-nav-btn.active .hv-nav-fill {
    animation: hvFillBar 6s linear forwards;
}
@keyframes hvFillBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* 카운터 */
.hv-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'GmarketSansLight', sans-serif;
}
.hv-current {
    font-size: 32px;
    font-family: 'GmarketSansBold', sans-serif;
    color: #fff;
    line-height: 1;
}
.hv-divider {
    font-size: 16px;
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}
.hv-total {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
}

/* 스크롤 다운 인디케이터 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.scroll-indicator span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-indicator .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* 히어로 반응형 */
@media (max-width: 768px) {
    .hv-brand { margin-bottom: 12px; }
    .hv-brand-tag { font-size: 10px; letter-spacing: 3px; padding: 5px 16px; }
    .hv-content { left: 24px; bottom: 160px; max-width: calc(100% - 48px); }
    .hv-title { font-size: 40px; letter-spacing: -1px; }
    .hv-subtitle { font-size: 18px; }
    .hv-desc { font-size: 14px; }
    .hv-bottom { left: 24px; right: 24px; bottom: 80px; flex-direction: column; gap: 16px; align-items: flex-start; }
    .hv-nav-btn { width: 70px; }
    .hv-counter { position: absolute; right: 0; bottom: 0; }
    .hv-slide { white-space: normal; }
    .hv-tags span { font-size: 11px; padding: 5px 12px; }
    .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
    .hv-title { font-size: 32px; }
    .hv-subtitle { font-size: 16px; }
    .hv-content { bottom: 180px; }
    .hv-nav-btn { width: 60px; }
    .hv-nav-label { font-size: 9px; }
}

/* 비디오 위 텍스트 오버레이 스타일 */
.visual-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 100%;
}
.visual-subtitle {
    font-family: var(--font-main);
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.visual-title {
    font-family: var(--font-bold);
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 30px;
}
.visual-highlight {
    color: #00c86f;
}
.visual-desc {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ==========================================================================
   10. Intro Section (스튜디오숲은? - 목표 이미지 2번과 100% 동일화)
   ========================================================================== */
.intro-section-cell {
    background: #fff;
    padding: 80px 0 0 !important;
    text-align: center;
    border: none;
}
.intro-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 !important;
}
.intro-logo {
    margin-bottom: 30px;
}
.intro-logo img {
    width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.intro-text {
    margin-top: 20px;
}
.intro-tag {
    font-family: var(--font-bold);
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 800;
    text-transform: uppercase;
}
.intro-title {
    font-family: var(--font-bold);
    font-size: 58px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
}
.intro-title .num, 
.intro-title .highlight {
    color: #00c86f !important;
}
.intro-desc {
    font-family: var(--font-main);
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    letter-spacing: -0.5px;
    margin-bottom: 40px !important;
}

/* ==========================================================================
   11. Features Section (특징 그리드)
   ========================================================================== */
.features-section-cell {
    background: #fff;
    padding: 100px 0 !important;
}
.features-section {
    width: 100%;
}
.features-header {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    color: #000;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
}
.features-header .highlight {
    color: #00c86f;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px; /* 세로 간격 60px, 가로 간격 30px */
}
.feature-card {
    display: flex;
    flex-direction: column;
}
.feature-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    background: #f8f8f8;
}
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feature-card:hover .feature-img img {
    transform: scale(1.05);
}
.feature-info h3 {
    font-family: var(--font-bold);
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.feature-info p {
    font-family: var(--font-main);
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   13. Reviews Section (리뷰 캐러셀)
   ========================================================================== */
.reviews-section-cell {
    background: #fff;
    padding: 120px 0 80px 0 !important;
}
.reviews-header {
    font-family: var(--font-bold);
    font-size: 52px;
    line-height: 1.3;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -2px;
}
.reviews-header .highlight {
    color: #00c86f;
}
.reviews-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}
.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 10px;
}
.review-card {
    flex: 0 0 calc(33.333% - 40px);
    margin: 0 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    opacity: 0.55;
    transform: scale(0.88);
    position: relative;
    overflow: hidden;
}
/* 큰따옴표 장식 */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(0, 200, 111, 0.1);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}
/* 사이드 카드 호버 효과 */
.review-card:hover {
    opacity: 0.85;
    transform: scale(0.92);
    border-color: rgba(0, 200, 111, 0.3);
    box-shadow: 0 12px 32px rgba(0, 200, 111, 0.1);
}
/* 가운데 활성화된 카드 — 다크 그린 그라디언트 */
.review-card.active {
    background: linear-gradient(135deg, #064e2b 0%, #0a7e4a 50%, #045c3a 100%) !important;
    border-color: rgba(0, 200, 111, 0.4) !important;
    opacity: 1;
    transform: scale(1.08);
    z-index: 10;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 20px 48px rgba(6, 78, 43, 0.25),
        0 0 0 1px rgba(0, 200, 111, 0.2);
}
.review-card.active::before {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.2);
}
/* 활성 카드 호버 시 추가 효과 */
.review-card.active:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 24px 56px rgba(6, 78, 43, 0.3),
        0 0 40px rgba(0, 200, 111, 0.15);
}
.review-card.active .review-card-title {
    color: #f0fdf4 !important;
    font-size: 28px;
}
.review-card.active .review-card-text {
    color: rgba(240, 253, 244, 0.9) !important;
}
.review-card.active .review-author {
    color: #fff !important;
}
.review-card.active .review-brand {
    color: rgba(255, 255, 255, 0.7) !important;
}
.review-card.active .review-stars {
    color: #fbbf24 !important;
}
.review-card-title {
    font-family: var(--font-bold);
    font-size: 26px;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
}
.review-card-text {
    font-family: var(--font-main);
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
    height: 90px;
}
.review-author {
    font-family: var(--font-bold);
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}
.review-brand {
    font-family: var(--font-main);
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
}
.review-stars {
    font-size: 22px;
    color: #ffcc00;
    letter-spacing: 2px;
}
/* 별 반짝이 애니메이션 (활성 카드) */
@keyframes starShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}
.review-card.active .review-stars {
    animation: starShimmer 2.5s ease-in-out infinite;
}
/* 내비게이션 버튼 */
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.reviews-nav button {
    width: 60px;
    height: 60px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews-nav button:hover {
    background: #00c86f;
    color: #fff;
    border-color: #00c86f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 200, 111, 0.3);
}
.reviews-nav button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.stats-section-cell {
    background: #00c86f; /* 브랜드 그린 배경 */
    padding: 120px 0 !important;
}
.stats-section {
    width: 100%;
}
.stats-header {
    text-align: center;
    margin-bottom: 80px;
}
.stats-title {
    font-family: var(--font-bold);
    font-size: 56px;
    line-height: 1.2;
    color: #000; /* 검정색 제목 */
    margin-bottom: 25px;
    letter-spacing: -2px;
}
.stats-subtitle {
    font-family: var(--font-main);
    font-size: 24px;
    color: #000;
    opacity: 0.9;
    letter-spacing: -0.5px;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    flex: 1;
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s ease;
}
/* 호버 시 카드 전체 리프트 + 배경 */
.stat-item:hover {
    transform: translateY(-12px);
    background: rgba(0, 0, 0, 0.1);
}
/* 애니메이션 언더라인 */
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease, width 0.4s ease;
    width: 60%;
}
.stat-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.stat-num {
    font-family: var(--font-bold);
    font-size: 90px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -1px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                text-shadow 0.4s ease;
    display: inline-block;
}
/* 카드 호버 시 숫자도 스케일업 + 글로우 효과 */
.stat-item:hover .stat-num {
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                 0 0 60px rgba(255, 255, 255, 0.2);
}
.stat-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 64px;
    border: 1px solid #fff;
    border-radius: 12px;
    font-family: var(--font-bold);
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: default;
    line-height: 1;
    padding: 3px 30px 0;
}
/* 라벨 호버 + 카드 호버 시 라벨도 연동 */
.stat-item:hover .stat-label,
.stat-label:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    font-weight: 800;
}

/* 회색 글씨 돌아가는 효과 (Cafe24 스타일) */
.rotating-text {
    display: inline-block;
    color: var(--color-gray);
    animation: rotateText 8s infinite;
}
@keyframes rotateText {
    0%, 100% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0.7; transform: translateY(-10px); }
    50% { opacity: 0.5; transform: translateY(-20px); }
    75% { opacity: 0.7; transform: translateY(-10px); }
}

/* ==========================================================================
   5. Intro Section (Legacy)
   ========================================================================== */
/* 기존 정의 제거 - 10번 섹션에서 통합 관리 */
.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.section-title {
    font-family: var(--font-bold);
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--color-black);
}
.intro-main {
    font-family: var(--font-bold);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-black);
}
.intro-sub {
    font-size: 20px;
    color: var(--color-point);
    margin-bottom: 30px;
    font-weight: 600;
}
.intro-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.intro-tagline {
    font-size: 16px;
    color: #777;
    font-style: italic;
}

/* ==========================================================================
   6. Services Section
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: var(--color-gray-bg);
}
.services-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}
.service-item h3 {
    font-family: var(--font-bold);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-black);
}
.service-item p:not(.service-item-desc) {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-link {
    color: var(--color-point);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.service-link:hover { color: #cc2900; }

/* ==========================================================================
   8. Why Section (Legacy - 삭제 예정)
   ========================================================================== */
.why-section {
    display: none; /* 새로운 구조로 대체됨 */
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.why-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.why-item h3 {
    font-family: var(--font-bold);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-point);
}
.why-item p {
    font-size: 16px;
    color: #666;
}

/* ==========================================================================
   9. Wing Banner — 2026 Premium Floating Bar
   ========================================================================== */
.wing-banner {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: var(--z-wing);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.08) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wing-banner:hover {
    background: rgba(15, 23, 42, 0.85);
    box-shadow:
        0 24px 70px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 1px 0 rgba(255,255,255,0.1) inset;
}

.wing-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}
.wing-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.08);
    transform: scale(1.08);
}
.wing-icon {
    font-size: 18px;
    line-height: 1;
    filter: grayscale(0.1);
    transition: filter 0.3s, transform 0.3s;
}
.wing-btn:hover .wing-icon {
    filter: grayscale(0);
    transform: scale(1.15);
}
.wing-label {
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.3px;
    transition: color 0.3s;
    white-space: nowrap;
}
.wing-btn:hover .wing-label {
    color: rgba(255,255,255,0.95);
}

/* 개별 버튼 호버 글로우 */
.btn-kakao:hover { background: rgba(255,232,18,0.15); border-color: rgba(255,232,18,0.2); }
.btn-quote:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }
.btn-pay:hover { background: rgba(0,200,111,0.15); border-color: rgba(0,200,111,0.2); }
.btn-event { position: relative; }
.btn-event:hover { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.2); }
.btn-event.has-new::after {
    content: '';
    position: absolute;
    top: 4px; right: 4px;
    width: 8px; height: 8px;
    background: #facc15;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.75);
    animation: wingNewPulse 2s infinite;
    box-shadow: 0 0 8px rgba(250,204,21,0.6);
}
@keyframes wingNewPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}
.btn-personal-pay:hover { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.2); }
.btn-subscription:hover { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.2); }

/* 구분선 효과 (Talk 버튼 아래, 이벤트 아래) */
.btn-kakao::after,
.btn-pay::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 20%; right: 20%;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

/* 토글 버튼 (모바일 전용) */
.wing-toggle {
    display: none;
    width: 52px; height: 52px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, rgba(0,200,111,0.3), rgba(0,168,92,0.3));
    backdrop-filter: blur(10px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s;
}
.wing-toggle:hover { transform: rotate(45deg); }

/* 모바일 날개배너 축소 */
@media (max-width: 768px) {
    .wing-banner {
        bottom: 16px; right: 12px;
        padding: 8px;
        gap: 4px;
        border-radius: 16px;
    }
    .wing-btn {
        width: 44px; height: 44px;
        border-radius: 12px;
    }
    .wing-icon { font-size: 16px; }
    .wing-label { font-size: 8px; }
    .wing-toggle { display: flex; }

    .wing-banner.collapsed .wing-btn { display: none; }
    .wing-banner.collapsed { padding: 6px; gap: 0; border-radius: 14px; }
    .wing-banner.collapsed .wing-toggle { display: flex; }
}

/* === 세일 가격 표시 (메인+pricing 공통) === */
.card-tag-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.card-tag-row .card-tag {
    margin-bottom: 0;
}
.sale-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 5px 14px;
    border-radius: 12px;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(239,68,68,0.3);
    flex-shrink: 0;
    transition: all 0.4s;
}
.price-original-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.price-original {
    font-size: 17px;
    color: #999;
    text-decoration: line-through;
    font-family: 'GmarketSansLight', sans-serif;
}
.price-sale {
    color: #ef4444 !important;
    font-family: 'GmarketSansBold', sans-serif;
}
.sale-label {
    font-size: 15px;
    color: #ef4444;
    font-family: 'GmarketSansMedium', sans-serif;
    font-weight: normal;
}
.price-card {
    position: relative;
}

/* ==========================================================================
   10. Popup
   ========================================================================== */
.popup-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: var(--z-popup);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-content {
    position: relative;
    background: #fff;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
/* 팝업 X 닫기 버튼 (우상단) */
.popup-close-x {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    font-size: 22px;
    line-height: 34px;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
    text-align: center;
    padding: 0;
}
.popup-close-x:hover {
    background: rgba(0,0,0,0.6);
    color: #fff;
    transform: rotate(90deg);
}
/* 팝업 하단 버튼 영역 */
.popup-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.08);
}
/* 오늘 하루 안보기 체크박스 라벨 */
.popup-today-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 13px;
    color: #888;
    transition: color 0.2s;
    user-select: none;
}
.popup-today-label:hover { color: #333; }
.popup-today-label input[type="checkbox"] {
    display: none;
}
.popup-today-check {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
}
.popup-today-label input:checked + .popup-today-check {
    background: var(--color-point, #00c86f);
    border-color: var(--color-point, #00c86f);
}
.popup-today-label input:checked + .popup-today-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.popup-close-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    padding: 6px 20px;
    transition: all 0.2s;
}
.popup-close-btn:hover { border-color: #999; color: #222; background: rgba(0,0,0,0.04); }
/* 팝업 위치 */
.popup-layer.pos-center { align-items: center; justify-content: center; }
.popup-layer.pos-left-top { align-items: flex-start; justify-content: flex-start; }
.popup-layer.pos-right-top { align-items: flex-start; justify-content: flex-end; }
.popup-layer.pos-left-bottom { align-items: flex-end; justify-content: flex-start; }
.popup-layer.pos-right-bottom { align-items: flex-end; justify-content: flex-end; }
.popup-layer.pos-left-top .popup-content,
.popup-layer.pos-right-top .popup-content,
.popup-layer.pos-left-bottom .popup-content,
.popup-layer.pos-right-bottom .popup-content { margin: 30px; }
.popup-content img { display: block; max-width: 100%; height: auto; border-radius: 12px; }

/* ==========================================================================
   11. Portfolio Modal
   ========================================================================== */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
}
.portfolio-modal.active {
    display: block;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}
.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}
.modal-close:hover {
    background: rgba(255,255,255,0.2);
}
.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}
.modal-prev:hover,
.modal-next:hover {
    background: rgba(255,255,255,0.2);
}
.modal-prev {
    left: 20px;
}
.modal-next {
    right: 20px;
}
.modal-images {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}
.modal-images img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

/* ==========================================================================
   12. Newsletter Modal
   ========================================================================== */
.newsletter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
}
.newsletter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-modal .modal-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
}
.newsletter-modal h3 {
    font-family: var(--font-bold);
    font-size: 28px;
    margin-bottom: 15px;
}
.newsletter-modal p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.newsletter-modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-modal input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.newsletter-modal input:focus {
    outline: none;
    border-color: var(--color-point);
}
.newsletter-modal button[type="submit"] {
    padding: 15px;
    background: var(--color-point);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.newsletter-modal button[type="submit"]:hover {
    background: #cc2900;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
/* ==========================================================================
   14. Portfolio Section (포트폴리오)
   ========================================================================== */
.portfolio-section-cell {
    background: #000;
    padding: 120px 0 !important;
}

/* 서브페이지에서는 배경 흰색, 상단 여백 제거 */
.main-content .portfolio-section-cell {
    background: #fff !important;
    padding-top: 0 !important;
    padding-bottom: 100px !important;
}
.portfolio-section {
    width: 100%;
}
.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}
.portfolio-title {
    font-family: var(--font-bold);
    font-size: 64px;
    color: #00c86f;
    margin-bottom: 15px;
    letter-spacing: -2px;
}
.portfolio-subtitle {
    font-family: var(--font-main);
    font-size: 20px;
    color: #fff;
    opacity: 0.8;
}
/* 포트폴리오 카테고리 필터 */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.portfolio-cat-btn {
    padding: 10px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.portfolio-cat-btn:hover {
    border-color: #00c86f;
    color: #fff;
}
.portfolio-cat-btn.active {
    background: #00c86f;
    border-color: #00c86f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,200,111,0.4);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0; /* 이미지 사이 간격 없이 밀착 */
    width: 100%;
}

/* 메인 페이지 가로형(홈페이지제작) 카테고리용 3열 */
.portfolio-grid.landscape {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* 서브페이지용 인피니트 스크롤 그리드 (1줄 4개, 간격 있음) */
.portfolio-grid.infinite {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* 디자인안에 맞춰 간격 추가 */
    padding: 0 20px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 500 / 930; /* 메인배너 500x930 비율 */
    cursor: pointer;
    background: #111;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
/* MORE 버튼 스타일 */
.portfolio-more {
    text-align: center;
    margin-top: 80px;
}
.btn-more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: all 0.3s ease;
}
.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.more-text {
    font-family: var(--font-bold);
    font-size: 16px;
    letter-spacing: 2px;
}
.btn-more:hover .plus-icon {
    transform: rotate(180deg);
    background: #00c86f;
    border-color: #00c86f;
    color: #000;
}
.btn-more:hover .more-text {
    color: #00c86f;
}

/* 포트폴리오 모달 (목록 클릭 시 - 1번 이미지 디자인 적용) */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.portfolio-modal.active {
    display: flex;
}
.modal-content-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 85%; /* 여백 확보를 위해 약간 줄임 */
    max-height: 90vh;
}
.modal-close {
    position: absolute;
    top: 0; /* 이미지 상단 시작점과 일치 */
    right: -65px; /* 조금 더 왼쪽으로 이동 (기존 -80px) */
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10002;
    background: transparent;
}
.modal-close:hover {
    background: #fff;
    color: #000;
}
.modal-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    background: #000; /* 이미지 뒤 어두운 배경 */
}
.modal-body img {
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    object-fit: contain;
    display: block;
}
.modal-nav {
    position: absolute;
    width: calc(100% + 200px); /* 화살표 여백을 100px씩 더 넓게 확장 */
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10002;
}
.modal-btn {
    width: 60px;
    height: 60px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-btn:hover {
    background: #00c86f;
    color: #fff;
    transform: scale(1.1);
}
.modal-prev {
    padding-right: 5px; /* 화살표 위치 미세 조정 */
}
.modal-next {
    padding-left: 5px;
}
/* ==========================================================================
   숏츠 영상 팝업 모달
   ========================================================================== */
.shorts-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.shorts-modal.active { display: flex; }
.shorts-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
}
.shorts-modal-content {
    position: relative;
    width: auto;
    max-width: 420px;
    max-height: 90vh;
    aspect-ratio: 9 / 16;
    z-index: 1;
}
.shorts-video-wrap {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.shorts-video-wrap iframe,
.shorts-video-wrap video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}
.shorts-modal-close {
    position: absolute;
    top: -50px; right: -50px;
    width: 44px; height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}
.shorts-modal-close:hover {
    background: #fff;
    color: #000;
}
.shorts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}
.shorts-prev { left: -70px; }
.shorts-next { right: -70px; }
.shorts-nav-btn:hover {
    background: #00c86f;
}
@media (max-width: 768px) {
    .shorts-modal-content {
        max-width: 90vw;
    }
    .shorts-modal-close {
        top: -45px; right: 0;
    }
    .shorts-prev { left: -10px; }
    .shorts-next { right: -10px; }
    .shorts-nav-btn {
        width: 40px; height: 40px;
        font-size: 24px;
        background: rgba(255,255,255,0.3);
    }
}

/* ==========================================================================
   Footer - 첨부이미지 기준 2컬럼 레이아웃
   ========================================================================== */
.footer {
    background: #000;
    color: #fff;
    padding: 100px 0 0;
    font-family: var(--font-main);
}
.footer .container {
    max-width: 1600px;
}

/* 푸터 메인: 2컬럼 (왼쪽 로고+연락처 / 오른쪽 메뉴+QR+계좌) */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* ── 왼쪽: 로고, 슬로건, 고객센터 ── */
.footer-left {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    margin-bottom: 40px;
}
.footer-logo img {
    height: 190px;
    width: auto;
}
.footer-slogan {
    margin-bottom: 55px;
}
.footer-slogan p {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: -1.2px;
    color: #fff;
    margin-bottom: 6px;
}
.footer-contact h4 {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #fff;
}
.footer-contact .tel {
    font-size: 52px;
    font-weight: normal;
    color: #00c86f;
    margin-bottom: 5px;
    font-family: 'GmarketSansLight', sans-serif;
    letter-spacing: -1.5px;
    line-height: 1.25;
}
.footer-contact .tel.tel-sub {
    margin-bottom: 20px;
}
.footer-contact .contact-detail p {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 20px;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 8px;
}

/* ── 오른쪽: 메뉴 → QR코드 → 무통장 ── */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-qr,
.footer-payment {
    align-self: flex-start;
}
.footer-menu {
    margin-bottom: 50px;
}
.footer-menu ul {
    text-align: right;
}
.footer-menu ul li {
    margin-bottom: 14px;
}
.footer-menu ul li a {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: -1.1px;
    color: #00c86f;
    transition: opacity 0.3s;
}
.footer-menu ul li a:hover {
    opacity: 0.6;
}

/* QR코드 */
.footer-qr {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
}
.qr-image {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 8px;
    box-sizing: border-box;
}
.qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.qr-info h4 {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: -0.9px;
    color: #fff;
    margin-bottom: 8px;
}
.qr-info p {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 15px;
    letter-spacing: -0.75px;
    color: #999;
    line-height: 1.5;
}

/* 무통장 입금안내 박스 */
.footer-payment .payment-box {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 50px;
    border-radius: 12px;
    text-align: left;
    min-width: 520px;
    background: transparent;
}
.footer-payment h4 {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: -1.1px;
    margin-bottom: 25px;
    color: #fff;
}
.footer-payment .bank-info p {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: normal;
    letter-spacing: -1px;
}
.footer-payment .bank-info p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   16. Pricing Section (맞춤형 패키지)
   ========================================================================== */
.pricing-section-cell {
    background: #f8faf9;
    padding: 120px 0 !important;
}
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-title {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: 1.3;
    color: #000;
    letter-spacing: -2px;
}
.pricing-title .highlight {
    color: #00c86f;
}

/* 탭 메뉴 스타일 */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 80px;
}
.tab-btn {
    padding: 20px 48px 18px;
    background: #e8e8e8;
    color: #333;
    border: none;
    border-radius: 30px;
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.tab-btn:hover {
    background: #d0d0d0;
    color: #000;
}
.tab-btn.active {
    background: #00c86f;
    color: #fff;
    border: none;
}

/* 패키지 패널 제어 */
.pricing-panel {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}
.pricing-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

/* 카드 기본 스타일 */
.price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    cursor: pointer;
    overflow: hidden;
}
/* 카드 상단 그라디언트 라인 (평소 숨김) */
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c86f, #0891b2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* 마우스 오버 — 다크 그라디언트 (가독성 극대화) */
.price-card:hover {
    background: linear-gradient(135deg, #064e2b 0%, #0a7e4a 50%, #045c3a 100%);
    border-color: rgba(0, 200, 111, 0.3);
    color: #fff;
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 24px 56px rgba(6, 78, 43, 0.25),
        0 0 0 1px rgba(0, 200, 111, 0.15);
}
.price-card:hover::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
}
.price-card:hover .card-title,
.price-card:hover .card-tag,
.price-card:hover .card-features li,
.price-card:hover .price {
    color: #f0fdf4 !important;
}
.price-card:hover .card-features li::before {
    color: #86efac !important;
}
.price-card:hover .sub-tag {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: #f0fdf4;
}
.price-card:hover .btn-apply {
    background: #fff;
    color: #064e2b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.price-card:hover .price-original {
    color: rgba(255,255,255,0.5) !important;
}
.price-card:hover .sale-label {
    color: #fca5a5 !important;
}
.price-card:hover .price-sale {
    color: #fca5a5 !important;
}
.price-card:hover .sale-tag {
    background: rgba(239,68,68,0.25);
    color: #fff;
    border: 1px solid rgba(239,68,68,0.4);
    box-shadow: none;
}
.price-card:hover .popular-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.price-card:hover .price span {
    color: rgba(240, 253, 244, 0.7) !important;
}

/* 카드 내부 요소 기본 컬러 */
.popular-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f0fdf4;
    color: #059669;
    padding: 6px 16px;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s;
}
.card-tag {
    font-family: var(--font-main);
    font-size: 20px;
    color: #00c86f;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.4s;
}
.card-title {
    font-family: var(--font-bold);
    font-size: 32px;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -1px;
    transition: color 0.4s;
}
.sub-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.4s;
}
.card-features {
    margin-bottom: 50px;
    flex-grow: 1;
}
.card-features li {
    font-size: 17px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s;
}
.card-features li::before {
    content: '✓';
    color: #00c86f;
    font-weight: 900;
    transition: color 0.4s;
}
.price {
    font-family: var(--font-bold);
    font-size: 48px;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -1px;
    transition: color 0.4s;
}
.price span {
    font-size: 24px;
    margin-left: 5px;
    color: #999;
    transition: color 0.4s;
}
.btn-apply {
    display: block;
    width: 100%;
    padding: 18px 0;
    background: #000;
    color: #fff;
    border-radius: 35px;
    text-align: center;
    font-family: var(--font-bold);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-apply:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* PC Responsive 조정 */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ==========================================================================
   15. Scrolling Text Section (Parallax Big Text)
   ========================================================================== */
.scrolling-text-cell {
    background: #0a0a0a !important;
    padding: 40px 0 !important;
    overflow: hidden;
    border: none;
    line-height: 0;
}
.scrolling-text-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.scrolling-text-row {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
    padding: 8px 0;
}
.scroll-big-text {
    font-family: var(--font-bold);
    font-size: clamp(50px, 7vw, 100px);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    flex-shrink: 0;
}
.scroll-big-text.filled {
    color: #00c86f;
}
.scroll-big-text.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 200, 111, 0.5);
}
/* 푸터 하단: 초록 라인 + 기업정보 + 저작권 */
.footer {
    margin-top: -1px;
}
.footer-bottom {
    border-top: 1px solid #00c86f;
    padding: 40px 0 50px;
}
.footer-bottom .container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}
.company-info {
    margin-bottom: 15px;
}
.company-info p {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 19px;
    letter-spacing: -0.95px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.company-info p strong {
    font-family: 'GmarketSansMedium', sans-serif;
    font-weight: normal;
    color: #fff;
}
.company-info .bar {
    margin: 0 15px;
    color: #444;
    font-size: 16px;
}
.btn-biz-info {
    color: #888;
    text-decoration: none;
    margin-left: 8px;
    font-size: 16px;
    transition: color 0.3s;
}
.btn-biz-info:hover {
    color: #00c86f;
}
.copyright {
    font-family: 'GmarketSansLight', sans-serif;
    font-size: 19px;
    letter-spacing: -0.95px;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* ==========================================================================
   About Us 페이지
   ========================================================================== */
.about-hero {
    background: #fff;
    padding: 120px 20px 80px;
    text-align: center;
}
.about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about-logo {
    margin-bottom: 50px;
}
.about-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.about-catch {
    font-size: 60px;
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #222;
    line-height: 1.35;
    margin-bottom: 20px;
    letter-spacing: -3px;
}
.about-headline {
    font-size: 66px;
    font-family: 'GmarketSansBold';
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: -2px;
}
.about-desc {
    font-family: 'GmarketSansLight';
    font-size: 30px;
    color: #888;
    line-height: 1.7;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
}
.about-english {
    font-size: 45px;
    font-family: 'GmarketSansBold';
    font-weight: 800;
    color: #000;
    line-height: 1.4;
    letter-spacing: -1.35px;
}

/* About 스탯 카드 */
.about-stats {
    background: #fff;
    padding: 60px 20px 100px;
}
.about-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}
.about-stat-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.about-stat-number {
    font-size: 66px;
    font-family: 'GmarketSansBold';
    font-weight: 900;
    color: #00c86f;
    line-height: 1;
    letter-spacing: -2px;
}
.about-stat-unit {
    font-size: 52px;
    font-family: 'GmarketSansBold';
    color: #00c86f;
}
.about-stat-label {
    font-family: 'GmarketSansMedium';
    font-size: 24px;
    color: #888;
    font-weight: 500;
    letter-spacing: -1.2px;
}

/* About 초록 배경 섹션 */
.about-brand {
    background: #00c86f;
    padding: 100px 40px;
    overflow: hidden;
}
.about-brand-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
}
.about-brand-image {
    flex-shrink: 0;
    width: 440px;
    display: flex;
    align-items: center;
}
.about-brand-image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-brand-text {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-brand-title {
    font-size: 70px;
    color: #000;
    line-height: 1.2;
    letter-spacing: -3.5px;
    margin-bottom: 35px;
}
.about-brand-title .title-light {
    font-family: 'GmarketSansLight';
    font-weight: 300;
}
.about-brand-title .title-bold {
    font-family: 'GmarketSansBold';
    font-weight: 900;
}
.about-brand-title .brand-highlight {
    color: #fff;
    font-family: 'GmarketSansBold';
    font-weight: 900;
}
.about-brand-divider {
    font-family: 'LOTTERIACHAB';
    font-size: 8px;
    letter-spacing: 0.8px;
    color: #000;
    margin-bottom: 30px;
}
.about-brand-desc {
    font-size: 35px;
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}
.about-brand-tag {
    font-size: 35px;
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
    letter-spacing: -2.5px;
}
.about-brand-tag span {
    background: #000;
    padding: 5px 14px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* About 성공파트너 섹션 */
.about-partner {
    background: #f9f9f9;
    padding: 120px 40px 100px;
}
.about-partner-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding-left: 80px;
}
.partner-accent-line {
    width: 50px;
    height: 4px;
    background: #00c86f;
    margin-bottom: 30px;
}
.partner-title {
    font-size: 65px;
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 50px;
}
.partner-title .partner-light {
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #222;
}
.partner-title .partner-bold {
    font-family: 'GmarketSansBold';
    font-weight: 900;
    color: #000;
}
.partner-title .partner-green {
    font-family: 'GmarketSansBold';
    font-weight: 900;
    color: #00c86f;
}
.partner-underline-text {
    font-size: 41px;
    font-family: 'GmarketSansMedium';
    font-weight: 500;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}
.partner-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 40px;
}
.partner-desc {
    font-size: 34px;
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    letter-spacing: -0.85px;
    margin-bottom: 40px;
}
.partner-cta {
    font-size: 42px;
    font-family: 'GmarketSansMedium';
    font-weight: 500;
    color: #000;
    line-height: 1.6;
    letter-spacing: -1.05px;
    margin-bottom: 70px;
}

/* 성공파트너 하단 3개 아이콘 카드 */
.partner-features {
    display: flex;
    margin-left: -80px;
}
.partner-feature-card {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.partner-feature-card + .partner-feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    border-left: 1px dashed #ccc;
}
.partner-feature-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}
.partner-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partner-feature-label {
    font-size: 31px;
    font-family: 'GmarketSansLight';
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    letter-spacing: -0.93px;
}

/* 연락처 섹션 */
.about-contact {
    background: #f0f0f0;
}
.about-contact-image {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}
.about-contact-image img {
    width: 100%;
    display: block;
}
.about-contact-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}
.contact-row {
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}
.contact-row:last-child {
    border-bottom: none;
}
.contact-phone-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-badge {
    display: inline-block;
    background: #222;
    color: #fff;
    font-family: 'GmarketSansLight';
    font-size: 30px;
    padding: 7px 18px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.contact-tel {
    font-family: 'GmarketSansBold';
    font-size: 48px;
    color: #111;
    line-height: 1.35;
    margin: 0;
}
.contact-time {
    font-family: 'GmarketSansMedium';
    font-size: 17px;
    color: #666;
    margin-top: 14px;
}
.contact-right-qr {
    text-align: center;
    flex-shrink: 0;
    margin-left: 40px;
}
.contact-right-qr img {
    width: 160px;
    height: 160px;
    display: block;
    margin-bottom: 10px;
}
.contact-right-qr span {
    font-family: 'GmarketSansMedium';
    font-size: 15px;
    color: #666;
}
.contact-email {
    font-family: 'GmarketSansMedium';
    font-size: 28px;
    color: #333;
    margin: 0;
}
.contact-address {
    font-family: 'GmarketSansMedium';
    font-size: 24px;
    color: #333;
    margin: 0;
}

/* 서브 네비게이션 (ABOUT US / SERVICE) */
.sub-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 160px;
}
.sub-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 30px;
}
.sub-nav-link {
    font-family: 'GmarketSansMedium';
    font-size: 16px;
    color: #999;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.sub-nav-link:hover {
    color: #333;
}
.sub-nav-link.active {
    color: #000;
    font-family: 'GmarketSansBold';
    border-bottom: 2px solid #000;
}

/* ==========================================================================
   SERVICE 페이지
   ========================================================================== */

/* 서비스 히어로 */
.service-hero {
    background: #fff;
    padding: 100px 30px 80px;
    text-align: center;
}
.service-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.service-logo {
    margin-bottom: 40px;
}
.service-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.service-title {
    font-family: 'GmarketSansBold';
    font-size: 42px;
    color: #000;
    letter-spacing: -1px;
}

/* 서비스 아이템 */
.service-item {
    padding: 100px 30px;
}
.service-item-gray {
    background: #f5f5f5;
}
.service-item-white {
    background: #fff;
}
.service-item-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.service-item-text {
    flex: 4;
    text-align: left;
    padding: 0 20px;
}
.service-label {
    display: inline-block;
    font-family: 'GmarketSansMedium';
    font-size: 13px;
    color: #666;
    border: 1px solid #999;
    padding: 6px 16px;
    margin-bottom: 30px;
}
.service-item-title {
    font-family: 'GmarketSansMedium';
    font-size: 46px;
    color: #000;
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 35px;
}
.service-item-desc {
    font-family: 'GmarketSansMedium';
    font-size: 20px;
    color: #888;
    line-height: 1.8;
}
.service-item-image {
    flex: 6;
    overflow: hidden;
    border-radius: 8px;
}
.service-item-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.service-item-image + .service-item-text {
    padding-left: 40px;
}
.service-item-reverse {
    flex-direction: row-reverse;
}

/* 디자인 작업 프로세스 */
.service-process {
    background: #f0f0f0;
    text-align: center;
}
.service-process-image {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}
.service-process-image img {
    width: 100%;
    display: block;
}
.service-process-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}
.process-english {
    font-family: 'Lobster', cursive;
    font-style: normal;
    font-size: 50px;
    color: #000;
    margin-bottom: 10px;
}
.process-title {
    font-family: 'GmarketSansMedium';
    font-size: 65px;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.process-desc {
    font-family: 'GmarketSansLight';
    font-size: 30px;
    color: #888;
    margin-bottom: 50px;
}
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.process-step {
    flex: 1;
    text-align: center;
}
.step-badge {
    display: inline-block;
    font-family: 'Noto Sans KR';
    font-size: 28px;
    color: #555;
    background: #ddd;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.step-label {
    font-family: 'GmarketSansMedium';
    font-size: 28px;
    color: #333;
    line-height: 1.5;
}
.step-arrow {
    font-size: 20px;
    color: #bbb;
    flex-shrink: 0;
    margin-top: 10px;
}

/* ==========================================================================
   14. PC Responsive
   ========================================================================== */

/* 태블릿 (768px ~ 1099px) - 햄버거 메뉴 유지, 레이아웃 조정 */
@media (min-width: 768px) and (max-width: 1099px) {
    .container { padding: 0 30px; }
    .header { height: 70px; }
    .header-right { display: block; }
    #loginLinkDesktop { display: inline-block; }
    .btn-contact { display: inline-block; }
    .user-menu-wrapper-desktop { display: inline-block; }
    /* GNB는 여전히 슬라이드 메뉴 (햄버거) */
    .mobile-menu-btn { display: flex !important; }

    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-main { flex-direction: column; gap: 40px; }
    .footer-right { align-items: flex-start; }
    .footer-payment .payment-box { min-width: auto; width: 100%; }

    /* About 페이지 - 아이콘 3열 유지하되 margin 보정 */
    .partner-features {
        margin-left: 0;
        gap: 10px;
    }
    .partner-feature-icon {
        width: 120px;
        height: 120px;
    }
    .partner-feature-label {
        font-size: 22px;
    }

    /* 리뷰 카드 - 태블릿에서 2장 표시 */
    .reviews-section-cell {
        padding: 80px 0 60px 0 !important;
    }
    .reviews-header {
        font-size: 36px;
        letter-spacing: -1.5px;
        margin-bottom: 30px;
    }
    .review-card {
        flex: 0 0 calc(50% - 30px);
        margin: 0 15px;
        padding: 40px 30px;
    }
    .review-card.active {
        transform: scale(1.04);
    }
    .review-card-title {
        font-size: 22px;
    }
    .review-card-text {
        font-size: 15px;
        height: auto;
    }
}

/* 데스크탑 (1100px 이상) - GNB 가로 펼침 */
@media (min-width: 1100px) {
    .container { padding: 0 40px; }

    .header { height: 100px; }
    .header .container {
        justify-content: center;
        gap: 50px;
        padding-right: 280px;
    }
    .header .logo {
        position: static;
    }
    .header-right {
        display: flex !important;
        align-items: center;
        gap: 15px;
        position: absolute;
        right: 40px;
    }
    .gnb {
        position: static;
        width: auto;
        height: auto;
        max-width: none;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .gnb ul {
        display: flex;
        gap: 0;
        align-items: center;
    }
    .gnb ul li {
        margin: 0;
        display: flex;
        align-items: center;
    }
    .gnb ul li + li::before {
        content: '';
        display: inline-block;
        width: 2px;
        height: 14px;
        background: rgba(0, 0, 0, 0.3);
        margin: 0 25px;
        flex-shrink: 0;
    }
    .gnb ul li a {
        font-family: var(--font-main);
        font-size: 18px;
        font-weight: 500;
        color: #000;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    .gnb ul li a:hover {
        color: #000;
        transform: scale(1.05);
    }
    .btn-contact {
        padding: 14px 35px 12px 35px;
        font-size: 18px;
        border-radius: 40px;
        font-family: var(--font-main);
        font-weight: 500;
        line-height: 1;
    }
    .mobile-menu-btn { display: none; }
    .gnb-bottom-actions { display: none; }

    .main-title { font-size: 64px; }
    .main-subtitle { font-size: 20px; }
    .visual-header { height: 90vh; min-height: 800px; }
    .visual-title { font-size: 72px; }
    .visual-subtitle { font-size: 24px; }
    .visual-desc { font-size: 20px; }
    .section-title { font-size: 48px; }
    .intro-main { font-size: 36px; }
    .intro-sub { font-size: 24px; }

    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }

    .wing-banner {
        top: 50%;
        bottom: auto;
        right: 40px;
        transform: translateY(-50%);
        padding: 20px 15px;
    }

    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1200px) {
    .service-grid { grid-template-columns: repeat(4, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================================
   Subpage Common Layout
   ============================================================ */
.sub-header {
    padding: 150px 0 80px;
    text-align: center;
    background: #fff;
}

.sub-title-wrap {
    margin-bottom: 30px;
}

.sub-title {
    font-size: 80px;
    font-family: 'GmarketSansBold';
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sub-title span.point {
    color: #00c86f; /* 특정 글자 초록색 포인트 */
}

.sub-main-text {
    font-size: 32px;
    font-family: 'GmarketSansMedium';
    display: inline-block;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 15px;
    line-height: 0.9; /* 행간을 더 줄여서 글자 하단 여백을 강제로 제거 */
}

/* 텍스트 하단 초록색 밑줄 */
.sub-main-text::after {
    content: "";
    position: absolute;
    bottom: 0px; /* 글자 하단에 딱 맞추기 위해 0px로 조정 */
    left: 0;
    width: 100%;
    height: 5px; /* 줄 두께를 조금 더 두껍게 하여 이미지와 동일하게 처리 */
    background: #00c86f;
}

.sub-desc-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-family: 'GmarketSansMedium';
}

/* 서브페이지 카테고리 탭 (ALL, 뷰티 등) */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px; /* 60px에서 40px로 줄여서 그리드와 더 가깝게 수정 */
}

.sub-tab-btn {
    padding: 10px 30px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease;
}

.sub-tab-btn.active {
    background: #00c86f;
    border-color: #00c86f;
    color: #fff;
}

/* 연락처 정보 아이콘 스타일 (Contact Us 전용) */
.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: #f0faf5;
    border: 1px solid #e0f2eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 6px;
    font-family: 'GmarketSansMedium', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.info-text p {
    font-size: 16px;
    font-family: 'GmarketSansLight', sans-serif;
    color: #333;
    letter-spacing: -0.3px;
}

/* ============================================================
   Online Quote Section
   ============================================================ */
.quote-section-cell {
    background: #f8f8f8; /* 디자인안의 연한 그레이 배경 */
    padding: 100px 0;
    text-align: center;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* 이미지 영역 및 부드러운 흔들림 애니메이션 */
.quote-image-area {
    flex-shrink: 0;
}

.floating-img {
    width: 200px; /* 이미지 크기 적절히 조절 */
    height: auto;
    animation: gentle-shake 3s ease-in-out infinite; /* 부드러운 흔들림 효과 */
}

@keyframes gentle-shake {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-8px) rotate(-2deg); }
    50% { transform: translateY(0) rotate(2deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}

/* 텍스트 영역 */
.quote-text-area {
    text-align: left;
}

.quote-title {
    font-size: 54px;
    font-family: 'GmarketSansBold';
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    color: #000;
}

.quote-desc {
    font-size: 24px;
    font-family: 'GmarketSansMedium';
    color: #333;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* 견적 문의하기 버튼 */
.quote-btn {
    display: inline-block;
    background: #00c86f; /* 초록색 버튼 */
    color: #fff;
    font-family: 'GmarketSansMedium';
    font-size: 20px;
    padding: 22px 50px 18px 50px; /* 상단 패딩을 늘리고 하단을 줄여 텍스트를 박스 내에서 아래로 이동 */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 200, 111, 0.2);
    margin-top: 25px;
    line-height: 1; /* 행간 간섭 제거 */
}

.quote-btn:hover {
    background: #000; /* 마우스 오버 시 블랙으로 변경 */
    color: #fff;
    transform: translateY(-8px) scale(1.05); /* 위로 뜨면서 살짝 커지는 효과 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* 그림자도 블랙에 맞춰 강화 */
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section-cell {
    background: #fff;
    padding: 120px 0;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 48px;
    font-family: 'GmarketSansBold';
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.faq-list {
    border-top: 1px solid #ccc; /* 최상단 라인도 아래와 똑같이 연하고 슬림하게 */
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-header {
    padding: 20px 10px 16px 10px; /* 상하 여백을 아주 조금만(2px씩) 더 넓혀 가독성 확보 */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    line-height: 1; /* 폰트 행간 간섭 제거 */
}

.faq-q {
    font-family: 'GmarketSansMedium';
    font-size: 30px;
    margin-right: 25px;
    width: 35px;
    font-weight: 500;
    /* 인위적인 top 이동 제거하여 순수 중앙 정렬 */
}

.faq-question {
    font-size: 24px;
    font-family: 'GmarketSansMedium';
    font-weight: 500;
    flex: 1;
    color: #000;
    letter-spacing: -1px;
    /* 인위적인 top 이동 제거 */
}

.faq-icon {
    font-size: 26px;
    font-weight: 200;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #999; /* 아이콘도 조금 더 진하게 */
}

/* 아코디언 핵심: CSS Grid 방식으로 자연스럽게 열림 */
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
    opacity: 0;
}

.faq-body > .faq-content {
    overflow: hidden;
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-content {
    padding: 10px 10px 35px 65px;
    color: #666;
    font-size: 19px;
    line-height: 1.8;
}

.faq-item.active .faq-header {
    background: #f9f9f9;
}

/* 활성화 상태 스타일 */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + 가 x 로 변하며 회전 */
    color: #00c86f;
}

.faq-item.active .faq-header {
    background: #f9f9f9;
}

/* FAQ 하단 MORE 버튼 */
.faq-item.faq-hidden {
    display: none;
}
.faq-item.faq-show {
    animation: faqFadeIn 0.4s ease forwards;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-more-wrap {
    margin-top: 80px;
}

.faq-more-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
}

.faq-more-btn .plus-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.4s ease;
}

.faq-more-btn .more-text {
    font-family: 'GmarketSansBold';
    font-size: 15px;
    letter-spacing: 2px;
}

.faq-more-btn:hover .plus-icon {
    background: #00c86f;
    border-color: #00c86f;
    color: #fff;
    transform: rotate(180deg);
}

.faq-more-btn:hover .more-text {
    color: #00c86f;
}

/* ==========================================================================
   MOBILE RESPONSIVE (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

    /* ── 헤더 ── */
    .header {
        height: 60px;
    }
    .header .container {
        padding: 0 16px;
    }
    .header .logo {
        left: 16px;
    }
    .logo-img {
        max-height: 40px;
    }
    .header-right {
        right: 50px;
    }
    #loginLinkDesktop,
    .user-menu-wrapper-desktop,
    .btn-contact {
        display: none !important;
    }
    .mobile-menu-btn {
        position: absolute;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    .mobile-menu-btn span {
        height: 2px;
    }

    /* ── GNB 모바일 메뉴 ── */
    .gnb {
        max-width: 100%;
        padding: 80px 24px 40px;
    }
    .gnb ul li a {
        font-size: 18px;
    }

    /* ── 히어로 비디오 ── */
    .hero-video-section {
        min-height: 60vh;
    }
    .hero-overlay h2 {
        font-size: 28px;
    }
    .hero-overlay p {
        font-size: 14px;
    }

    /* ── 메인 타이틀 섹션 ── */
    .main-title-section {
        padding: 40px 16px;
    }
    .main-title {
        font-size: 32px !important;
    }
    .main-subtitle {
        font-size: 14px !important;
    }

    /* ── 서브 헤더 ── */
    .sub-header {
        padding: 100px 16px 50px;
    }
    .sub-title {
        font-size: 40px;
    }
    .sub-main-text {
        font-size: 20px;
        /* 데스크탑용 line-height:0.9는 한 줄 전제 — 모바일에서 두 줄로
           꺾이면 밑줄(::after)이 둘째 줄 글자를 관통하므로 여기서 복원 */
        line-height: 1.45;
        padding-bottom: 8px;
    }
    .sub-desc-text {
        font-size: 14px;
    }
    .sub-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .sub-tab-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* ── 서브 네비 ── */
    .sub-nav-inner {
        gap: 20px;
        padding-top: 100px;
    }
    .sub-nav-inner a {
        font-size: 16px;
    }

    /* ── About Us 페이지 ── */
    .about-hero {
        padding: 100px 16px 50px;
    }
    .about-logo img {
        max-width: 160px;
    }
    .about-catch {
        font-size: 30px;
        letter-spacing: -1.5px;
    }
    .about-headline {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .about-desc {
        font-size: 16px;
        letter-spacing: -0.5px;
    }
    .about-english {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .about-stats {
        padding: 40px 16px 60px;
    }
    .about-stats-inner {
        flex-direction: column;
        gap: 12px;
    }
    .about-stat-card {
        padding: 30px 20px;
    }
    .about-stat-number {
        font-size: 44px;
    }
    .about-stat-unit {
        font-size: 34px;
    }
    .about-stat-label {
        font-size: 16px;
    }

    /* About 브랜드 섹션 */
    .about-brand {
        padding: 50px 16px;
    }
    .about-brand-inner {
        flex-direction: column;
        gap: 30px;
    }
    .about-brand-text {
        padding: 0;
    }
    .about-brand-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }
    .about-brand-desc {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
    .about-brand-tag {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
    .about-brand-image {
        width: 100%;
    }
    .about-brand-image img {
        width: 100%;
    }

    /* About 파트너 섹션 */
    .partner-section {
        padding: 50px 16px;
    }
    .partner-title {
        font-size: 34px;
    }
    .partner-desc {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
    .partner-underline-text {
        font-size: 22px;
    }
    .partner-cta {
        font-size: 22px;
    }
    .partner-features {
        margin-left: 0;
        gap: 4px;
    }
    .partner-feature-card {
        padding: 0 4px;
    }
    .partner-feature-card + .partner-feature-card::before {
        display: none;
    }
    .partner-feature-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 10px;
    }
    .partner-feature-label {
        font-size: 13px;
        line-height: 1.4;
    }
    .contact-badge {
        font-size: 14px;
        padding: 6px 14px;
    }
    .about-contact-info {
        padding: 30px 20px 50px;
    }
    .contact-phone-row {
        flex-direction: column;
    }
    .contact-tel {
        font-size: 26px;
    }
    .contact-time {
        font-size: 13px;
    }
    .contact-right-qr {
        margin-left: 0;
        margin-top: 20px;
    }
    .contact-right-qr img {
        width: 120px;
        height: 120px;
    }
    .contact-email {
        font-size: 16px;
    }
    .contact-address {
        font-size: 16px;
    }

    /* ── 포트폴리오 모달 (라이트박스) ── */
    .modal-content-wrapper {
        max-width: 95%;
    }
    .modal-close {
        right: 0;
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .modal-nav {
        width: 100%;
        left: 0;
        transform: translateY(-50%);
    }
    .modal-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    /* ── Service 페이지 ── */
    .service-item-inner {
        flex-direction: column;
        gap: 24px;
    }
    .service-item-text {
        flex: none;
        width: 100%;
        padding: 0 16px;
        text-align: center;
    }
    .service-item-image + .service-item-text {
        padding-left: 16px;
    }
    .service-item-image {
        flex: none;
        width: 100%;
    }
    .service-item-title {
        font-size: 28px;
    }
    .service-label {
        font-size: 11px;
    }
    .service-item-desc {
        font-size: 15px;
    }
    .service-logo img {
        max-width: 160px;
    }

    /* 디자인 프로세스 */
    .process-section {
        padding: 50px 16px;
    }
    .process-english {
        font-size: 28px;
    }
    .process-title {
        font-size: 32px;
    }
    .process-desc {
        font-size: 16px;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .step-card {
        width: 100%;
        max-width: 250px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }
    .step-badge {
        font-size: 20px;
    }
    .step-label {
        font-size: 20px;
    }

    /* ── 포트폴리오 섹션 ── */
    .portfolio-section-cell {
        padding: 60px 0 !important;
    }
    .portfolio-header {
        margin-bottom: 30px;
    }
    .portfolio-title {
        font-size: 36px;
    }
    .portfolio-subtitle {
        font-size: 14px;
    }
    .portfolio-grid,
    .portfolio-grid.infinite {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 12px !important;
    }
    .portfolio-grid.landscape {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* ── 통계 섹션 (초록배경) ── */
    .stats-section-cell {
        padding: 60px 0 !important;
    }
    .stats-header {
        margin-bottom: 40px;
    }
    .stats-title {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .stats-subtitle {
        font-size: 14px;
    }
    .stats-grid {
        flex-direction: column;
        gap: 0;
    }
    .stat-item {
        padding: 24px 20px;
    }
    .stat-num {
        font-size: 48px;
        margin-bottom: 12px;
    }
    .stat-label {
        font-size: 16px;
        min-width: 160px;
        height: 48px;
        padding: 2px 20px 0;
    }

    /* ── 서비스 그리드 ── */
    .service-grid {
        grid-template-columns: 1fr !important;
    }

    /* ── Why 그리드 ── */
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* ── 견적문의 섹션 ── */
    .quote-section-cell {
        padding: 60px 16px;
    }
    .quote-content-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .quote-text-area {
        text-align: center;
    }
    .quote-title {
        font-size: 30px;
    }
    .quote-desc {
        font-size: 16px;
    }
    .quote-btn {
        font-size: 16px;
        padding: 16px 36px;
    }
    .floating-img {
        width: 120px;
    }

    /* ── FAQ 섹션 ── */
    .faq-section-cell {
        padding: 60px 16px;
    }
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .faq-header {
        padding: 16px 8px 14px;
    }
    .faq-q {
        font-size: 20px;
        margin-right: 12px;
        width: 28px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-content {
        padding: 8px 8px 24px 44px;
        font-size: 14px;
    }

    /* ── 푸터 메인 영역 ── */
    .footer .container {
        padding: 0 16px;
    }
    .footer-main {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }
    .footer-left {
        width: 100%;
    }
    .footer-logo {
        margin-bottom: 24px;
    }
    .footer-logo img {
        height: 80px;
    }
    .footer-slogan {
        margin-bottom: 30px;
    }
    .footer-slogan p {
        font-size: 16px;
    }
    .footer-contact h4 {
        font-size: 16px;
    }
    .footer-contact .tel {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .footer-contact .contact-detail p {
        font-size: 14px;
    }

    .footer-right {
        width: 100%;
        align-items: flex-start;
    }
    .footer-menu {
        margin-bottom: 30px;
    }
    .footer-menu ul {
        text-align: left;
    }
    .footer-menu ul li {
        margin-bottom: 10px;
    }
    .footer-menu ul li a {
        font-size: 16px;
    }
    .footer-qr {
        margin-bottom: 30px;
    }
    .qr-image {
        width: 80px;
        height: 80px;
    }
    .qr-info h4 {
        font-size: 15px;
    }
    .qr-info p {
        font-size: 13px;
    }
    .footer-payment .payment-box {
        min-width: auto;
        width: 100%;
        padding: 24px 20px;
    }
    .footer-payment h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .footer-payment .bank-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* ── 푸터 하단 ── */
    .footer-bottom {
        padding: 24px 16px 30px;
    }
    .company-info p {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
    .company-info .bar {
        display: none;
    }
    .copyright {
        font-size: 12px;
    }

    /* ── 연락처 정보 ── */
    .contact-info-grid {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    /* ── 스크롤링 텍스트 ── */
    .scroll-big-text {
        font-size: 36px;
        letter-spacing: -1px;
    }

    /* ── 프라이싱 섹션 ── */
    .pricing-section-cell {
        padding: 60px 0 !important;
    }
    .pricing-header {
        margin-bottom: 30px;
    }
    .pricing-title {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .pricing-tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    .tab-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 16px;
    }
    .price-card {
        padding: 36px 24px;
        border-radius: 18px;
    }

    /* ── 리뷰/후기 카드 섹션 ── */
    .reviews-section-cell {
        padding: 60px 0 40px 0 !important;
    }
    .reviews-header {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    .reviews-carousel-container {
        padding: 16px 0;
    }
    .review-card {
        flex: 0 0 calc(85% - 20px);
        margin: 0 10px;
        padding: 30px 24px;
        border-radius: 16px;
    }
    .review-card::before {
        font-size: 50px;
        top: 4px;
        left: 16px;
    }
    .review-card.active {
        transform: scale(1.02);
    }
    .review-card-title {
        font-size: 18px;
    }
    .review-card-text {
        font-size: 13px;
    }

    /* ── 메인 테이블 레이아웃 → 블록 변환 ── */
    table#__01,
    table#__01 tbody,
    table#__01 tr,
    table#__01 td {
        display: block !important;
        width: 100% !important;
    }
    table#__01 td img {
        width: 100% !important;
        height: auto !important;
    }
    /* 포트폴리오 썸네일은 칸을 꽉 채워야 함 (위 height:auto가 cover를 깨는 것 방지) */
    table#__01 .portfolio-item img {
        height: 100% !important;
    }
    /* 스페이서 GIF 숨기기 */
    table#__01 img[width="1"] {
        display: none !important;
    }
    table#__01 td:not([class]) {
        padding: 0 !important;
        height: 0 !important;
        overflow: hidden;
    }

    /* 메인 타이틀 셀 */
    .main-title-cell {
        padding: 30px 16px 10px !important;
        text-align: left !important;
        width: 100% !important;
    }
    .main-title-section {
        max-width: 100%;
        height: auto !important;
        padding: 0;
        display: block;
    }
    .text-carousel {
        padding-top: 0;
        height: auto !important;
        position: relative;
    }
    /* 모바일: 비활성 슬라이드 완전 숨김 (공간 차지 방지) */
    .text-slide {
        display: none !important;
    }
    .text-slide.active {
        display: block !important;
        position: relative !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .main-title {
        font-size: 30px !important;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    .main-subtitle {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    .btn-detail {
        font-size: 14px;
        padding: 12px 28px;
        border-radius: 30px;
    }

    /* 메인 이미지 셀 */
    .main-image-cell {
        padding: 0 16px 20px !important;
        text-align: center !important;
        width: 100% !important;
    }
    .main-image-wrapper {
        padding-top: 0;
        justify-content: center;
    }
    .image-carousel {
        max-width: 100%;
    }
    .carousel-dots {
        margin-top: 16px;
    }
    /* 이미지(1097x852) 비율에 맞춰 높이 자동 계산 — 고정 380px는
       td img height:auto 오버라이드와 만나 하단 빈 공간을 만들었음 */
    .carousel-images {
        height: auto;
        aspect-ratio: 1097 / 852;
    }
    .carousel-images .carousel-img {
        height: 100% !important;
    }

    /* ── Wing Banner (모바일 섹션 - 메인 스타일에서 처리) ── */

    /* ── 마이페이지 ── */
    .mypage-header .container {
        padding: 0 16px;
    }
    .mypage-header .header-actions a {
        font-size: 12px;
        padding: 6px 12px;
    }
    .mypage-header .header-actions button {
        font-size: 12px;
        padding: 6px 12px;
    }
}
