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

body {
    font-family: 'Noto Sans KR', 'Spoqa Han Sans Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #3A3A3A;
    background-color: #FFF8E7;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
        background-color: #6B3E26;
    }
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 헤더 */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-caption {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFF2D8;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.header.scrolled {
    background-color: #6B3E26;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 120px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.15) brightness(1.05) saturate(1.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 네비게이션 메뉴 */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    padding: 10px 15px;
    position: relative;
    border-radius: 5px;
    font-family: 'Noto Sans KR', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after {
    width: calc(100% - 30px);
}

.header.scrolled .nav-link {
    color: #FFF8E7;
    text-shadow: none;
}

.header.scrolled .nav-link::after {
    background-color: #F5B700;
}

.header.scrolled .nav-link:hover {
    color: #FFF8E7;
    background-color: rgba(245, 183, 0, 0.2);
}

.header.scrolled .nav-link.kakao-link {
    background: #F5B700;
    color: #FFFFFF;
}

/* 카카오톡 스타일 링크 */
.nav-link.kakao-link {
    background: #F5B700;
    color: #FFFFFF;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(245, 183, 0, 0.3);
}

.nav-link.kakao-link::after {
    display: none;
}

.nav-link.kakao-link:hover {
    background: #FFA84D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 168, 77, 0.4);
}

.header.scrolled .nav-link.kakao-link {
    background: #F5B700;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(245, 183, 0, 0.4);
}

.header.scrolled .nav-link.kakao-link:hover {
    background: #FFA84D;
    color: #FFFFFF;
}

/* 모바일 메뉴 토글 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: #333;
    box-shadow: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 모바일 메뉴 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.mobile-menu.active {
    display: block;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav-link {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 15px 0;
    border-bottom: 1px solid rgba(107, 62, 38, 0.1);
    transition: color 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.mobile-nav-link:hover {
    color: #6B3E26;
}

/* 모바일 카카오톡 스타일 링크 */
.mobile-nav-link.kakao-link-mobile {
    background: #F5B700;
    color: #FFFFFF;
    font-weight: 800;
    padding: 15px 20px;
    border-radius: 25px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(245, 183, 0, 0.3);
    text-align: center;
    border-bottom: none;
}

.mobile-nav-link.kakao-link-mobile:hover {
    background: #FFA84D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 168, 77, 0.4);
}

/* 히어로 섹션 */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: #6B3E26;
}

@media (max-width: 768px) {
    .hero-section {
        overflow: visible;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity;
    filter: brightness(1.18) contrast(1.08) saturate(1.12);
}

@media (max-width: 768px) {
    .hero-slide {
        filter: brightness(1.2) contrast(1.08) saturate(1.15);
    }
}

/* 모바일에서 이미지에 딱 맞게 조정 */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
    }
    
    .hero-slide {
        background-size: cover;
        background-position: center;
        background-color: transparent;
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 62, 38, 0.9);
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-overlay {
        background-color: rgba(107, 62, 38, 0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    padding: 120px 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-card {
    display: inline-block;
    padding: 58px 74px;
    margin: -160px auto 42px;
    background-color: rgba(63, 34, 18, 0.96);
    border-radius: 64px;
    box-shadow: 0 36px 78px rgba(0, 0, 0, 0.4);
    text-align: left;
    backdrop-filter: blur(6px);
    max-width: 880px;
    width: 100%;
}

.hero-card-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.9);
    text-decoration-thickness: 3px;
    text-decoration-style: solid;
    text-underline-offset: 8px;
    white-space: nowrap;
}

.hero-card-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-list li {
    display: flex;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1.55;
    align-items: flex-start;
    padding-bottom: 4px;
}

.hero-card-list li::before {
    content: '•';
    color: #F5B700;
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    top: 2px;
}

.hero-card-list li span {
    display: inline-block;
}

.hero-card-list li.strong span {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.9);
    text-decoration-thickness: 2px;
    text-decoration-style: solid;
    text-underline-offset: 6px;
}

.hero-card-list li.strong {
    font-weight: 800;
}

.hero-kakao-bubble {
    width: 360px;
    max-width: 90%;
    margin: 0 auto 0 40px;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.28));
    animation: none;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out;
    text-transform: none;
}

