
/* ═══════════════════════════════

RESET & VARIABLES

═══════════════════════════════ */

:root {

--green: #2D5A27;

--green2: #3A7832;

--green-dk: #1e3d1a;

--green-lt: #E8F0E4;

--green-mid: #B8D4A8;

--gold: #B8960C;

--gold2: #A07C08;

--cream: #F5F0E8;

--cream2: #EDE8DF;

--dark: #1A1A14;

--gray: #6B7280;

--lgray: #F3F4F0;

--white: #FFFFFF;

--border: #D8D4C8;

--shadow: 0 4px 20px rgba(0,0,0,0.09);

--shadow-lg: 0 12px 40px rgba(0,0,0,0.14);

}

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

html { scroll-behavior: smooth; }

body {

font-family: 'Noto Sans KR', 'DM Sans', sans-serif;

background: #faf8f5;

color: var(--dark);

font-size: 15px;

line-height: 1.6;

overflow-x: hidden;

}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

button { cursor: pointer; font-family: inherit; }



/* ═══════════════════════════════

LEFT SOCIAL SIDEBAR

═══════════════════════════════ */

.social-sidebar {

position: fixed; left: 0; top: 50%; transform: translateY(-50%);

z-index: 200; display: flex; flex-direction: column;

background: var(--white);

border-right: 1px solid var(--border);

box-shadow: 2px 0 12px rgba(0,0,0,0.06);

}

.social-btn {

width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;

font-size: 18px; color: var(--gray); border-bottom: 1px solid var(--border);

transition: all .2s; text-decoration: none;

}

.social-btn:last-child { border-bottom: none; }

.social-btn:hover { background: var(--green-lt); color: var(--green); }



/* ═══════════════════════════════

NAVIGATION

═══════════════════════════════ */

.nav-logo {

display: flex; align-items: center; gap: 10px;

margin-right: 48px; flex-shrink: 0;

}

.nav-logo-mark {

width: 40px; height: 40px; border: 2px solid var(--gold);

display: flex; align-items: center; justify-content: center;

font-family: 'DM Serif Display', serif;

font-size: 22px; color: var(--gold); border-radius: 2px;

}

.nav-logo-text { line-height: 1.2; }

.nav-logo-name {

font-size: 18px; font-weight: 700; color: var(--green);

font-family: 'DM Sans', sans-serif;

}

.nav-logo-sub { font-size: 10px; color: var(--gray); letter-spacing: 0.03em; }




/* ═══════════════════════════════

HERO — 2컬럼

═══════════════════════════════ */

.hero-wrap {

display: grid; grid-template-columns: 1fr 1fr;

min-height: 420px;

margin-left: 46px; /* 소셜 사이드바 폭 */

}



/* 좌측: 음식 사진 + 텍스트 오버레이 */

.hero-left {

position: relative; overflow: hidden;

background: var(--cream2);

}

.hero-left-img {

position: absolute; inset: 0;

/* ★ 실제 구현: src="assets/hero-food.jpg" */

background: linear-gradient(135deg, #c8b89a 0%, #a89070 40%, #8a6040 70%, #5a3020 100%);

background-size: cover; background-position: center;

}

/* 음식 사진 위에 올라오는 텍스트 영역 */

.hero-left-overlay {

position: absolute; inset: 0;

background: linear-gradient(to right, rgba(245,240,232,0.94) 0%, rgba(245,240,232,0.75) 50%, transparent 100%);

}

.hero-left-content {

position: relative; z-index: 2;

padding: 52px 40px;

display: flex; flex-direction: column; justify-content: center;

min-height: 420px;

}

.hero-headline {

font-size: 46px; font-weight: 900;

color: var(--green); line-height: 1.15;

margin-bottom: 18px;

font-family: 'Noto Sans KR', sans-serif;

}

.hero-sub {

font-size: 14px; color: var(--dark); line-height: 1.7;

margin-bottom: 8px;

}

.hero-sub-en { font-size: 12px; color: var(--gray); margin-bottom: 28px; }

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start; /* 좌측 정렬 유지 */
}

.hero-btns a {
    /* [핵심] 글자가 긴 버튼에 맞춰 최소 너비를 고정합니다. */
    /* 현재 텍스트 기준으로 190px~200px 정도가 가장 적당합니다. */
    min-width: 200px; 
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* 기존 스타일 유지 */
    padding: 11px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s;
}

.btn-green {

display: inline-flex; align-items: center; gap: 6px;

background: var(--green); color: var(--white);

padding: 11px 22px; border-radius: 5px;

font-size: 13px; font-weight: 700; border: none;

transition: all .2s;

}

