* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    color: #1f1f1f;
    background: #fff;
}
a { color: inherit; text-decoration: none; }

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 30;
}
.header-inner {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.95;
    letter-spacing: -0.6px;
}
.logo-image {
    height: 30px;
    width: auto;
    display: block;
}
.logo-main {
    font-size: 24px;
    font-weight: 700;
}
.logo-sub {
    font-size: 14px;
    font-weight: 700;
}
.logo.mini .logo-main { font-size: 20px; }
.logo.mini .logo-sub { font-size: 13px; }

.desktop-nav {
    display: flex;
    gap: 30px;
    font-size: 18px;
    font-weight: 600;
}
.desktop-nav a {
    color: #3b3b3b;
    transition: color 0.2s;
}
.desktop-nav a.active,
.desktop-nav a:hover { color: #111; }

/* 데스크톱 드롭다운 */
.nav-dropdown-wrap {
    position: relative;
}
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 160px;
    z-index: 100;
    white-space: nowrap;
}
/* 드롭다운과 메뉴 링크 사이 gap을 투명 영역으로 메워 hover 끊김 방지 */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #3b3b3b;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover {
    background: #f5f5f5;
    color: #111;
}
.nav-dropdown-wrap:hover .nav-dropdown {
    display: block;
}

.mobile-menu-button {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 26px;
}

.hero {
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    background-color: #2f3d52;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
/* 동영상 배경 */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,20,35,0.72), rgba(27,40,58,0.42));
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
/* =============================================
   HERO SLIDER (메인 페이지)
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #0c1423;
}
.hero-slider-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,20,35,0.72), rgba(27,40,58,0.38));
    z-index: 1;
}
.hero-slide-overlay--fallback {
    background: linear-gradient(135deg, #0c1423 0%, #1b283a 100%);
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
}
a.hero-slide-inner { cursor: pointer; }
.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.8;
    margin: 0 0 14px;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -1px;
    margin: 0;
}

/* pill dot 네비게이션 */
.hero-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1),
                background 0.35s ease;
}
.hero-dot.active {
    width: 28px;
    background: #fff;
}
.hero-business,
.hero-company,
.hero-contact,
.hero-gallery,
.hero-gallery-view,
.hero-community,
.hero-community-view,
.hero-product {
    height: 300px;
}
.hero-business {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-business.jpg');
}
.hero-company {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-company.jpg');
}
.hero-contact {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-contact.jpg');
}
.hero-gallery {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-gallery.jpg');
}
.hero-gallery-view {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-gallery-view.jpg');
}
.hero-community {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-community.jpg');
}
.hero-community-view {
    background-image:
        linear-gradient(90deg, rgba(12, 20, 35, 0.72), rgba(27, 40, 58, 0.42)),
        url('/assets/images/hero-community-view.jpg');
}
.hero p {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.section { padding: 86px 0; }
.section-title {
    margin: 0;
    font-size: 64px;
    text-align: center;
    letter-spacing: -1.2px;
}
.section-subtitle {
    margin: 26px auto 0;
    text-align: center;
    max-width: 880px;
    line-height: 1.8;
    color: #646464;
    font-size: 16px;
}

.main-vision { background: #efefef; }
.main-highlight { padding-top: 24px; }
.main-news { padding-top: 42px; }
.main-product { padding-top: 48px; }
.main-intro {
    padding-top: 44px;
    padding-bottom: 28px;
}
.main-intro-line {
    width: 1px;
    height: 42px;
    background: #505050;
    margin: 0 auto;
}
.main-intro-copy {
    margin: 22px 0 34px;
    text-align: center;
    color: #8c8c8c;
    font-size: 42px;
    line-height: 1.35;
    letter-spacing: -0.8px;
    font-weight: 300;
}
.main-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 18px;
}
.main-feature-card {
    min-height: 204px;
    position: relative;
    padding: 24px;
    border: 1px solid #e2e2e2;
}
.main-feature-card h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.44;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.6px;
}
.main-feature-card.blue {
    background: #8fc6e1;
}
.main-feature-card.image {
    background:
        linear-gradient(90deg, rgba(60, 71, 85, 0.65), rgba(60, 71, 85, 0.2)),
        linear-gradient(130deg, #5b6673 0%, #8d98a8 100%);
}

.vision-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.vision-card {
    background: #ededed;
    border: 1px solid #dfdfdf;
}
.vision-card h3 {
    margin: 0;
    background: #8ea4b8;
    color: #fff;
    text-align: center;
    padding: 15px 16px;
    font-size: 22px;
    letter-spacing: -0.3px;
}
.vision-card p {
    margin: 0;
    padding: 22px;
    min-height: 164px;
    color: #555;
    line-height: 1.75;
}

.stats-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.stats-box {
    padding: 14px 4px;
}
.stats-box h2 {
    margin: 0;
    font-size: 60px;
    line-height: 1.14;
    letter-spacing: -1.1px;
}
.stats-box p {
    margin: 20px 0 0;
    color: #656565;
    font-size: 14px;
    line-height: 1.7;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.stats-grid div {
    border-top: 2px solid #d4d4d4;
    padding-top: 14px;
}
.stats-grid b {
    display: block;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -1px;
    color: #3e3e3e;
}
.stats-grid span {
    color: #7b7b7b;
    font-size: 14px;
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.board-header h2,
.board-header h3 {
    margin: 0;
    font-size: 44px;
    letter-spacing: -0.8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 46px;
    border: 1px solid #1d1d1d;
    border-radius: 40px;
    background: #fff;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 15px;
}
.btn.dark {
    background: #111;
    color: #fff;
}

.notice-slider { overflow: hidden; }
.notice-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
    will-change: transform;
}
.notice-card {
    flex: 0 0 calc((100% - 32px) / 3);
    background: #fff;
    border: 1px solid #e9e9e9;
    min-height: 146px;
    padding: 14px;
}
.notice-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    height: 42px;
    overflow: hidden;
}
.notice-card p {
    margin: 8px 0 8px;
    color: #696969;
    font-size: 16px;
    line-height: 1.6;
    min-height: 38px;
    max-height: 38px;
    overflow: hidden;
}
.notice-meta {
    color: #8a8a8a;
    font-size: 11px;
}
.notice-slider-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.notice-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
}
.notice-dot.active { background: #161616; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-card {
    display: block;
    border: 1px solid #e4e4e4;
    background: #f8f8f8;
}
.gallery-image {
    display: block;
    height: 250px;
    background: #ddd;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-meta {
    padding: 12px 13px;
    background: #f8f8f8;
}
.gallery-meta strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.gallery-page {
    padding: 56px 0 72px;
}
.gallery-page-title {
    margin: 0 0 28px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
}
.gallery-page-top {
    margin-top: 8px;
    margin-bottom:36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #2f2f2f;
}
.gallery-total {
    font-size: 12px;
    color: #818181;
}
.gallery-sort-form {
    margin: 0;
}
.gallery-sort-select {
    width: 88px !important;
    height: 24px;
    min-width: 88px;
    padding: 0 22px 0 8px;
    font-size: 11px;
    color: #707070;
    border: 1px solid #e2e2e2;
    background: #fff;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 12px) 10px, calc(100% - 8px) 10px;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
}
.gallery-page .product-grid {
    margin-top: 12px;
}
.gallery-meta-row {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #8a8a8a;
}
.gallery-pagination {
    margin-top: 18px;
    text-align: center;
}
.gallery-page-btn {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    font-size: 12px;
    color: #444;
    background: #fff;
}
.gallery-page-btn.active {
    background: #121212;
    border-color: #121212;
    color: #fff;
}
.gallery-search-wrap {
    margin: 26px auto 0;
    width: 420px;
    display: flex;
    gap: 6px;
    align-items: stretch;
}
.gallery-search-label {
    width: 58px;
    height: 36px;
    border: 1px solid #cecece;
    background: #fff;
    font-size: 12px;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}