.hero-title .highlight {
    font-size: 1.2em;
    color: #F5B700;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 1), 0 0 40px rgba(245, 183, 0, 0.9), 4px 4px 8px rgba(245, 183, 0, 0.7);
    font-weight: 900;
    display: inline-block;
    padding: 0 6px;
    background-color: rgba(245, 183, 0, 0.25);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(245, 183, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 45px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-button {
    display: inline-block;
    padding: 18px 50px;
    background: #F5B700;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 183, 0, 0.5);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: -6px;
}

.hero-button:hover {
    background: #FFA84D;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 168, 77, 0.6);
}

.hero-button:active {
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-wrap {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .logo {
        height: 70px;
    }
    
    .logo-caption {
        font-size: 1.05rem;
        white-space: nowrap;
        text-align: left;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 74px;
        padding-bottom: 116px;
        min-height: 100vh;
        height: auto;
        align-items: flex-start;
    }
    
    .hero-content {
        padding: 10px 16px 22px;
        max-width: 540px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 16px;
        font-weight: 800;
        line-height: 1.2;
    }
    
    .hero-title .highlight {
        font-size: 1em;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 18px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .hero-card {
        padding: 14px 18px;
        margin-top: -18px;
        margin-bottom: 20px;
        border-radius: 28px;
        width: 100%;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    }
    
    .hero-card-title {
        font-size: 1.35rem;
        margin-bottom: 16px;
        text-underline-offset: 6px;
    }
    
    .hero-card-list {
        gap: 11px;
    }
    
    .hero-card-list li {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    
    .hero-kakao-bubble {
        width: 320px;
        margin: -4px 0 0 6px;
        animation: none;
    }
}

/* 공통 섹션 스타일 */
.section {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    color: #3A3A3A;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F5B700;
    border-radius: 2px;
}

.section-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-large {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #3A3A3A;
    margin-bottom: 25px;
    font-weight: 500;
}

.section-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: #6B3E26;
    margin: 40px 0 30px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3A3A3A;
    padding: 20px;
    background: rgba(255, 248, 231, 0.8);
    border-radius: 15px;
    border-left: 4px solid #F5B700;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(245, 183, 0, 0.3);
    background: rgba(248, 227, 196, 0.9);
}

.section-chat-button {
    display: block;
    padding: 16px 50px;
    background: #F5B700;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(245, 183, 0, 0.4);
    transition: all 0.3s ease;
    margin: 40px auto 0;
    text-align: center;
    max-width: 400px;
}

.section-chat-button:hover {
    background: #FFA84D;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 168, 77, 0.5);
}

/* 섹션 2. 소개 */
.section-intro {
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #FFF8E7;
}

.section-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 231, 0.85);
    z-index: 1;
}

/* 섹션 3. 천원빵 운영 사장님 */
.section-owner {
    background-image: url('images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #3A3A3A;
}

.section-owner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 227, 196, 0.9);
    z-index: 1;
}

.section-owner .section-title,
.section-owner .section-subtitle,
.section-owner .text-large,
.section-owner .feature-list li {
    color: #3A3A3A;
}

.section-owner .section-title::after {
    background: #F5B700;
}

.section-owner .feature-list li {
    background: rgba(255, 248, 231, 0.9);
    border-left-color: #6B3E26;
}

/* 섹션 4. 샵인샵 */
.section-shop {
    background-image: url('images/bg3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #3A3A3A;
}

.section-shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 227, 196, 0.85);
    z-index: 1;
}

.section-shop .section-title,
.section-shop .section-subtitle,
.section-shop .text-large,
.section-shop .feature-list li {
    color: #3A3A3A;
}

.section-shop .section-title::after {
    background: #F5B700;
}

.section-shop .feature-list li {
    background: rgba(255, 248, 231, 0.9);
    border-left-color: #6B3E26;
}

/* 섹션 5. 예비 창업자 */
.section-startup {
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #3A3A3A;
}

.section-startup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 231, 0.85);
    z-index: 1;
}

.section-startup .section-title,
.section-startup .section-subtitle,
.section-startup .text-large,
.section-startup .feature-list li {
    color: #3A3A3A;
}

.section-startup .section-title::after {
    background: #F5B700;
}