.btn-green:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45,90,39,0.3); }

.btn-outline-green {

display: inline-flex; align-items: center; gap: 6px;

background: transparent; color: var(--green);

padding: 11px 22px; border-radius: 5px;

font-size: 13px; font-weight: 700;

border: 2px solid var(--green);

transition: all .2s;

}

.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-outline-white {

display: inline-flex; align-items: center; gap: 6px;

background: transparent; color: var(--white);

padding: 11px 22px; border-radius: 5px;

font-size: 13px; font-weight: 700;

border: 2px solid var(--white);

transition: all .2s;

}

.btn-outline-white:hover { background: var(--green); color: var(--white); }

/* 우측: FoodTech 패널 */

.hero-right {
    height: 100% !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center; /* 내용물 세로 중앙 정렬 */
    margin: 0 !important;   /* 혹시 모를 마진 제거 */
    border-radius: 0;       /* 만약 꽉 차게 할 때 모서리 둥근게 거슬린다면 */
    background: var(--green-dk);
	position: relative; 
	overflow: hidden;
	padding: 36px 32px 32px;
	display: flex; 
	flex-direction: column;
}
 
.hero-right-bg {

position: absolute; inset: 0;

background: radial-gradient(ellipse at 80% 20%, rgba(100,180,80,0.12) 0%, transparent 60%),

radial-gradient(ellipse at 20% 80%, rgba(60,140,50,0.08) 0%, transparent 50%);

pointer-events: none;

}

.hero-right-title {

font-size: 24px; font-weight: 900; color: var(--white);

line-height: 1.3; margin-bottom: 6px; position: relative; z-index: 1;

}

.hero-right-title em { color: #A8D880; font-style: normal; }

.hero-right-sub {

font-size: 13px; color: rgba(255,255,255,0.60);

margin-bottom: 22px; position: relative; z-index: 1;

}

.hero-right-btns {

display: flex; flex-direction: column; gap: 10px;

margin-bottom: 24px; position: relative; z-index: 1;

}

.btn-green-solid {

background: #4CAF50; color: var(--white); border: none;

padding: 11px 20px; border-radius: 5px;

font-size: 13px; font-weight: 700; text-align: left;

transition: all .2s;

}

.btn-green-solid:hover { background: #3d9140; }

.btn-ghost {

background: rgba(255,255,255,0.10); color: var(--white);

border: 1px solid rgba(255,255,255,0.25);

padding: 11px 20px; border-radius: 5px;

font-size: 13px; font-weight: 600; text-align: left;

transition: all .2s;

}

.btn-ghost:hover { background: rgba(255,255,255,0.18); }



/* 이소메트릭 다이어그램 영역 */

.iso-diagram {

position: relative; z-index: 1;

background: rgba(255,255,255,0.04);

border: 1px solid rgba(255,255,255,0.10);

border-radius: 10px; padding: 14px;

flex: 1;

}

.iso-steps { display: flex; flex-direction: column; gap: 8px; }

.iso-step {

display: flex; align-items: flex-start; gap: 10px;

}

.iso-badge {

width: 56px; flex-shrink: 0;

background: rgba(76,175,80,0.20); border: 1px solid rgba(76,175,80,0.30);

border-radius: 6px; padding: 4px 8px;

font-size: 10px; font-weight: 700; color: #A8D880;

text-align: center; white-space: nowrap;

}

.iso-content { flex: 1; }

.iso-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.90); }

.iso-desc { font-size: 10px; color: rgba(255,255,255,0.50); line-height: 1.4; }



/* ═══════════════════════════════

섹션 2: 키오스크 + 세계지도

═══════════════════════════════ */

.kiosk-section {

padding: 56px 48px 48px;

margin-left: 46px;

background: var(--cream);

}

.kiosk-headline {

text-align: center; font-size: 28px; font-weight: 900;

color: var(--dark); margin-bottom: 40px;

}

.kiosk-grid {

display: grid; grid-template-columns: 220px 1fr 260px;

gap: 32px; align-items: start;

}



/* 키오스크 일러스트 */

.kiosk-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }

.kiosk-screen-wrap {

background: #222; border-radius: 10px 10px 0 0;

padding: 8px; width: 140px;

box-shadow: 0 8px 24px rgba(0,0,0,0.3);

}

.kiosk-screen {

background: #2a6e2a; border-radius: 6px; padding: 10px;

min-height: 140px;

}

.kiosk-screen-title { font-size: 9px; font-weight: 800; color: var(--white); text-align: center; margin-bottom: 6px; }