.gallery-search-input {
    flex: 1;
    height: 36px;
    color: #111 !important;
    border: 1px solid #cecece !important;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    line-height: 34px;
}
.gallery-search-input::placeholder {
    color: #9a9a9a;
}
.gallery-search-btn {
    width: 58px;
    height: 36px;
    border: 1px solid #cecece;
    background: #f0f0f0;
    font-size: 12px;
    color: #111;
    font-weight: 700;
    line-height: 34px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.gallery-search-btn:hover {
    background: #e6e6e6;
}

/* =============================================
   COMMUNITY HUB
   ============================================= */
.community-hub-section {
    padding: 72px 0 80px;
}

.community-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.community-hub-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 44px 40px;
    border: 1.5px solid #e0e6f0;
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.community-hub-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-4px);
    border-color: #4aaba0;
}
.community-hub-card-icon {
    color: #4aaba0;
    line-height: 1;
}
.community-hub-card-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a1a;
    margin: 0;
}
.community-hub-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
    flex: 1;
}
.community-hub-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #4aaba0;
    letter-spacing: 0.02em;
}

/* 서브 탭 (gallery / notice 공용) */
.community-sub-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 28px;
}
.community-sub-tab {
    padding: 10px 28px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}
.community-sub-tab:hover { color: #333; }
.community-sub-tab.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

@media (max-width: 640px) {
    .community-hub-grid { grid-template-columns: 1fr; gap: 16px; }
    .community-hub-card { padding: 30px 24px; }
    .community-hub-card-title { font-size: 22px; }
    .community-sub-tab { padding: 9px 18px 11px; font-size: 14px; }
}

/* =============================================
   (기존) COMMUNITY 스타일
   ============================================= */
.community-page {
    padding: 56px 0 72px;
}
.community-page-title {
    margin: 0;
    font-size: 54px;
    letter-spacing: -1px;
    line-height: 1;
}
.community-page-top {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #2f2f2f;
}
.community-total {
    font-size: 12px;
    color: #818181;
}
.community-sort-select {
    height: 24px;
    min-width: 88px;
    padding: 0 22px 0 8px;
    font-size: 11px;
    color: #707070;
    border: 1px solid #e2e2e2;
    background: #fff;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 12px) 10px, calc(100% - 8px) 10px;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
}
.community-list-table th:nth-child(1),
.community-list-table th:nth-child(3),
.community-list-table th:nth-child(4),
.community-list-table th:nth-child(5),
.community-list-table td:nth-child(1),
.community-list-table td:nth-child(3),
.community-list-table td:nth-child(4),
.community-list-table td:nth-child(5) {
    text-align: center;
}
.community-mobile-list {
    display: none;
}

.gallery-view-page {
    padding-top: 34px;
}
.gallery-view-page .container {
    max-width: 1180px;
}
.gallery-view-page .gallery-page-title {
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid #2f2f2f;
}
.gallery-view-box {
    margin-top: 8px;
    background: transparent;
    border: 0;
    padding: 0;
}
.gallery-view-title {
    margin: 0;
    padding: 8px 0 12px;
    font-size: 40px;
    letter-spacing: -0.9px;
    line-height: 1.1;
    font-weight: 700;
}
.gallery-view-meta {
    background: #eceef1;
    border: 1px solid #e7e9ed;
    min-height: 40px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 34px;
}
.gallery-view-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #6b6b6b;
    white-space: nowrap;
}
.gallery-view-meta .meta-item strong {
    font-size: 12px;
    color: #3d3d3d;
    font-weight: 700;
}
.gallery-view-page .detail-body {
    margin-top: 14px;
    min-height: 140px;
    padding: 0;
    background: transparent;
    color: #515151;
    line-height: 1.9;
    font-size: 13px;
}
.gallery-view-image-wrap {
    margin: 30px 0 0;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #e3e3e3;
}
.gallery-view-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ── 갤러리 이미지 슬라이더 ── */
.gv-slider {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 30px 0 0;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    aspect-ratio: 1 / 1;
}
.gv-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.gv-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}
.gv-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #111;
}
.gv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.gv-arrow:hover { background: rgba(0,0,0,0.72); }
.gv-arrow-prev { left: 12px; }
.gv-arrow-next { right: 12px; }
.gv-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.gv-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.gv-dot.active {
    background: #fff;
    transform: scale(1.25);
}
.gv-counter {
    position: absolute;
    bottom: 12px;
    right: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* 갤러리 카드 이미지 수 뱃지 */
.gallery-image { position: relative; }
.gallery-img-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    pointer-events: none;
}
.gallery-view-page .attachments {
    margin: 18px 0 0;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    padding: 10px;
}
.gallery-view-page .attachment-chip {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 14px;
}
.gallery-view-actions {
    display: flex;
    gap: 8px;
    margin: 36px 0 0;
}
.gallery-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 34px;
    border: 1px solid #d4d4d4;
    background: #ffffff;
    font-size: 12px;
    color: #454545;
}
/* =============================================
   MAIN PAGE — PRODUCT GRID
   ============================================= */
.mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* 공통 카드 */
.mp-card {
    display: block;
    border: 1px solid #e4e4e4;
    background: #f8f8f8;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.mp-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }

.mp-card-image {
    display: block;
    height: 260px;
    background: #ddd;
    overflow: hidden;
    flex-shrink: 0;
}
.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.mp-card:hover .mp-card-image img { transform: scale(1.04); }
.mp-card-noimage {
    display: block;
    width: 100%;
    height: 100%;
    background: #ececec;
}
.mp-card-meta {
    padding: 16px 18px;
    background: #f8f8f8;
}
.mp-card-meta strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mp-card-meta span {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* 전체 제품 보기 카드 — grid stretch로 인접 카드와 높이 자동 일치 */
.mp-card--all {
    background: #c8d8d4;
    border-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/hero-product.jpg');
    background-size: cover;
    background-position: center;
}
.mp-card--all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.45);
}
.mp-card-all-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 24px;
}
.mp-card-all-title {
    font-size: 32px;
    font-weight: 700;
    color: #2f2f2f;
    letter-spacing: -0.5px;
}
.mp-card-all-btn {
    display: inline-block;
    padding: 8px 22px;
    border: 1.5px solid #4aaba0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #4aaba0;
    background: rgba(255,255,255,0.7);
    transition: background 0.2s, color 0.2s;
}
.mp-card--all:hover .mp-card-all-btn {
    background: #4aaba0;
    color: #fff;
}