.section-startup .feature-list li {
    background: rgba(255, 248, 231, 0.9);
    border-left-color: #6B3E26;
}

/* 섹션 6. 납품 사장님 */
.section-supplier {
    background-image: url('images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #3A3A3A;
}

.section-supplier::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 227, 196, 0.85);
    z-index: 1;
}

.section-supplier .section-title,
.section-supplier .section-subtitle,
.section-supplier .text-large,
.section-supplier .feature-list li {
    color: #3A3A3A;
}

.section-supplier .section-title::after {
    background: #F5B700;
}

.section-supplier .feature-list li {
    background: rgba(255, 248, 231, 0.9);
    border-left-color: #6B3E26;
}

/* 섹션 7. 상담 안내 */
.section-consulting {
    background-image: url('images/bg3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #3A3A3A;
}

.section-consulting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 227, 196, 0.85);
    z-index: 1;
}

.section-consulting .section-title,
.section-consulting .consulting-title {
    color: #3A3A3A;
}

.consulting-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 0;
    text-align: center;
}

.consulting-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.consulting-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #F5B700;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #F5B700;
    transition: all 0.3s ease;
}

.consulting-link:hover {
    background: #FFA84D;
    border-color: #FFA84D;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 168, 77, 0.3);
}

.link-icon {
    font-size: 1.5rem;
}

.consulting-text {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    color: #3A3A3A;
}

/* 섹션 8. CTA */
.section-cta {
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FFF8E7;
    padding: 120px 0 180px;
}

.section-cta .section-content {
    text-align: center;
}

.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 62, 38, 0.9);
    z-index: 1;
}

.section-cta .section-title {
    color: #FFF8E7;
    font-size: 3rem;
    margin-bottom: 30px;
}

.section-cta .section-title::after {
    background: #F5B700;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #FFF8E7;
}

.cta-arrow {
    font-size: 1.8rem;
    margin: 30px 0;
    font-weight: 700;
    color: #FFF8E7;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: #F5B700;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(245, 183, 0, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #FFA84D;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 168, 77, 0.6);
}

/* 하단 고정 오픈채팅방 버튼 */
.fixed-chat-button {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 34px;
    background: linear-gradient(140deg, #FFD64D, #FF9C2B);
    color: #2F1A06;
    font-size: 1.15rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 0 18px 40px rgba(255, 156, 43, 0.45);
    transition: box-shadow 0.3s ease;
    white-space: nowrap;
}

.floating-chat-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0 24px;
    background: linear-gradient(0deg, rgba(107, 62, 38, 0.95) 0%, rgba(107, 62, 38, 0) 70%);
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 1400;
}

.floating-chat-area .fixed-chat-button {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .floating-chat-area {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    .floating-chat-area {
        padding: 70px 0 26px;
    }
}

.fixed-chat-button:hover {
    box-shadow: 0 22px 46px rgba(255, 156, 43, 0.55);
}

.button-icon {
    width: 42px;
    height: 42px;
    display: inline-block;
    object-fit: contain;
}

.button-text {
    line-height: 1.1;
    white-space: nowrap;
}

@keyframes chatBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 18px 40px rgba(255, 156, 43, 0.45);
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 22px 48px rgba(255, 156, 43, 0.6);
        transform: translateX(-50%) scale(1.05);
    }
}