.kiosk-items { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

.kiosk-item {

background: rgba(255,255,255,0.12); border-radius: 3px;

font-size: 10px; color: var(--white); text-align: center; padding: 4px 2px;

}

.kiosk-slide-tag {

display: inline-block; background: #fff; color: var(--green);

font-size: 9px; font-weight: 700; padding: 2px 8px;

border-radius: 10px; margin-top: 5px;

}

.kiosk-stand { width: 8px; height: 48px; background: #333; margin: 0 auto; }

.kiosk-base { width: 60px; height: 6px; background: #333; border-radius: 3px; margin: 0 auto; }

/* 식재료 아이콘 행 */

.ingredients-row {

display: flex; gap: 10px; align-items: center; margin-top: 20px;

flex-wrap: wrap; justify-content: center;

}

.ing-icon { font-size: 28px; }

/* 로봇 */

.robot-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 8px; }

.robot-body {

width: 60px; background: #e0e0e0; border-radius: 10px;

padding: 8px 6px; text-align: center;

}

.robot-head {

width: 44px; height: 32px; background: #cacaca; border-radius: 8px;

margin: 0 auto 5px; display: flex; align-items: center; justify-content: center; gap: 5px;

}

.robot-eye { width: 10px; height: 10px; border-radius: 50%; background: #4CAF50; }

.robot-tray { width: 50px; height: 6px; background: #aaa; border-radius: 3px; margin: 4px auto 0; }



/* 세계 지도 영역 */

.world-section { text-align: center; }

.world-map-area {

background: #e8f0e4; border-radius: 12px;

padding: 20px 16px; margin-bottom: 20px;

position: relative; min-height: 140px;

display: flex; flex-direction: column; align-items: center; justify-content: center;

}

/* SVG 세계 지도 간략 표현 */

.world-map-svg { width: 100%; max-width: 280px; }

.map-pins { display: flex; gap: 16px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }

.map-pin { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.pin-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--green); }

.pin-dot.coming { background: #f5a623; box-shadow: 0 0 0 2px #f5a623; }

.pin-label {

font-size: 10px; font-weight: 700; color: var(--green);

background: var(--white); padding: 2px 8px; border-radius: 10px;

border: 1px solid var(--green-mid); white-space: nowrap;

}

.pin-label.coming { color: #f5a623; border-color: #f5a623; }

.global-vision {

font-size: 12px; color: var(--dark); text-align: center;

margin-bottom: 16px; line-height: 1.6;

background: #fff8e8; border: 1px solid #e8d8a0;

border-radius: 8px; padding: 10px 14px;

}

.kfoodzone-btn {

width: 100%; background: var(--green); color: var(--white);

border: none; padding: 12px; border-radius: 6px;

font-size: 13px; font-weight: 700; transition: all .2s;

}

.kfoodzone-btn:hover { background: var(--green2); }



/* 우측 피처 리스트 */

.features-list { display: flex; flex-direction: column; gap: 12px; }

/* 1. 기본 상태: 움직임에 대한 전이 효과 설정 */
.feature-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    /* [추가] 화이트 배경에서도 구분이 잘 가도록 테두리 선 삽입 */
    border: 1px solid var(--border) !important; 
}
/* 2. 마우스를 올렸을 때 (Hover): 우측으로 6px 이동 + 그림자 강조 */
.feature-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    border-color: var(--green) !important; /* 테두리 색상 변경 (옵션) */
}

/* 3. 클릭했을 때 (Active): 살짝 눌리는 느낌이나 더 오른쪽으로 이동 */
.feature-item:active {
    transform: translateX(2px); /* 클릭 시 살짝 들어가는 느낌 */
    filter: brightness(0.95);    /* 살짝 어두워지며 클릭 반응 */
}

.feat-icon-wrap {

width: 36px; height: 36px; border-radius: 50%;

border: 2px solid var(--border);

display: flex; align-items: center; justify-content: center;

font-size: 16px; flex-shrink: 0;

}

.feat-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }

.feat-desc { font-size: 11px; color: var(--gray); line-height: 1.4; }



/* ═══════════════════════════════

섹션 3: 우측 K-Market (원본 우측 패널)

→ 전체 폭 레이아웃으로 표현

═══════════════════════════════ */

.kmarket-section {

background: var(--white);

padding: 52px 48px;

margin-left: 46px;

}

.kmarket-title {

text-align: center; font-size: 26px; font-weight: 900;

color: var(--dark); margin-bottom: 36px;

}

.kmarket-grid {

display: grid; grid-template-columns: repeat(3, 1fr);

gap: 20px; margin-bottom: 24px;

}

.kmarket-card {

border: 1px solid var(--border); border-radius: 12px; overflow: hidden;

transition: all .22s; background: var(--white);

}

.kmarket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.kmarket-img {

height: 130px; display: flex; align-items: center; justify-content: center;

font-size: 56px;

/* ★ 실제: background-image url 교체 */

}

.kmarket-img.seaweed { background: linear-gradient(135deg, #1a3a1a, #2d5a27); }

.kmarket-img.beauty { background: linear-gradient(135deg, #f8e8f0, #f0d0e0); }

.kmarket-img.amenity { background: linear-gradient(135deg, #f0ede8, #e0d8cc); }

.kmarket-body { padding: 14px 16px; }

.kmarket-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }

.kmarket-btns { display: flex; gap: 6px; }

.kmarket-btn {

flex: 1; padding: 7px 8px; border-radius: 5px;

font-size: 11px; font-weight: 600;

display: flex; align-items: center; justify-content: center; gap: 4px;

border: 1px solid var(--border); background: var(--white);

color: var(--dark); transition: all .2s; cursor: pointer;

}

.kmarket-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }



.kmarket-desc {

text-align: center; font-size: 13px; color: var(--gray);

line-height: 1.7; margin-bottom: 20px;

padding: 0 60px;

}

.kmarket-cta {

display: block; margin: 0 auto;

background: var(--green); color: var(--white); border: none;

padding: 13px 36px; border-radius: 6px;

font-size: 14px; font-weight: 700;

transition: all .2s;

}

.kmarket-cta:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,90,39,0.3); }



/* ═══════════════════════════════

FOOTER

═══════════════════════════════ */

footer {

background: var(--green-dk);

/* padding: 40px 48px 24px;

margin-left: 46px; */

}

.footer-grid {

display: grid; grid-template-columns: 1.2fr 1.2fr 1.2fr 0.8fr 0.8fr;

gap: 32px; margin-bottom: 32px;

}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {

display: flex; align-items: center; gap: 10px;

}

.footer-logo-mark {

width: 44px; height: 44px; border: 2px solid var(--gold);

display: flex; align-items: center; justify-content: center;

font-family: 'DM Serif Display', serif;

font-size: 24px; color: var(--gold); border-radius: 2px;

background: rgba(255,255,255,0.05);

}

.footer-logo-name { font-size: 16px; font-weight: 700; color: var(--white); }

.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }

.footer-col p, .footer-col a {

font-size: 12px; color: rgba(255,255,255,0.60); line-height: 1.9;

display: block;

}

.footer-col a:hover { color: #A8D880; }

.footer-social { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.footer-social a {

display: flex; align-items: center; gap: 8px;

font-size: 12px; color: rgba(255,255,255,0.60);

transition: color .2s;

}

.footer-social a:hover { color: #A8D880; }

.social-platform {

width: 28px; height: 28px; border-radius: 6px;

background: rgba(255,255,255,0.08);

display: flex; align-items: center; justify-content: center; font-size: 14px;

}

.footer-bottom {

border-top: 1px solid rgba(255,255,255,0.10);

padding-top: 18px;

display: flex; justify-content: space-between; align-items: center;

flex-wrap: wrap; gap: 8px;

}

.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.30); }

.footer-bottom-right { display: flex; gap: 16px; }

.footer-bottom-right a { font-size: 11px; color: rgba(255,255,255,0.30); }

.footer-bottom-right a:hover { color: rgba(255,255,255,0.60); }



/* ═══════════════════════════════

ANIMATIONS

═══════════════════════════════ */

@keyframes fadeInUp {

from { opacity: 0; transform: translateY(20px); }

to { opacity: 1; transform: translateY(0); }

}

.hero-left-content > * { animation: fadeInUp .7s ease both; }

.hero-headline { animation-delay: .1s; }

.hero-sub { animation-delay: .2s; }

.hero-sub-en { animation-delay: .25s; }

.hero-btns { animation-delay: .35s; }



.reveal {
    opacity: 1; /* 0에서 1로 변경 */
    transform: translateY(0); /* 이동 효과 제거 */
}

.reveal.in { opacity: 1; transform: translateY(0); }



/* ═══════════════════════════════

RESPONSIVE

═══════════════════════════════ */

@media (max-width: 900px) {

.hero-wrap { grid-template-columns: 1fr; margin-left: 0; }

.social-sidebar { display: none; }

.kiosk-section, .kmarket-section, footer { margin-left: 0; }

nav { padding: 0 16px; }

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

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

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

.hero-headline { font-size: 32px; }

}

/* PC에서는 숨김 */
.mobile-menu-btn { display: none; }
.mobile-overlay { display: none; }

@media (max-width: 900px) {
    /* PC용 메뉴 숨기기 */
    .pc-only { display: none !important; }

    /* 햄버거 버튼 보이기 */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        font-size: 28px;
        margin-left: auto;
        cursor: pointer;
        color: var(--green);
    }

    /* 모바일 오버레이 메뉴 스타일 */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0; left: 100%; /* 처음엔 화면 밖에 위치 */
        width: 100%; height: 100%;
        background: var(--white);
        z-index: 999;
        transition: left 0.3s ease;
        padding: 40px 24px;
    }

    .mobile-overlay.active { left: 0; } /* 열렸을 때 위치 */

    .close-btn {
        font-size: 30px;
        text-align: right;
        margin-bottom: 30px;
        color: var(--gray);
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-nav-list a {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
    }
}

/* "Top" 버튼 스타일 */
#topBtn {
    display: none; /* 기본적으로 숨김 */
	position: fixed; /* 스크롤과 상관없이 고정 위치 */
	bottom: 70px; /* 화면 아래에서 20px 위치 */
	right: 15px; /* 화면 오른쪽에서 30px 위치 */
	z-index: 99; /* 다른 요소보다 위에 위치 */
	width: 40px; /* 버튼 너비 */
	height: 40px; /* 버튼 높이 */
	border: none; /* 테두리 제거 */
	outline: none; /* 아웃라인 제거 */
	background-color: #069cdf; /* 버튼 배경색 */
	color: white; /* 버튼 글자색 */
	cursor: pointer; /* 마우스 포인터 모양 변경 */
	border-radius: 50%; /* 원형 버튼 */
	display: flex; /* 플렉스 박스 사용 */
	align-items: center; /* 아이템 수직 중앙 정렬 */
	justify-content: center; /* 아이템 수평 중앙 정렬 */
}

#topBtn:hover {
    background-color: #069cdf; /* 호버 시 배경색 */
}

/* 화살표 아이콘 스타일 */
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid white;
    margin-bottom: 4px; /* 아이콘을 가운데로 맞추기 위해 약간의 여백 추가 */
      }
      
      @media ( min-width : 1000px) {
		 #topBtn {
			 bottom: 20px;
		}
		 
}

 
#world-map { width: 100%; height: 350px; position: relative; }     
/* [1. 박스 스타일] 클래스 중첩과 !important로 우선순위 최상위 확보 */
div.jvm-marker-label {
    display: inline-block !important;
    padding: 5px 10px !important;
    background-color: #ffffff !important;
    border: 2px solid #2d5a27 !important;
    border-radius: 6px !important;
    color: #2d5a27 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1) !important;
    white-space: nowrap !important;
}