.main-product-title {
    text-align: left;
    margin: 0 0 24px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.table th,
.table td {
    padding: 13px 12px;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    color: #3d3d3d;
}
.table th {
    background: #f9f9f9;
    font-weight: 600;
}
.table .board-empty td {
    text-align: center;
    color: #aaa;
    padding: 56px 12px;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
}

.detail-box {
    /* background: #f4f4f4;
    border: 1px solid #e5e5e5;
    padding: 28px; */
    padding-top:10px;
}
.detail-body {
    margin-top: 26px;
    min-height: 220px;
    line-height: 1.9;
    white-space: pre-line;
    color: #444;
}
.attachments {
    margin-top: 24px;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    padding: 12px;
}
.attachment-chip {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 20px;
    border: 1px solid #d8d8d8;
    background: #fff;
    font-size: 12px;
}

/* 2단 레이아웃 */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    /* gap: 40px; */
    align-items: stretch;
}

/* 좌측 — 지도 + 연락처 */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}
.contact-map-wrap {
    flex: 1 1 0;
    min-height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    line-height: 0;
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: #fff;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2fafa;
    color: #4aaba0;
    flex-shrink: 0;
    margin-top: 1px;
}
.contact-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 3px;
}
.contact-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    word-break: break-all;
}
.contact-info-value:hover { color: #4aaba0; }

/* 우측 — 폼 */
.contact-panel {
    width: 100%;
    padding: 34px 34px 30px;
    border: 1px solid #e7e7e7;
    background: #f4f4f4;
}
.contact-line {
    width: 70px;
    height: 2px;
    background: #3b3b3b;
    margin-bottom: 16px;
}
.contact-title {
    margin: 0 0 24px;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.2;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}
.form-group { margin-bottom: 10px; }
.form-group.full { grid-column: 1 / -1; }

.contact-cod-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #333;
    appearance: auto;
    cursor: pointer;
}
label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}
input, select, textarea {
    width: 100%;
    border: 1px solid #dddddd;
    background: #fff;
    padding: 10px 12px;
    font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.policy {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 12px;
    margin: 18px 0 26px;
}
.policy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.policy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #4a4a4a;
}
.policy-link {
    font-size: 12px;
    color: #7d7d7d;
    text-decoration: underline;
}
.cf-turnstile-wrap {
    margin: 18px 0 4px;
    display: flex;
    justify-content: center;
}

.contact-btn-wrap {
    text-align: center;
}
.contact-submit-btn {
    min-width: 170px;
    height: 52px;
    font-size: 16px;
    border-radius: 30px;
}

.layer-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}
.layer-popup.open {
    display: block;
}
.layer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.layer-panel {
    position: relative;
    width: min(920px, calc(100% - 28px));
    margin: 42px auto;
    max-height: calc(100vh - 84px);
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}
.layer-header {
    height: 56px;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}
.layer-header h3 {
    margin: 0;
    font-size: 18px;
}
.layer-close {
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #3a3a3a;
}
.layer-content {
    padding: 16px 18px 18px;
    overflow: auto;
}
.terms-text {
    margin: 0;
    white-space: pre-wrap;
    font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
}

.feature-grid, .circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.feature-item {
    border: 1px solid #e3e3e3;
    background: #f7f7f7;
    padding: 24px;
}

/* =============================================
   COMPANY — Our Value Chain
   ============================================= */
.vc-section {
    padding-top: 64px;
    padding-bottom: 72px;
}

.vc-header {
    text-align: left;
    margin-bottom: 36px;
}

.vc-label {
    display: block;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
    margin: 0 0 28px;
}

/* 4열 그리드 */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 카드 */
.vc-card {
    border: 1.5px solid #d0d8e4;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.vc-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.vc-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8edf3;
    border-radius: 12px 12px 0 0;
}
.vc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.vc-card:hover .vc-card-img img {
    transform: scale(1.05);
}

.vc-card-body {
    padding: 18px 20px 22px;
    flex: 1;
}

.vc-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 14px;
}

.vc-card-sub {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0;
}

.vc-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.vc-card-list li {
    font-size: 13px;
    color: #444;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}
.vc-card-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #888;
}

/* 반응형 */
@media (max-width: 1100px) {
    .vc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .vc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vc-card-body { padding: 14px 14px 18px; }
    .vc-card-title { font-size: 13px; margin-bottom: 10px; }
    .vc-card-sub { font-size: 11px; }
    .vc-card-list li { font-size: 11px; }
    .vc-label { font-size: 18px; }
}

/* =============================================
   COMPANY — Why Us (반반 레이아웃)
   ============================================= */
.why-us-section {
    padding: 80px 0;
    background: #f7f8fb;
}