/* 반응형 디자인 */
@media (max-width: 768px) {
    .header {
        background-color: transparent;
        box-shadow: none;
    }

    .header.scrolled {
        background-color: rgba(107, 62, 38, 0.85);
    }

    .scroll-top-button {
        right: 18px;
        bottom: 110px;
        width: 56px;
        height: 56px;
        box-shadow: 0 10px 24px rgba(244, 163, 0, 0.32);
    }

    .scroll-top-button::before {
        font-size: 26px;
    }

    .section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .section-intro,
    .section-owner,
    .section-shop,
    .section-startup,
    .section-supplier,
    .section-consulting,
    .section-cta {
        background-attachment: scroll;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .text-large {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .feature-list li {
        font-size: 1rem;
        padding: 15px;
    }
    
    .consulting-title {
        font-size: 1.5rem;
    }
    
    .consulting-link {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-cta {
        padding: 60px 0 200px;
    }
    
    .section-cta .section-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .fixed-chat-button {
        bottom: 18px;
        padding: 16px 26px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .scroll-top-button {
        right: 12px;
        bottom: 104px;
        width: 48px;
        height: 48px;
    }

    .scroll-top-button::before {
        font-size: 22px;
    }

    .logo-wrap {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .logo {
        height: 60px;
    }

    .logo-caption {
        font-size: 0.95rem;
        white-space: nowrap;
    }
    .hero-section {
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 102px;
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }
    
    .hero-content {
        padding: 12px 12px 22px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.18;
        margin-bottom: 14px;
    }
    
    .hero-title .highlight {
        font-size: 0.95em;
    }
    
    .hero-subtitle { 
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.32;
        margin-bottom: 14px;
    }
    
    .hero-card {
        padding: 12px 12px;
        margin-top: -10px;
        margin-bottom: 16px;
        border-radius: 22px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }
    
    .hero-card-title {
        font-size: 1.18rem;
        margin-bottom: 14px;
        text-underline-offset: 4px;
    }
    
    .hero-card-list li {
        font-size: 0.92rem;
        line-height: 1.45;
    }
    
    .hero-button {
        padding: 8px 20px;
        font-size: 0.8rem;
        border-radius: 22px;
        margin-top: 4px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .text-large {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .feature-list li {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .section-chat-button {
        padding: 14px 40px;
        font-size: 1.1rem;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .fixed-chat-button {
        bottom: 16px;
        padding: 14px 24px;
        font-size: 0.98rem;
    }

    .hero-kakao-bubble {
        width: 300px;
        margin: -2px 0 0 2px;
        animation: none;
    }

    .consulting-links {
        flex-direction: column;
        align-items: center;
    }
    
    .consulting-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .section-cta {
        padding: 50px 0 200px;
    }
    
    .hero-content {
        padding: 24px 12px 24px;
    }
    
    .fixed-chat-button {
        padding: 14px 24px;
        font-size: 0.98rem;
    }
}

/* 관리자 페이지 */
.admin-body {
    background: linear-gradient(135deg, #f8ede3 0%, #f5d3aa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Noto Sans KR', 'Spoqa Han Sans Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.admin-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(107, 62, 38, 0.18);
    backdrop-filter: blur(6px);
}

.admin-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6B3E26;
    margin-bottom: 14px;
    text-align: left;
}

.admin-description {
    font-size: 1rem;
    color: #5a4a42;
    margin-bottom: 24px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-label {
    font-weight: 600;
    color: #6B3E26;
    font-size: 0.95rem;
}

.admin-input {
    width: 100%;
    border: 1px solid rgba(107, 62, 38, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.admin-input:focus {
    outline: none;
    border-color: #F5B700;
    box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.2);
}

.admin-button {
    background: linear-gradient(135deg, #F5B700 0%, #ff9f43 100%);
    color: #2F1A06;
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 183, 0, 0.35);
}

.admin-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.admin-button.secondary {
    background: rgba(107, 62, 38, 0.08);
    color: #6B3E26;
    border: 1px solid rgba(107, 62, 38, 0.12);
}

.admin-message {
    margin-top: 12px;
    font-size: 0.95rem;
}

.admin-message.success {
    color: #2F9D27;
}

.admin-message.error {
    color: #D63031;
}

.hidden {
    display: none !important;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 22px;
    align-items: end;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(107, 62, 38, 0.12);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 360px;
}

.admin-table thead {
    background: rgba(245, 183, 0, 0.15);
}

.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(107, 62, 38, 0.1);
    font-size: 0.95rem;
}

.admin-table tbody tr:hover {
    background: rgba(245, 183, 0, 0.08);
}

.admin-table th {
    font-weight: 700;
    color: #6B3E26;
}

.empty-row {
    text-align: center;
    color: #8c7a70;
}

.stats-summary {
    margin-bottom: 12px;
    font-weight: 600;
    color: #6B3E26;
}

@media (max-width: 640px) {
    .admin-body {
        padding: 24px 16px;
    }

    .admin-card {
        padding: 24px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background-color: #6B3E26;
    color: #FFF8E7;
    padding: 36px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-item a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 248, 231, 0.6);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 28px 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }
}