/* [2. 툴팁 스타일] */
.jvm-tooltip {
    background: #333333 !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-family: 'Pretendard', sans-serif !important;
    line-height: 1.4 !important;
    border: none !important;
}
/* [추가] 지도 배경에 고정될 커스텀 텍스트 스타일 */
.map-static-label {
    position: absolute;
    pointer-events: none; /* 지도 클릭 방해 금지 */
    font-family: 'Pretendard', sans-serif;
    color: #2d5a27;
    font-weight: 700;
    opacity: 0.15; /* 배경처럼 보이게 투명도 조절 */
    z-index: 1;
}

.label-global { top: 10%; left: 5%; font-size: 4rem; }
.label-vision { bottom: 10%; right: 5%; font-size: 2rem; }

/* PC용 기본 설정 */
.main-hero-bg {
    background-image: url('/static/home/assets/img/back.png');
    background-size: cover;      /* PC는 꽉 차게 배경으로 깔림 */
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .main-hero-bg {
        background-image: url('/static/home/assets/img/backM2.png') !important;
        
        /* [해결책] 박스의 가로세로를 강제로 꽉 채웁니다 */
        background-size: 100% 85% !important; 
        
        /* 또는 이미지가 약간 잘려도 좋으니 빈틈없이 채우고 싶다면 아래를 쓰세요 */
        /* background-size: cover !important; */
        
        background-position: center !important;
        
        /* 화면 높이에 따라 이미지가 너무 찌그러져 보인다면 높이를 고정하세요 */
        min-height: 350px; 
    }
}

