/* public/css/style.css */


@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 600;
    /* 800 -> 600 수정 */
    font-style: normal;
}


@font-face {
    font-family: 'Pretendard-Light';
    font-weight: 300;
    font-display: swap;
    src: local('Pretendard Light'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/packages/pretendard/dist/web/static/woff2/Pretendard-Light.woff2') format('woff2');
}

@font-face {
    font-family: Pretendard;
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/packages/pretendard/dist/web/static/woff2/Pretendard-Medium.woff2') format('woff2');
}


@font-face {
    font-family: 'Pretendard-Medium';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard Medium'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/packages/pretendard/dist/web/static/woff2/Pretendard-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-SemiBold';
    font-weight: 600;
    font-display: swap;
    src: local('Pretendard SemiBold'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/packages/pretendard/dist/web/static/woff2/Pretendard-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Bold';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/packages/pretendard/dist/web/static/woff2/Pretendard-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Black';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* Reset & Base */
:root {
    --primary-color: #00EB88;
    --color-primary: #00EB88;
    --text-color: #222;
    --bg-color: #111;
    --white: #fff;
    --border-color: rgba(0, 0, 0, 0.1);
    --color-border: rgba(0, 0, 0, 0.1);
    --color-text-muted: #666;
    --color-bg-card: #f5f5f5;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
blockquote {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    word-break: keep-all;
    overflow-wrap: break-word;
}

body {
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

figure {
    margin: 0;
}

/* Header Layout */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled,
.site-header.menu-open {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1920px;
    /* Legacy compatible */
    margin: 0 auto;
    padding: 0px 4rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* 자식 요소 절대 위치 기준점 */
}

/* Logo */
.logo img {
    height: 30px;
    width: auto;
}

.logo-black {
    display: none;
}

.scrolled .logo-white,
.menu-open .logo-white {
    display: none;
}

.scrolled .logo-black,
.menu-open .logo-black {
    display: block;
}


/* Desktop Navigation */
.pc-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.gnb-list {
    display: flex;
    height: 100%;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.gnb-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Header Utilities (Right Side) */
.header-utils {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* SEO Check Button - Unified Design */
.header-seo-check-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-seo-check-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.scrolled .header-seo-check-btn,
.menu-open .header-seo-check-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #222;
}

.scrolled .header-seo-check-btn:hover,
.menu-open .header-seo-check-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

body.subpage .header-seo-check-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #222;
}

body.subpage .header-seo-check-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.header-seo-check-btn svg {
    width: 16px;
    height: 16px;
}

/* Contact Button - Unified Design */
.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #10B981;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Pretendard', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    text-decoration: none;
}

.header-contact-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #fff !important;
}

.header-contact-btn svg {
    width: 16px;
    height: 16px;
}

.gnb-link {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.scrolled .gnb-link,
.menu-open .gnb-link {
    color: #222;
}

/* Subpage Header - Always Dark */
body.subpage .site-header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.subpage .logo-white {
    display: none !important;
}

body.subpage .logo-black {
    display: block !important;
}

body.subpage .gnb-link {
    color: #222 !important;
}

body.subpage .menu-btn span {
    background: #000 !important;
}

body.subpage .site-header.scrolled {
    background: #fff;
}

.arrow-icon {
    margin-left: 0.5rem;
    height: 12px;
}

/* Grand Menu (Mega Menu) */
.grand-menu-wrapper {
    position: absolute;
    top: 100%;
    /* Below header */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;

    /* Animation */
    display: none;
    /* Hidden by default */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.menu-open .grand-menu-wrapper {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.grand-menu-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 4rem;
}

.grand-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns */
    gap: 2rem;
}

/* Exclude columns with no items (like AEO, Blog) if standard */
/* However, user wants "All at once". We will show columns that have items. */
.grand-col {
    padding: 0 1rem;
    border-right: 1px solid #f0f0f0;
}

.grand-col:last-child {
    border-right: none;
}

.col-header a {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.col-header a:hover {
    border-bottom-color: var(--primary-color);
}

.col-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col-item a {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    transition: transform 0.2s;
}

.col-item a:hover {
    transform: translateX(5px);
}

.col-item a:hover .item-title {
    color: var(--primary-color);
    text-decoration: underline;
}

.icon-figure {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.icon-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-title {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

/* Contact Banner - Horizontal Style */
/* .contact-banner-horizontal {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
} */

.contact-banner-horizontal .banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-banner-horizontal .banner-label {
    font-size: 0.7rem;
    color: #10B981;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.contact-banner-horizontal .banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0.25rem 0 0 0;
    line-height: 1.2;
}

.contact-banner-horizontal .banner-center {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-banner-horizontal .info-item {
    margin: 0;
}

.contact-banner-horizontal .info-label {
    display: block;
    font-size: 0.65rem;
    color: #10B981;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-banner-horizontal .info-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.contact-banner-horizontal .banner-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-banner-horizontal .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10B981;
    transition: all 0.2s ease;
}

.contact-banner-horizontal .call-btn:hover {
    background: #10B981;
    color: #000;
}

.contact-banner-horizontal .banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10B981;
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-banner-horizontal .banner-btn:hover {
    background: #fff;
    color: #000;
}

.banner-content {
    color: #fff;
}

.banner-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.banner-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #000;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #fff;
    color: #000;
    transform: translateX(5px);
}

.banner-btn svg {
    transition: transform 0.3s ease;
}

.banner-btn:hover svg {
    transform: translateX(3px);
}

.banner-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.info-item {
    margin-bottom: 0.75rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.tel-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 235, 136, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.call-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.call-btn svg {
    flex-shrink: 0;
}

/* Mobile Utils */
.mobile-utils {
    display: none;
    /* Hidden on PC */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mo-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 4rem;
    border-bottom: 1px solid #eee;
}

.menu-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.scrolled .menu-btn span,
.menu-open .menu-btn span {
    background: #000;
}

.menu-btn.active {
    background: url(/public/img/newmain/menu_close.webp) no-repeat center / cover;
    /* background: url('/public/img/menu_close.png') no-repeat center/contain; */
}

.menu-btn.active span {
    display: none;
}


.mo-inner {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.mo-gnb-item {
    border-bottom: 1px solid #f5f5f5;
}

.mo-gnb-link {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mo-sub-menu {
    display: none;
    padding-bottom: 1.5rem;
    background: #fdfdfd;
}

.mo-sub-list li a {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #666;
}

.mo-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Mobile Menu Utilities */
.mo-utils {
    padding: 1.5rem 0;
    border-top: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mo-seo-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mo-seo-check-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.mo-seo-check-btn svg {
    width: 16px;
    height: 16px;
}

.mo-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #10B981;
    color: #fff !important;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.mo-contact-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #fff !important;
}

.mo-contact-btn svg {
    width: 16px;
    height: 16px;
}


/* Responsive - Header */
@media (max-width: 991px) {

    .pc-nav,
    .grand-menu-wrapper {
        display: none !important;
    }

    .mobile-utils {
        display: block;
    }

    .header-inner {
        padding: 0 1.5rem;
    }

    /* Hide desktop header utilities on mobile */
    .header-utils {
        display: none !important;
    }

    /* 메인페이지 모바일: 흰색 로고/메뉴 유지 */
    .logo-white {
        display: block;
    }

    .logo-black {
        display: none;
    }

    .menu-btn span {
        background: #fff;
    }

    /* 서브페이지 모바일: 검은색 로고/메뉴 */
    body.subpage .logo-white {
        display: none !important;
    }

    body.subpage .logo-black {
        display: block !important;
    }

    body.subpage .menu-btn span {
        background: #000 !important;
    }
}

@media (max-width: 767px) {
    .header-inner {
        height: 60px;
        padding: 0 1.5rem;
    }

    .logo img {
        height: 22px;
    }

    .mo-header {
        padding: 0 1.5rem;
        height: 60px;
    }

    .menu-btn {
        width: 30px;
        height: 50px;
    }
}



/* ========================================
   COMMON SECTION STYLES
======================================== */
.section-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 4rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6.5rem;
    /* 5rem -> 6.5rem */
    font-weight: 600;
    /* 800 -> 600 수정 */
    text-align: center;
    margin-bottom: 0.75rem;
    /* 기존 1.5rem에서 반으로 축소 */
    text-transform: uppercase;
    color: #000;
    /* 밝은 회색으로 통일 */
    line-height: 1;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 22px;
    /* 1.1rem -> 22px */
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.section-footer .btn-outline {
    color: #000;
    border: 1px solid #000;
}

.section-footer .btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #000;
}

/* 태블릿 가로 */
@media (max-width: 1199px) {
    .section-title {
        font-size: 5rem;
    }
}

/* 태블릿 세로 */
@media (max-width: 991px) {
    .section-title {
        font-size: 4rem;
    }
}

/* 모바일 */
@media (max-width: 767px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* 소형 모바일 */
@media (max-width: 479px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}



/* ========================================
   FOOTER
======================================== */
.nxt-footer {
    background: #111;
    color: #fff;
}

/* Footer CTA Section - 전면 수정 */
.footer-cta {
    background: #111;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 6.5rem;
    /* 다른 섹션 타이틀과 동일 */
    font-weight: 600;
    /* 600으로 통일 */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

@media (max-width: 767px) {
    .cta-content h2 {
        font-size: 3.5rem;
        /* 모바일에서 크기 축소 */
    }
}

.cta-content .gradient-text {
    background: linear-gradient(90deg, #00eb88, #00a3ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.cta-link:hover {
    transform: translateX(5px);
}

/* Footer Inner */
.nxt-footer .footer-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 4rem 40px;
}

/* Footer Nav */
.footer-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Footer Info */
.nxt-footer .footer-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.nxt-footer .footer-info p {
    color: rgba(255, 255, 255, 0.9);
}

.nxt-footer .footer-info strong {
    color: rgba(255, 255, 255, 1);
    margin-right: 0.5rem;
    font-weight: 600;
}

.nxt-footer .footer-info a {
    color: rgba(255, 255, 255, 0.9);
    display: inline;
}

.nxt-footer .footer-info a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.nxt-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sns {
    display: flex;
    gap: 1.5rem;
}

.footer-sns a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-sns a:hover {
    color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-cta .section-inner {
        padding: 0 1.5rem;
    }

    .nxt-footer .footer-inner {
        padding: 60px 1.5rem 40px;
    }

    .footer-sns {
        gap: 1rem;
    }
}



/* Utility */
.no-scroll {
    overflow: hidden;
}

/* ========================================
   FLOATING QUICK CONTACT BUTTONS
======================================== */
.simDeinqBtn {
    display: flex;
    cursor: pointer;
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    z-index: 999;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simDeinqBtn:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.simDeinqBtn img {
    height: 1.8rem;
}

.simDeinqBtn:hover span {
    display: inline-block;
}

.simDeinqBtn span {
    display: none;
    left: -4rem;
    color: #666;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: absolute;
    white-space: nowrap;
}

.siminqBtn {
    box-shadow: 0px 0px 20px 0px rgba(0, 235, 136, 0.2);
    display: flex;
    cursor: pointer;
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 10001;
    border-radius: 50%;
    background: var(--primary-color);
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.siminqBtn:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 25px 0px rgba(0, 235, 136, 0.3);
}

.siminqBtn .icon-default {
    height: 1.8rem;
    filter: brightness(0);
    display: block;
}

.siminqBtn .icon-close {
    display: none;
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    line-height: 1;
}

.siminqBtn.active .icon-default {
    display: none;
}

.siminqBtn.active .icon-close {
    display: block;
}

.siminqBtn.active {
    box-shadow: 0 0 20px rgba(0, 235, 136, 0.6),
        0 0 40px rgba(0, 235, 136, 0.4),
        0 0 60px rgba(0, 235, 136, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 235, 136, 0.6),
            0 0 40px rgba(0, 235, 136, 0.4),
            0 0 60px rgba(0, 235, 136, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 235, 136, 0.8),
            0 0 50px rgba(0, 235, 136, 0.5),
            0 0 75px rgba(0, 235, 136, 0.3);
    }
}

.siminqBtn:hover .text-label {
    display: inline-block;
}

.siminqBtn .text-label {
    display: none;
    left: -4rem;
    color: #666;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: absolute;
    white-space: nowrap;
}

.siminqBtn.active .text-label {
    display: none !important;
}

/* Quick Contact Popup - V1 Style */
.siminqWrap {
    overflow: hidden;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.siminqCont {
    position: fixed;
    bottom: 10rem;
    right: 2rem;
    width: 28rem;
    padding: 2rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.siminqTitle {
    gap: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 1.5rem 0;
}

.siminqTitle span {
    color: #000;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.siminqTitle p {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4rem;
}

.siminqContInner {
    position: relative;
    width: 100%;
}

.simibtnBox {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin: 0 0 1.2rem 0;
}

.simibtn {
    flex: 1;
}

.simibtn input[type="radio"] {
    display: none;
}

.simibtn label {
    display: flex;
    width: 100%;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2rem;
    border-radius: 50px;
    background: #000;
    transition: all 0.2s ease;
}

.simibtn input[type="radio"]:checked+label {
    color: #000;
    background: var(--primary-color);
}

.siminputBox {
    gap: 0.4rem;
    display: flex;
    flex-direction: column;
}

.siminputBox input {
    height: 3.2rem;
    padding: 0.6rem 1.4rem;
    width: 100%;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.60);
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2rem;
}

.siminputBox input:focus {
    border: 1px solid var(--primary-color);
    outline: none;
    background: #fff;
}

.siminputBox input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    font-weight: 400;
}

.simAgree_checkBox {
    margin: 0.6rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.simAgbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.simAgbox input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.sim_agreetext {
    font-size: 0.85rem;
    color: #000;
    cursor: pointer;
    line-height: 1.6rem;
}

.agree_checkViewMore {
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}

.siminSuBtnBox {
    width: 100%;
    margin: 0;
}

.siminSuBtn {
    width: 100%;
    display: flex;
    height: 3.4rem;
    padding: 1rem 1.6rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4rem;
    border-radius: 50px;
    border: 1px solid #000;
    background: #FFF;
    transition: all 0.2s ease;
}

.siminSuBtn:hover {
    background: var(--primary-color);
}

.simlinkBtnBox {
    position: relative;
    margin: 1.4rem 0 0 0;
}

.simlinkBtnBox ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: -3px;
    list-style-type: none;
    justify-content: center;
}

.simlinkBtnBox li {
    list-style: none;
    flex: 0 0 calc(50% - 6px);
    margin: 3px;
    box-sizing: border-box;
}

.simlinkBtnBox li a {
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.4rem;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    display: flex;
    border-radius: 0.7rem;
    background: #FFF;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.2s ease;
}

.simlinkBtnBox li a img {
    height: 1.5rem;
    width: auto;
}

.simlinkBtnBox li a:hover {
    text-decoration: underline;
}

/* Floating Buttons - Responsive */
@media (max-width: 1500px) {
    .simDeinqBtn {
        bottom: 7rem;
        right: 2rem;
    }

    .siminqBtn {
        bottom: 2rem;
        right: 2rem;
    }

    .siminqCont {
        bottom: 8rem;
        right: 2rem;
        width: 23rem;
        padding: 1.4rem;
        border-radius: 1.6rem;
    }


    .siminqTitle {
        gap: 0.4rem;
        margin: 0 0 1rem 0;
    }

    .siminputBox {
        gap: 0.2rem;
    }

    .siminputBox input {
        height: 2.6rem;
    }

    .simibtnBox {
        gap: 0.5rem;
        margin: 0 0 0.6rem 0;
    }

    .simibtn label {
        padding: 0.6rem 0;
        font-size: 0.85rem;
        line-height: 1rem;
    }

    .siminSuBtn {
        height: 2.6rem;
        padding: 1rem 1.6rem;
        font-size: 0.9rem;
        line-height: 1.2rem;
    }

    .simlinkBtnBox li a img {
        height: 1rem;
    }

    .simlinkBtnBox li a {
        font-size: 0.75rem;
        line-height: 1rem;
        gap: 0.5rem;
        padding: 0.55rem 0.6rem;
        border-radius: 0.7rem;
    }
}

@media (max-width: 991px) {
    .simDeinqBtn {
        width: 5.5rem;
        height: 5.5rem;
        bottom: 9rem;
        right: 1.5rem;
    }

    .simDeinqBtn img {
        height: 2.4rem;
    }

    .simDeinqBtn span,
    .siminqBtn span {
        display: none !important;
    }

    .siminqBtn {
        width: 5.5rem;
        height: 5.5rem;
        bottom: 2.5rem;
        right: 1.5rem;
    }

    .siminqBtn .icon-default {
        height: 2.4rem;
    }

    .siminqCont {
        padding: 2rem;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .simDeinqBtn {
        width: 4rem;
        height: 4rem;
        bottom: 5.6rem;
        right: 1rem;
    }

    .simDeinqBtn img {
        height: 1.6rem;
    }

    .siminqBtn {
        width: 4rem;
        height: 4rem;
        bottom: 1rem;
        right: 1rem;
    }

    .siminqBtn .icon-default {
        height: 1.6rem;
    }

    .siminqBtn .icon-close {
        font-size: 1.6rem;
    }

    .siminqCont {
        bottom: 6rem;
        width: 100%;
        right: 0;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .siminqTitle span {
        font-size: 1.4rem;
    }

    .simibtnBox {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Privacy Policy Popup */
.privacyWrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.privacyWrap.show {
    display: block;
}

.privacyPopUp {
    width: 100%;
    max-width: 65rem;
    padding: 3rem 1.5rem 0;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.privacyPopUpClose {
    position: absolute;
    right: 2rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.privacyPopUpClose:hover {
    transform: scale(1.1);
}

.privacyBox {
    width: 100%;
    max-height: 70vh;
    padding: 2.5rem 0.6rem 2.5rem 2.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacyBoxInner {
    width: 100%;
    height: 100%;
    max-height: calc(70vh - 5rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1.5rem;
}

.privacyBoxInner::-webkit-scrollbar {
    width: 3px;
}

.privacyBoxInner::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 999px;
}

.privacyBoxInner::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 999px;
}

.pri_Title {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pri_Title::before {
    content: '';
    width: 3rem;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
}

.pri_txt {
    padding-bottom: 1.5rem;
}

.pri_txtTitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    text-align: left;
}

.pri_txtTxt {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.pri_txtNum {
    font-size: 0.9rem;
    padding: 0 0.2rem;
}

@media (max-width: 991px) {
    .privacyPopUp {
        width: 100%;
        padding: 3rem 0 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .privacyBox {
        height: calc(100vh - 4rem);
        max-height: none;
        border-radius: 1.5rem 1.5rem 0 0;
        padding: 2rem 0.6rem 0 1.5rem;
    }

    .privacyBoxInner {
        max-height: calc(100vh - 8rem);
        padding-right: 1rem;
    }

    .privacyPopUpClose {
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .pri_Title {
        font-size: 1.6rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .pri_txtTitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pri_txtTxt {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ========================================
   SEO Loading Overlay (Global)
   공통 로딩 애니메이션 - 모든 페이지에서 사용
======================================== */
.seo-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.seo-loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #059669;
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: #00eb88;
    animation-delay: 0.4s;
}

.spinner-ring:nth-child(4) {
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    border-top-color: #00c474;
    animation-delay: 0.6s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.seo-loading-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* ========================================
   GLOBAL MOBILE HEADER SPACING STANDARD
   Ensures consistent top padding on all pages
   to account for the fixed mobile header (approx 70px)
======================================== */
@media (max-width: 768px) {

    /* Reset header position since body has padding */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    /* Header Utilities - Mobile */
    .header-utils {
        gap: 0.5rem;
    }

    .header-seo-check-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.875rem;
    }

    .header-seo-check-btn svg {
        width: 14px;
        height: 14px;
    }

    .header-contact-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.875rem;
    }

    .header-contact-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Navigation - Mobile */
    .pc-nav {
        position: static;
        transform: none;
    }

    .gnb-list {
        gap: 2rem;
    }

    .gnb-link {
        font-size: 0.95rem;
    }

    /* Loading Overlay - Mobile */
    .seo-loading-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .seo-loading-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
}