.why-us-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

/* 좌측 */
.why-us-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4aaba0;
    margin: 0 0 12px;
}

.why-us-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.1;
}

.why-us-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    word-break: keep-all;
}

/* 우측: 2×2 카드 */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-us-card {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 12px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.why-us-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.why-us-card-icon {
    font-size: 24px;
    line-height: 1;
}

.why-us-card strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.why-us-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin: 0;
    word-break: keep-all;
}

/* =============================================
   COMPANY — Global Expansion (반반 레이아웃)
   ============================================= */
.global-section {
    overflow: hidden;
}

.global-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* 좌측: 이미지 */
.global-image-col {
    position: relative;
    overflow: hidden;
}

.global-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,24,48,0.45), rgba(27,40,80,0.25));
}

/* 우측: 텍스트 */
.global-text-col {
    background: #0d1e3d;
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.global-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4aaba0;
    margin: 0 0 14px;
}

.global-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
}

.global-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0 0 28px;
    word-break: keep-all;
}

.global-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.global-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.global-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #4aaba0;
    font-size: 12px;
}

.global-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s;
}

.global-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* 반응형 */
@media (max-width: 1100px) {
    .why-us-split { gap: 40px; }
    .global-text-col { padding: 48px 40px; }
    .global-title { font-size: 32px; }
}

@media (max-width: 920px) {
    .why-us-split { grid-template-columns: 1fr; gap: 36px; }
    .why-us-title { font-size: 32px; }
    .global-split { grid-template-columns: 1fr; }
    .global-image-col { height: 280px; }
    .global-text-col { padding: 40px 28px; }
    .global-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .why-us-section { padding: 52px 0; }
    .why-us-title { font-size: 26px; }
    .why-us-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .why-us-card { padding: 18px 14px; }
    .why-us-card strong { font-size: 13px; }
    .why-us-card p { font-size: 12px; }
    .global-image-col { height: 220px; }
    .global-text-col { padding: 32px 20px; }
    .global-title { font-size: 24px; }
    .global-desc { font-size: 13px; }
}

/* =============================================
   (기존) COMPANY 스타일
   ============================================= */