.map-wrapper {
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
    background-color: #ffffff; 
    border-radius: 20px; 
    padding: 20px; 
    /* [추가] 지도 영역에도 동일한 테두리 선 삽입 */
    border: 1px solid var(--border); 
}

@media (max-width: 1024px) {
    /* 지도 컨테이너 자체의 터치 동작을 수직 스크롤로 고정 */
    #world-map {
        touch-action: pan-y !important;
    }

    /* jsVectorMap이 생성하는 모든 내부 요소들의 터치 간섭 차단 */
    #world-map svg, 
    #world-map .jvm-container,
    #world-map .jvm-canvas {
        touch-action: pan-y !important;
        pointer-events: auto !important; /* 마커 클릭은 유지 */
    }
}
 
/* 1. 이미지 컨테이너의 틀을 32:21 비율로 강제 고정 */
.hover-scale-in.position-relative {
    display: block !important;
    width: 100% !important;
    /* 요청하신 496:325 비율을 계산한 퍼센트(약 65.5%)로 높이를 확보 */
    height: 0 !important;
    padding-bottom: 65.524% !important; 
    overflow: hidden !important;
    position: relative !important;
}

/* 2. 내부 이미지를 위에서 만든 틀에 강제로 박아넣기 */
.hover-scale-in.position-relative img.img-fluid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important; /* height: auto를 완전히 무시함 */
    object-fit: cover !important; /* 비율 유지하며 꽉 채움 */
    margin: 0 !important;
}

/* 3. 호버 시 이미지 확대 효과 유지 */
.hover-scale-in.position-relative:hover img.img-fluid {
    transform: scale(1.1) !important;
}

/* ═══════════════════════════════════════
   HERO — 실제 매장 사진 배경
   ═══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  height: 560px;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('홈피_매장_디자인__.png') center/cover no-repeat;
  transform-origin: center;
  transition: transform 8s ease;
}
.hero-bg.zoomed { transform: scale(1.04); }

/* 좌측 브랜딩 그라디언트 오버레이 */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,35,15,0.82) 0%, rgba(20,35,15,0.55) 45%, rgba(20,35,15,0.10) 75%, transparent 100%),
    linear-gradient(to top, rgba(10,20,8,0.65) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 56px;
  max-width: 620px;
}
/* 페이지 배지 */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #7EC87E; }
.hero-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-title em { color: #A8D8A0; font-style: normal; display: block; }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.78);
  line-height: 1.65; margin-bottom: 10px;
}
.hero-sub-en { font-size: 13px; color: rgba(255,255,255,0.50); margin-bottom: 32px; }

/* 히어로 하단 피처 카드 3개 (오버랩 구조) */
.hero-features {
  position: absolute; bottom: 0; left: 48px; right: 48px; z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1000px; margin: 0 auto;
  transform: translateY(50%);
  gap: 12px;
}
.feat-card {
  background: #fff;
  border-radius: 12px; padding: 20px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.feat-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.feat-desc { font-size: 11px; color: var(--gray); line-height: 1.4; }

/* ═══════════════════════════════════════
   SECTION COMMON EXTENSION
   ═══════════════════════════════════════ */
.section { padding: 100px 48px 80px; }
.section-sm { padding: 72px 48px 64px; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid var(--green-mid); background: var(--green-lt);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-tag.white { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.10); }
.section-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 36px; font-weight: 900; color: var(--dark);
  line-height: 1.25; margin-bottom: 14px;
}
.section-title.white { color: #fff; }
.section-title em { color: var(--green); font-style: normal; }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 560px; }
.section-sub.white { color: rgba(255,255,255,0.70); }