.company-intro {
    padding-top: 46px;
    padding-bottom: 34px;
}
.company-line {
    width: 70px;
    height: 2px;
    background: #3b3b3b;
    margin: 0 auto 24px;
}
.company-title {
    margin: 0;
    text-align: center;
    font-size: 30px;
    letter-spacing: -1.4px;
    line-height: 1.2;
}
.company-subtitle {
    margin: 22px auto 0;
    text-align: center;
    max-width: 860px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
.company-visual {
    padding-bottom: 44px;
    overflow: hidden;
}
.company-visual .container {
    width: 100%;
    max-width: none;
}
.company-visual-box {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 286px;
    border: 1px solid #dfe5eb;
    background:
        linear-gradient(115deg, rgba(47, 73, 96, 0.3), rgba(180, 197, 210, 0.25)),
        linear-gradient(130deg, #8fa3bb 0%, #d2dde8 35%, #b8c7d8 100%);
}
.company-strength {
    padding-bottom: 6px;
}
.company-circle-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 34px;
}
.company-circle-item {
    background: #ececec;
    border-radius: 50%;
    width: 226px;
    height: 226px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.company-icon {
    font-size: 26px;
    line-height: 1;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #e57f6d;
}
.company-circle-item:nth-child(2) .company-icon {
    color: #e56b6b;
}
.company-circle-item:nth-child(3) .company-icon {
    color: #de6767;
}
.company-circle-item strong {
    display: block;
    font-size: 15px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    color: #262626;
    line-height: 1.2;
    min-height: 18px;
}
.company-circle-item p {
    margin: 0;
    font-size: 12px;
    color: #7b7b7b;
    line-height: 1.55;
    min-height: 38px;
}
.company-message {
    margin: 42px auto 0;
    max-width: 960px;
    text-align: center;
}
.company-message p {
    margin: 0 0 14px;
    color: #666;
    line-height: 2;
    font-size: 15px;
}
.company-message .company-thanks {
    margin-top: 20px;
}

.business-intro {
    padding-top: 46px;
    padding-bottom: 70px;
}
.business-line {
    width: 70px;
    height: 2px;
    background: #3b3b3b;
    margin: 0 auto 22px;
}
.business-title {
    margin: 0;
    text-align: center;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.2;
    font-weight: 700;
}
.business-subtitle {
    margin: 20px auto 0;
    text-align: center;
    max-width: 860px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
.business-vision-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.business-vision-card {
    background: #ebebeb;
    border: 1px solid #dfdfdf;
}
.business-vision-card h3 {
    margin: 0;
    padding: 15px 14px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #8ea4b8;
    letter-spacing: -0.2px;
}
.business-vision-card p {
    margin: 0;
    padding: 20px;
    min-height: 152px;
    color: #555;
    font-size: 14px;
    line-height: 1.75;
}
.business-strength {
    padding-top: 10px;
    padding-bottom: 74px;
}
.business-action {
    margin-top: 24px;
    text-align: center;
}

.site-footer {
    /* margin-top: 92px; */
    background: linear-gradient(180deg, #2b2d34, #24252a);
    color: #9ea1ac;
}
.footer-inner {
    padding: 44px 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-logo {
    color: #fff;
    font-size: 40px;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.footer-logo-image {
    height: 40px;
    width: auto;
    display: block;
}
.footer-left p,
.footer-right p {
    margin: 5px 0;
    font-size: 12px;
    color: #9b9ea8;
}
.footer-phone {
    margin-bottom: 12px;
    color: #fff;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: calc(100vw - 28px);
    height: 100vh;
    background: #efefef;
    z-index: 10001;
    transition: right 0.25s ease;
    padding: 8px 12px 24px;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: right;
    align-items: center;
}
.mobile-close {
    border: 0;
    background: transparent;
    font-size: 34px;
    cursor: pointer;
    color: #333;
}
.mobile-nav { margin-top: 10px; }
.mobile-nav > a,
.mobile-nav-accordion-btn {
    display: block;
    width: 100%;
    padding: 20px 8px 18px;
    border-bottom: 1px solid #d2d2d2;
    color: #3a3a3a;
    font-size: 38px;
    letter-spacing: -0.7px;
    font-weight: 700;
    text-align: left;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: inherit;
}

/* 모바일 아코디언 */
.mobile-nav-accordion {
    border-bottom: 1px solid #d2d2d2;
}
.mobile-nav-accordion .mobile-nav-accordion-btn {
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-arrow {
    font-size: 24px;
    transition: transform 0.2s;
    line-height: 1;
}
.mobile-nav-accordion-btn.open .accordion-arrow {
    transform: rotate(180deg);
}
.mobile-nav-sub {
    display: none;
    background: #e8e8e8;
    padding: 4px 0;
}
.mobile-nav-sub.open {
    display: block;
}
.mobile-nav-sub a {
    display: block;
    padding: 12px 24px;
    font-size: 22px;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #d5d5d5;
    letter-spacing: -0.3px;
}
.mobile-nav-sub a:last-child { border-bottom: none; }
.mobile-nav-sub a:hover { background: #ddd; color: #111; }
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}
.mobile-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.notice {
    margin: 14px 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}
.notice.success { background: #e9f7ef; color: #205f42; }
.notice.error { background: #ffeceb; color: #8a2d2d; }

@media (max-width: 1240px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
    .desktop-nav { display: none; }
    .mobile-menu-button { display: inline-block; }
    .container { width: min(1200px, calc(100% - 30px)); }

    .header-inner { height: 56px; }
    .hero-slider { height: 300px; }
    .hero-title { font-size: 30px; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 12px; margin-bottom: 10px; }
    .hero-slider-dots { bottom: 16px; }

    .hero-business,
    .hero-company,
    .hero-contact,
    .hero-gallery,
    .hero-gallery-view,
    .hero-community,
    .hero-community-view,
    .hero-product {
        height: 190px;
        align-items: center;
        padding-bottom: 0;
    }
    .hero p { font-size: 12px; margin-bottom: 6px; }
    .hero h1 { font-size: 34px; }

    .section { padding: 58px 0; }
    .section-title { font-size: 45px; }
    .section-subtitle { font-size: 14px; line-height: 1.7; }

    .vision-grid,
    .stats-wrap,
    .main-feature-grid,
    .business-vision-grid,
    .gallery-grid,
    .form-grid,
    .feature-grid,
    .circle-grid {
        grid-template-columns: 1fr;
    }
    .company-circle-grid { gap: 16px; }
    .stats-box h2 { font-size: 40px; }

    .notice-card { flex: 0 0 100%; }
    .board-header h2, .board-header h3 { font-size: 34px; }
    .main-intro-copy { font-size: 28px; }
    .main-product-title { font-size: 30px; }
    .gallery-page-title { font-size: 30px; }
    .community-page-title { font-size: 30px; }
    .product-page-title { font-size: 30px; }
    .vc-label { font-size: 30px; }
    .mp-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-card-image { height: 200px; }
    .mp-card-all-title { font-size: 26px; }
    .company-title { font-size: 44px; }
    .business-title { font-size: 28px; }
    .company-visual-box { height: 220px; }
    .gallery-page-title { font-size: 34px; }
    .community-page-title { font-size: 34px; }
    .gallery-view-title { font-size: 30px; }
    .gallery-view-meta { gap: 24px; padding: 9px 12px; }
    .gallery-search-wrap { width: 360px; }
    .company-circle-item {
        width: 210px;
        height: 210px;
        max-width: 320px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
    }
    .footer-logo { font-size: 28px; }
    .footer-phone { font-size: 42px; }
}

@media (max-width: 600px) {
    .gallery-meta strong {
        font-size:15px;
    }
    .header-inner { height: 52px; }
    .logo-image { height: 23px; }
    .logo-main { font-size: 17px; }
    .logo-sub { font-size: 10px; }

    .hero-slider { height: 220px; }
    .hero-title { font-size: 22px; letter-spacing: -0.3px; }
    .hero-subtitle { font-size: 11px; }

    .hero-business,
    .hero-company,
    .hero-contact,
    .hero-gallery,
    .hero-gallery-view,
    .hero-community,
    .hero-community-view,
    .hero-product {
        height: 170px;
    }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 11px; }

    .section-title { font-size: 36px; }
    .stats-box h2 { font-size: 32px; }
    .stats-grid b { font-size: 42px; }
    .main-intro-copy { font-size: 20px; margin-top: 14px; }
    .main-feature-card h3 { font-size: 18px; }
    .main-product-title { font-size: 24px; }
    .gallery-page-title { font-size: 24px; }
    .community-page-title { font-size: 24px; }
    .product-page-title { font-size: 24px; }
    .vc-label { font-size: 24px; }
    .mp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mp-card-image { height: 160px; }
    .mp-card-all-title { font-size: 20px; }
    .mp-card-meta strong { font-size: 13px; }
    .mp-card-meta span { font-size: 11px; }
    .company-title { font-size: 34px; }
    .business-title { font-size: 24px; }
    .company-subtitle { font-size: 13px; }
    .business-subtitle { font-size: 13px; }
    .company-message p { font-size: 13px; line-height: 1.8; }
    .gallery-page-top { margin-top: 8px; }
    .gallery-page .gallery-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .gallery-page .gallery-list-grid .gallery-image {
        height: 148px;
    }
    .gallery-page .gallery-list-grid .gallery-meta {
        padding: 8px 8px 9px;
    }
    .gallery-page .gallery-list-grid .gallery-meta strong {
        font-size: 15px;
    }
    .gallery-page .gallery-list-grid .gallery-meta-row {
        font-size: 12px;
    }
    .gallery-search-wrap { width: 100%; }
    .gallery-search-label { width: 52px; }
    .gallery-view-title { font-size: 30px; }
    .gallery-view-page .gallery-page-title { font-size: 30px; }
    .gallery-view-image-wrap { margin-top: 70px; }
    .gallery-view-meta {
        flex-wrap: wrap;
        gap: 12px 18px;
        padding: 8px 10px;
    }
    .gallery-view-meta .meta-item { font-size: 14px; }
    .gallery-view-meta .meta-item strong { font-size: 11px; }
    .gallery-action-btn { min-width: 66px; height: 32px; }
    .community-list-table {
        display: none;
    }
    .community-mobile-list {
        display: block;
        /* margin-top: 10px; */
        /* border-top: 1px solid #d6d6d6; */
    }
    .community-mobile-card {
        padding: 12px 6px 10px;
        border-bottom: 1px solid #e8e8e8;
    }
    .community-mobile-title {
        display: block;
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: -0.4px;
        color: #3d3d3d;
        margin-bottom: 8px;
    }
    .community-mobile-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #8f8f8f;
    }
    .community-mobile-empty {
        margin: 20px 0;
        color: #7a7a7a;
        font-size: 14px;
    }
    .company-circle-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .company-circle-item {
        width: 180px;
        height: 180px;
        padding-top: 28px;
    }
    .company-circle-item strong { font-size: 13px; }
    .company-circle-item p { font-size: 11px; }
    .company-icon { font-size: 20px; margin-bottom: 10px; }

    .mobile-nav > a,
    .mobile-nav-accordion-btn {
        font-size: 36px;
        padding: 16px 6px;
    }
    .mobile-nav-sub a {
        font-size: 20px;
        padding: 11px 22px;
    }

    .contact-layout { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .contact-map-wrap { flex: none; }
    .contact-map-wrap iframe { height: 260px; }
    .contact-panel { padding: 24px 18px; }
    .contact-title { font-size: 26px; }
    .policy-row { flex-direction: row; align-items: center; }
    .footer-logo-image { height: 40px; }
    .layer-panel {
        width: calc(100% - 18px);
        margin-top: 16px;
        max-height: calc(100vh - 32px);
    }
    .terms-text {
        font-size: 13px;
    }
}

/* =============================================
   PRODUCT LIST PAGE
   ============================================= */
.product-list-page { padding: 56px 0 72px; }

.product-page-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
    margin: 0 0 28px;
    color: #1a1a1a;
}

.product-category-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0;
}

.product-cat-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.product-cat-tab:hover { color: #1a1a1a; }
.product-cat-tab.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
}
.product-card:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.product-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-noimage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    color: #bbb;
}

.product-card-meta {
    padding: 12px 14px 14px;
}
.product-card-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-cat {
    font-size: 12px;
    color: #888;
}

.product-empty {
    text-align: center;
    color: #888;
    padding: 60px 0;
    font-size: 16px;
}


/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-view-page { padding: 56px 0 72px; }

.product-view-top {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 56px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.product-view-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-view-main-image {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.product-view-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}
.product-view-noimage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #bbb;
    font-size: 14px;
}

.product-view-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.product-thumb-btn {
    width: 72px;
    height: 72px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    background: #f5f5f5;
    cursor: pointer;
    transition: border-color 0.15s;
    flex-shrink: 0;
}
.product-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-thumb-btn.active,
.product-thumb-btn:hover { border-color: #1a1a1a; }

.product-view-info {
    padding-top: 12px;
}
.product-view-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0 0 30px;
}

.product-view-desc-block { margin-bottom: 30px; }
.product-view-desc-label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 8px;
}
.product-view-description {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
}
/* Quill 서식 출력 보정 */
.product-view-description .ql-editor h1,
.product-view-description .ql-editor h2,
.product-view-description .ql-editor h3 { font-weight: 700; margin: 0.6em 0 0.3em; color: #1a1a1a; }
.product-view-description .ql-editor h1 { font-size: 1.5em; }
.product-view-description .ql-editor h2 { font-size: 1.25em; }
.product-view-description .ql-editor h3 { font-size: 1.1em; }
.product-view-description .ql-editor ul,
.product-view-description .ql-editor ol { padding-left: 1.5em; margin: 0.4em 0; }
.product-view-description .ql-editor a { color: #1a8c5b; }
.product-view-description .ql-editor p { margin: 0 0 0.5em; }

.product-view-shop { margin-top: 10px; }
.product-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid #2aac72;
    border-radius: 30px;
    color: #1a8c5b;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.product-shop-btn:hover {
    background: #2aac72;
    color: #fff;
}

.product-view-table-wrap {
    margin-bottom: 40px;
}
.product-table-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1a1a1a;
}
.product-table-scroll { overflow-x: auto; }
.product-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}
.product-compare-table th {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}
.product-compare-table td {
    padding: 11px 16px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    color: #3a3a3a;
}
.product-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f8f8;
    color: #555;
    white-space: nowrap;
}
.product-compare-table th:first-child {
    background: #1a1a1a;
}
.product-compare-table tbody tr:last-child td { border-bottom: 1px solid #d0d0d0; }
.product-compare-table tbody tr:hover td { background: #f5f5f5; }
.product-compare-table tbody tr:hover td:first-child { background: #efefef; }

.product-view-back { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eaeaea; }
.product-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 20px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    color: #4a4a4a;
    background: #fff;
    transition: background 0.15s, color 0.15s;
}
.product-back-btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Product responsive */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .product-view-top { grid-template-columns: 400px 1fr; gap: 36px; }
}
@media (max-width: 860px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-view-top { grid-template-columns: 1fr; gap: 28px; }
    .product-view-title { font-size: 28px; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
    .product-page-title { font-size: 24px; }
    .product-category-tabs { gap: 4px; }
    .product-cat-tab { padding: 8px 12px; font-size: 13px; }
}

/* ========== 팝업 레이어 ========== */
.popup-layer {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-60%);
    z-index: 9999;
    width: 400px;
    max-height: 90vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    background: #000;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.popup-item {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.popup-item.is-active {
    display: flex;
}

.popup-img-link {
    display: block;
    line-height: 0;
}

.popup-img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

/* 제목 탭 바 */
.popup-tabs {
    display: flex;
    background: #1a1a1a;
}

.popup-tab {
    flex: 1;
    padding: 11px 6px;
    background: none;
    border: none;
    border-top: 2px solid transparent;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popup-tab.is-active {
    color: #fff;
    border-top-color: #fff;
    background: #2a2a2a;
}

.popup-tab:hover:not(.is-active) {
    color: #ccc;
    background: #222;
}

/* 하단 버튼 바 */
.popup-footer {
    display: flex;
    background: #111;
    border-top: 1px solid #222;
}

.popup-today-close,
.popup-close-btn {
    flex: 1;
    background: none;
    border: none;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.15s, background 0.15s;
    text-align: center;
}

.popup-today-close {
    border-right: 1px solid #222;
}

.popup-today-close:hover,
.popup-close-btn:hover {
    color: #ccc;
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .popup-layer {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -58%);
        width: 82%;
        max-width: 340px;
        max-height: 80vh;
    }
    .popup-img {
        max-height: 52vh;
        object-fit: cover;
    }
}