.divider-line {
  width: 48px; height: 3px; background: var(--green);
  border-radius: 2px; margin: 16px 0 28px;
}
.divider-line.white { background: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   섹션 1 — WHY JIB 프랜차이즈?
   ═══════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 100px;
}
.why-checks { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why-check {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.why-check:hover { border-color: var(--green-mid); box-shadow: 0 4px 16px rgba(45,90,39,0.10); }
.why-check-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.why-check-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.why-check-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* 우측 스탯 그리드 */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  padding: 28px 24px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--white);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.stat-card.gold::before { background: var(--gold); }
.stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--green);
  line-height: 1; margin-bottom: 6px;
}
.stat-card.gold .stat-val { color: var(--gold); }
.stat-label { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ═══════════════════════════════════════
   섹션 2 — 가맹 비즈니스 모델
   ═══════════════════════════════════════ */
.model-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.model-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.model-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.model-card-top {
  height: 6px;
  background: var(--green);
}
.model-card-top.t2 { background: #5B9E52; }
.model-card-top.t3 { background: var(--gold); }
.model-card-top.t4 { background: #2D7A6A; }
.model-card-body { padding: 24px 22px; }
.model-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--green); margin-bottom: 10px;
}
.model-icon { font-size: 30px; margin-bottom: 12px; }
.model-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.model-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }
.model-items { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.model-item {
  font-size: 12px; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.model-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════
   섹션 3 — 수익 구조 시뮬레이션
   ═══════════════════════════════════════ */
.revenue-section {
  background: var(--dark);
  padding: 80px 48px;
}
.revenue-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 48px;
}
.revenue-bars { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.rev-bar { display: flex; flex-direction: column; gap: 6px; }
.rev-bar-header { display: flex; justify-content: space-between; align-items: baseline; }
.rev-bar-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.rev-bar-pct { font-size: 13px; font-weight: 700; color: #A8D8A0; }
.rev-bar-track {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.rev-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green2), #7EC87E);
  transition: width 1.2s ease;
}

.rev-package {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; overflow: hidden;
}
.rev-package-header {
  background: var(--green);
  padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.rev-package-name { font-size: 16px; font-weight: 700; color: #fff; }
.rev-package-tag {
  background: rgba(255,255,255,0.18);
  font-size: 11px; font-weight: 700; color: #fff;
  padding: 3px 10px; border-radius: 12px; letter-spacing: 0.05em;
}
.rev-package-body { padding: 24px 28px; }
.rev-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rev-row:last-child { border-bottom: none; }
.rev-row-label { font-size: 13px; color: rgba(255,255,255,0.60); }
.rev-row-val { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.92); }
.rev-row-val.green { color: #A8D8A0; }
.rev-note {
  margin-top: 16px; padding: 12px 16px;
  background: rgba(255,255,255,0.05); border-radius: 8px;
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5;
}

/* ═══════════════════════════════════════
   섹션 4 — 본사 지원 프로그램
   ═══════════════════════════════════════ */
.support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.support-card {
  padding: 30px 26px;
  border-radius: 14px; border: 1px solid var(--border);
  background: var(--white);
  transition: all .22s;
}
.support-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 8px 28px rgba(45,90,39,0.12);
  transform: translateY(-3px);
}
.support-card-icon {
  font-size: 36px; margin-bottom: 16px;
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
}
.support-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.support-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }
.support-card-items { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.support-card-item { font-size: 12px; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.support-card-item::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 11px; }

/* ═══════════════════════════════════════
   섹션 5 — 오픈 개설 절차
   ═══════════════════════════════════════ */
.steps-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps-track::before {
  content: '';
  position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: var(--green-mid); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
  box-shadow: 0 0 0 6px var(--cream);
  position: relative;
}
.step-circle-num {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.step-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }
.step-duration {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 600; color: var(--green);
  background: var(--green-lt); padding: 2px 10px; border-radius: 10px;
}

/* ═══════════════════════════════════════
   섹션 6 — 성과 배너
   ═══════════════════════════════════════ */
.proof-banner {
  background: var(--green);
  padding: 72px 48px;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center; margin-top: 48px;
}
.proof-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px; font-weight: 700; color: #fff; line-height: 1;
}
.proof-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }
.proof-sub { font-size: 12px; color: rgba(255,255,255,0.50); margin-top: 3px; }

/* ═══════════════════════════════════════
   섹션 7 — 서브 인하우스 FAQ
   ═══════════════════════════════════════ */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; background: var(--white);
}
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--dark);
  transition: background .15s;
}
.faq-q:hover { background: var(--green-lt); }
.faq-q.open { color: var(--green); background: var(--green-lt); }
.faq-icon { font-size: 18px; color: var(--green); transition: transform .25s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: 14px; color: var(--gray); line-height: 1.7;
  padding: 0 24px;
}
.faq-a.open { max-height: 300px; padding: 0 24px 20px; }

/* ═══════════════════════════════════════
   섹션 8 — CTA 문의 폼 인풋
   ═══════════════════════════════════════ */
.cta-section {
  background: var(--dark); padding: 80px 48px;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-top: 48px;
}
.form-group { margin-bottom: 18px; }
.form-label2 { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 7px; }
.form-input2, .form-select2, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff;
  font-size: 14px; font-family: 'Noto Sans KR', sans-serif;
  transition: border-color .2s;
  outline: none;
}
.form-input2::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.30); }
.form-input2:focus, .form-select2:focus, .form-textarea:focus { border-color: var(--green2); }
.form-select2 { appearance: none; cursor: pointer; }
.form-select2 option { background: var(--dark); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--green); color: #fff; border: none;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  font-family: 'Noto Sans KR', sans-serif;
  margin-top: 6px;
}
.form-submit:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,39,0.5); }

.contact-tagline { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.contact-tagline em { color: #A8D8A0; font-style: normal; }
.contact-sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-card-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 2px; font-weight: 600; letter-spacing: 0.04em; }
.contact-card-val { font-size: 14px; color: #fff; font-weight: 600; }

/* ═══════════════════════════════════════
   8. SUB BREAKPOINTS CONTROL (960PX)
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero { height: auto; min-height: 500px; }
  .hero-content { padding: 0 24px 200px; }
  .hero-title { font-size: 36px; }
  .hero-features { left: 24px; right: 24px; grid-template-columns: 1fr; }
  .section, .section-sm { padding: 80px 24px 60px; }
  .why-grid, .revenue-grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: 1fr; gap: 20px; }
  .steps-track::before { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
}

.breadcrumb2 {
	border-top: 1px solid var(--border);
	margin-top: var(--nav-h);
	padding: 14px 48px;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	display: flex; align-items: center; gap: 8px;
	font-size: 13px; color: var(--gray); 
}

/* 부모 박스는 기본 마감 유지 */


/* ── [정정 팩트] 실제 글자들을 담고 있는 container 내부를 정렬 ── */
.breadcrumb2 .container {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px;
    color: var(--gray);
}

.breadcrumb2 a { color: var(--gray); }
.breadcrumb2 a:hover { color: var(--green); }
.breadcrumb2 span { color: var(--green); font-weight: 600; }

/* ════════════════════════════════════
   문의 모달
════════════════════════════════════ */
.ov {
  display: none; position: fixed; inset: 0; 
  z-index: 1050 !important; /* Bootstrap 상단 네비게이션바(1030)보다 위로 계층 배치 */
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.ov.on { display: flex !important; }

.jib-custom-modal { /* ➔ 고유 격리 스타일 정의 */
  background: #fff; border-radius: 14px;
  width: 100%; max-width: 480px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: pop .25s ease;
  position: relative; z-index: 1060; /* 모달 본체를 딤드 처리보다 무조건 위로 고정 */
}
@keyframes pop {
  from { transform: scale(.93) translateY(14px); opacity: 0; }
  to { transform: none; opacity: 1; }
}


.mhd{
  background:#2d6b27;padding:20px 24px;
  display:flex;align-items:center;justify-content:space-between;
}
.mhd-t{font-size:16px;font-weight:700;color:#fff}
.mx{font-size:22px;color:rgba(255,255,255,.7);background:none;cursor:pointer}
.mx:hover{color:#fff}
.mbd{padding:24px}
.mprod{
  font-size:12px;font-weight:700;color:#2d6b27;
  background:#edf6ea;padding:7px 12px;border-radius:6px;margin-bottom:16px;
}
.fg{margin-bottom:12px}
.fl{display:block;font-size:11px;font-weight:700;color:#666;letter-spacing:.03em;margin-bottom:5px}
.fi{
  width:100%;padding:10px 12px;
  border:1px solid #d4d8d0;border-radius:7px;
  font-size:14px;font-family:inherit;color:#111;
  outline:none;transition:border-color .18s;
}
.fi:focus{border-color:#3d8a35}
.fi2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
textarea.fi{min-height:75px;resize:vertical}
.fsub{
  width:100%;padding:13px;
  background:#2d6b27;color:#fff;
  border:none;border-radius:8px;
  font-size:14px;font-weight:700;cursor:pointer;
  margin-top:4px;transition:background .15s;
}
.fsub:hover{background:#1e5c1a}

/* 토스트 */
.toast{
  position:fixed;bottom:22px;right:22px;z-index:600;
  background:#2d6b27;color:#fff;
  padding:11px 18px;border-radius:10px;
  font-size:13px;font-weight:700;
  box-shadow:0 4px 16px rgba(0,0,0,0.22);
  opacity:0;transform:translateY(8px);
  transition:all .28s;pointer-events:none;
}
.toast.on{opacity:1;transform:none}

@media (max-width: 960px) {
    /* 1. info.jsp 내 그리드 강제 1열 고정 */
    .why-grid, .model-grid, .support-grid, .proof-grid {
        display: block !important; /* grid를 block으로 바꾸면 가로 확장 멈춤 */
        width: 100% !important;
    }

    /* 2. 각 카드들이 서로 붙지 않게 마진 확보 */
    .model-card, .support-card, .proof-grid > div {
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    /* 3. 결정적 한 방: 모든 요소가 화면을 뚫고 나가지 못하게 차단 */
    main {
        width: 100vw !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .breadcrumb2 {
        padding: 10px 15px !important; /* 모바일용 패딩 축소 */
    }

    .breadcrumb2 .container {
        display: flex !important;
        flex-wrap: nowrap !important; /* 강제 한 줄 유지 */
        white-space: nowrap !important;
        overflow: hidden !important; /* 넘치면 숨김 */ 
    }

    /* 텍스트가 너무 길면 말줄임표 처리 */
    .breadcrumb2 span, .breadcrumb2 a {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 11px !important; /* 폰트 크기 미세 축소 */
    }
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}
