html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", Roboto, sans-serif;
    color: #212121;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip; /* clip: 가로 넘침만 막고 스크롤 컨테이너는 안 만듦 → iOS에서 문서가 window 기준 자연 스크롤 */
    word-break: keep-all;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-x: clip;
}
/* 모든 섹션에 overflow-x: hidden 강제 — 안의 콘텐츠가 밖으로 새는 걸 차단.
   min-width:0 = 플렉스 자식이 넓은 내용(마퀴 등)에 늘어나는 것 방지 */
.page > * { overflow-x: hidden; max-width: 100%; min-width: 0; }

.section {
    align-self: stretch;
    padding: 73px 16px 73px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 24px;
}


.gnb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    padding: 0 40px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
/* 헤더는 드롭다운이 아래로 펼쳐져야 하므로 .page>* 의 overflow 클리핑 해제 */
.page > .gnb { overflow: visible; }
/* 스크롤 시(또는 모바일 메뉴 열림 시) 연한 반투명 화이트 배경 — 내비가 본문과 안 겹치게 */
.gnb.is-scrolled,
.gnb.is-open {
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}
/* 헤더가 투명·고정이므로 본문(히어로)은 맨 위(0)에서 시작 — 상단 흰 여백 방지.
   히어로 자체 padding-top(200px 등)이 헤더 높이보다 커서 내용이 가려지지 않음 */
.gnb__brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.gnb__logo { display: block; width: 132px; height: auto; }

/* 중앙 내비 메뉴 */
.gnb__nav {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}
.gnb__item {
    position: relative;
    height: 64px;
    display: flex;
    align-items: center;
}
.gnb__top {
    font-family: 'volte', 'Pretendard Variable', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1;
    color: #212121;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.gnb__item:hover .gnb__top { color: #2268FD; }

/* hover 드롭다운 (depth2) — 라이트 카드 */
.gnb__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 184px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(33, 33, 33, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 10;
}
.gnb__item:hover .gnb__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.gnb__sub a {
    padding: 9px 14px;
    border-radius: 8px;
    font-family: 'volte', 'Pretendard Variable', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3c3c3c;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.gnb__sub a:hover { background: rgba(34, 104, 253, 0.08); color: #2268FD; }

/* Product 메가 드롭다운 — 아이콘 + 제품명 + 설명 (메인 사이트와 동일 구성) */
.gnb__sub--mega {
    left: 0;
    transform: translateX(0) translateY(8px);
    min-width: 392px;
    padding: 10px;
    gap: 0;
}
.gnb__item:hover .gnb__sub--mega { transform: translateX(0) translateY(0); }
.gnb__sub--mega a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    white-space: normal;
}
.gnb__sub-ico {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 8px;
}
.gnb__sub-tx { display: flex; flex-direction: column; gap: 3px; }
.gnb__sub-name { font-size: 15px; font-weight: 600; color: #212121; line-height: 1.25; transition: color 0.15s ease; }
.gnb__sub-desc { font-size: 12px; font-weight: 400; color: #6c6c6c; line-height: 1.45; }
.gnb__sub--mega a:hover { background: rgba(34, 104, 253, 0.06); }
.gnb__sub--mega a:hover .gnb__sub-name { color: #2268FD; }
/* hover 시 항목 사이를 슬라이드하는 그라데이션 밑줄 바 (색상: 기존 헤더와 동일) */
.gnb__nav-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2268FD 0%, #7E46FF 40%, #7E46FF 65%, #F22C82 100%);
    opacity: 0;
    pointer-events: none;
    transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
}

/* 우측 유틸 (KR + 햄버거) */
.gnb__util { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* 언어 토글: KR(현재) + hover 시 EN 옵션 노출 */
.gnb__lang {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.gnb__lang-cur,
.gnb__lang-opt {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #5F5F5F;
    border-radius: 10px;
    font-family: 'grilroy', 'Pretendard Variable', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.42px;
    color: #212121;
    text-decoration: none;
    background: #fff;
    cursor: pointer;
}
.gnb__lang-opt {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s, color 0.15s ease, border-color 0.15s ease;
}
.gnb__lang:hover .gnb__lang-opt {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gnb__lang-opt:hover { color: #2268FD; border-color: #2268FD; }
.gnb__toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.gnb__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #212121;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Layer: Hero ===== */
.hero-section {
    position: relative;
    padding: 200px 16px 210px;
    overflow: hidden;
    min-height: 100vh;
    background: #ffffff url("/coex2026/assets/hero-bg.png") center top / cover no-repeat;
    gap: 28px;
}
.hero-section::before {
    display: none;
    content: "";
    position: absolute;
    top: -180px;
    left: 40px;
    right: 40px;
    min-height: 50vh;
    bottom: 480px;
    border-radius: 0 0 50% 50%;
    background:
        radial-gradient(circle at 50% 100%, rgba(190, 194, 253, 0.30), transparent 50%),
        radial-gradient(circle at -2% 120px, rgba(177, 221, 253, 0.50), transparent 55%),
        radial-gradient(circle at 12% 120px, rgba(34, 104, 253, 0.45), transparent 55%),
        radial-gradient(circle at 38% 120px, rgba(34, 104, 253, 0.40), transparent 55%),
        radial-gradient(circle at 62% 120px, rgba(126, 70, 255, 0.45), transparent 55%),
        radial-gradient(circle at 88% 120px, rgba(126, 70, 255, 0.45), transparent 55%);
    filter: blur(100px);
    pointer-events: none;
}
.hero-section > * { position: relative; z-index: 1; }


/* ===== Layer: Video ===== */
.video-section { /* uses .section defaults */ }

/* ===== Layer: Painpoint ===== */
.painpoint-section { background: linear-gradient(0deg, #FFFFFF 0%, #FBFCFF 100%), white; }

/* ===== Layer: AxDC ===== */
/* 제목 영역(eyebrow/heading/subtitle)은 흰 배경, 이미지는 .axdc-bg-area(통계 카드)부터 시작 */
.axdc-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding-bottom: 0;   /* 이미지(.axdc-bg-area)가 섹션 바닥까지 가도록 — 아래 흰 여백 제거 */
}
.axdc-section::before,
.axdc-section::after { display: none; }
.axdc-section > * { position: relative; z-index: 1; }
/* 통계 카드~피처 영역에만 그라데이션 이미지 (좌우 풀블리드) */
.axdc-bg-area {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 40px 16px 52px;
    /* 위쪽: 길게 페이드 / 아래쪽: 짧게 페이드 (흰색→투명을 이미지 위에 겹침) */
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 120px, rgba(255, 255, 255, 0) 450px) no-repeat,
        linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 160px) no-repeat,
        url("/coex2026/assets/axdc-bg.png") center top / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}


.reference-section {
    position: relative;
    padding: 72px 0 48px;
    overflow: hidden;
    background: #ffffff;
    align-items: flex-start;
}

.reference-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 95% at 70% 40%, rgba(220, 208, 251, 0.55), transparent 70%),
        radial-gradient(ellipse 75% 95% at 30% 35%, rgba(193, 217, 252, 0.6), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
/* 상단 짧은 흰색 페이드 — 위 섹션과의 경계선 느낌 제거 (::before 그라데이션 위에 덮임) */
.reference-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}
.reference-section > * { position: relative; z-index: 1; }

/* ===== Layer: Event ===== */
.event-section { background: #FBFCFF; overflow: hidden; }

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.5s cubic-bezier(0.16, 0.84, 0.24, 1) 0.2s,
                transform 1.5s cubic-bezier(0.16, 0.84, 0.24, 1) 0.2s;
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.0s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 1.0s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.20s; }
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.56s; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.68s; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.80s; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.92s; }
.reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 1.04s; }
.reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 1.16s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 1.28s; }
.reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 1.40s; }
.reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 1.52s; }


.stats-card .stats-bar {
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stats-card .stats-bar__value,
.stats-card .stats-bar__label {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.stats-card.is-visible .stats-bar { transform: scaleY(1); }
.stats-card.is-visible .stats-bar__value,
.stats-card.is-visible .stats-bar__label { opacity: 1; }
.stats-card.is-visible .stats-chart__col:nth-child(1) .stats-bar { transition-delay: 0.50s; }
.stats-card.is-visible .stats-chart__col:nth-child(2) .stats-bar { transition-delay: 0.65s; }
.stats-card.is-visible .stats-chart__col:nth-child(3) .stats-bar { transition-delay: 0.80s; }
.stats-card.is-visible .stats-chart__col:nth-child(4) .stats-bar { transition-delay: 0.95s; }
.stats-card.is-visible .stats-chart__col:nth-child(5) .stats-bar { transition-delay: 1.20s; }
.stats-card.is-visible .stats-chart__col:nth-child(1) .stats-bar__value,
.stats-card.is-visible .stats-chart__col:nth-child(1) .stats-bar__label { transition-delay: 1.85s; }
.stats-card.is-visible .stats-chart__col:nth-child(2) .stats-bar__value,
.stats-card.is-visible .stats-chart__col:nth-child(2) .stats-bar__label { transition-delay: 2.00s; }
.stats-card.is-visible .stats-chart__col:nth-child(3) .stats-bar__value,
.stats-card.is-visible .stats-chart__col:nth-child(3) .stats-bar__label { transition-delay: 2.15s; }
.stats-card.is-visible .stats-chart__col:nth-child(4) .stats-bar__value,
.stats-card.is-visible .stats-chart__col:nth-child(4) .stats-bar__label { transition-delay: 2.30s; }
.stats-card.is-visible .stats-chart__col:nth-child(5) .stats-bar__value,
.stats-card.is-visible .stats-chart__col:nth-child(5) .stats-bar__label { transition-delay: 2.55s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > *,
    .stats-card .stats-bar,
    .stats-card .stats-bar__value, .stats-card .stats-bar__label {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.event-section-2 { background: #FBFCFF; overflow: hidden; }
.kolas-card {
    width: 100%;
    max-width: 1650px;
    padding: 24px;
    background: white;
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.kolas-item {
    width: 290px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.kolas-item--image img {
    max-height: 170px;
    width: auto;
    display: block;
}
.kolas-item__title {
    align-self: stretch;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #2268FD;
}
.kolas-item__desc {
    align-self: stretch;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #212121;
}
.kolas-item__iso {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #212121;
}

/* ===== 시험성적서 분류 (KOLAS 공인 / 일반) ===== */
.cert-grid {
    width: 100%;
    max-width: 1650px;
    display: grid;
    grid-template-columns: minmax(0, 928px) minmax(0, 692px);
    grid-template-rows: auto;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}
.cert-col {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.cert-col--blue,
.cert-col--purple { max-width: none; }
.cert-col__head {
    padding: 18px 26px;
    border: 1px solid #DEDEDE;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.cert-col--blue .cert-col__head {
    background: rgba(34, 104, 253, 0.10);
    color: #2268FD;
}
.cert-col--purple .cert-col__head {
    background: rgba(126, 70, 255, 0.10);
    color: #7E46FF;
}
.cert-col__body {
    flex: 1;
    padding: 18px 12px;
    background: white;
    border: 1px solid #DEDEDE;
    border-top: none;
    border-radius: 0 0 16px 16px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
}
.cert-card {
    width: 100%;
    min-width: 0;
    padding: 24px 18px;
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cert-card__icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}
.cert-card__label {
    align-self: stretch;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #212121;
}
.cert-card__desc {
    align-self: stretch;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #646464;
}

/* ===== Layer: CTA ===== */
.cta-section { padding: 110px 16px; overflow: hidden; }

/* ============================================================
   Customer Cases / Customers / Investors  (con_wrap n13)
   index.html(css/main.css)에서 가져옴 — 1920 디자인 기준 데스크탑 값.
   반응형은 .page 전체 zoom 스케일로 처리됨(개별 미디어쿼리 미적용).
   ============================================================ */
.con_wrap{ width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;}
/* 화면 크기와 무관하게 양옆 여백 보장 (16px~64px), 넓은 화면은 max-width 가운데 정렬 */
.con_wrap .inner{ width: 100%; max-width: 1680px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 64px);}
.con_wrap.n13{ padding: 100px 0 0 0;}
.con_wrap.n13 .inner{ display: flex; flex-direction: column;}
.con_wrap.n13 ul{ list-style: none;}
.con_wrap.n13 .tit{ font-family: inherit; font-weight: 700; font-size: 26px; color: #000; line-height: 1.2; text-align: center;}
/* 메인 제목 "Customer Cases"는 더 크게(섹션 타이틀). 라벨(Customers/Investors)은 26px 유지 */
.con_wrap.n13 .tit-box .tit{ font-size: 34px;}
.con_wrap.n13 .customer-list{ display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0 50px;}
.con_wrap.n13 .customer-list .item{ height: 60px; background: no-repeat center center; background-size: auto 100%; text-indent: -9999px; display: inline-block;}
.con_wrap.n13 .customer-list .item.n1{ width: 128px; background-image: url(/coex2026/assets/customer-sk.png);}
.con_wrap.n13 .customer-list .item.n2{ width: 126px; background-image: url(/coex2026/assets/customer-posco.png);}
.con_wrap.n13 .customer-list .item.n3{ width: 122px; background-image: url(/coex2026/assets/customer-samsung.png);}
.con_wrap.n13 .customer-list .item.n4{ width: 172px; background-image: url(/coex2026/assets/customer-hyundai.png);}
/* 모바일 전용 로고 줄 — 데스크톱에선 숨김 (박스 안 로고만 사용) */
.con_wrap.n13 .customer-list--mo{ display: none; }
.con_wrap.n13 .banner-box{ margin: 32px 0 0 0; height: 340px; background-color: #FAFAFA; padding: 44px 0 26px 0; display: flex; flex-direction: column; border-radius: 16px;}
.con_wrap.n13 .banner-box .sliderBox{ padding: 60px 0 50px 0; flex: 1; overflow: hidden;}
/* touchSlider 베이스 (css/common.css에서 가져옴) — 없으면 absolute li가 페이지 최상단으로 튐 */
.con_wrap.n13 .banner-box .sliderBox > ul{ position: relative;}
.con_wrap.n13 .banner-box .sliderBox > ul > li{ position: absolute; top: 0; left: 0;}
.con_wrap.n13 .banner-box .sliderBox > ul > li{ display: flex; flex-direction: column; align-items: center; justify-content: space-between;}
.con_wrap.n13 .banner-box .sliderBox .txt{ font-family: inherit; font-weight: 600; font-size: 18px; color: #2c58ad; text-align: center; line-height: 30px;}
.con_wrap.n13 .banner-box .sliderBox .name{ font-family: inherit; font-weight: 700; font-size: 16px; color: #000; text-align: center; line-height: 18px;}
.con_wrap.n13 .banner-box .controlBox{ display: flex; justify-content: center;}
.con_wrap.n13 .banner-box .paging{ display: flex; justify-content: center;}
.con_wrap.n13 .banner-box .paging .btn_page{ width: 60px; height: 3px; background-color: #D0D6E1; text-indent: -9999px; display: inline-block;}
.con_wrap.n13 .banner-box .paging .btn_page + .btn_page{ margin-left: 10px;}
.con_wrap.n13 .banner-box .paging .btn_page.on{ background-color: #005CFB;}
.con_wrap.n13 .slider-box{ width: 100%; max-width: 1680px; margin: 64px auto; padding: 0 clamp(16px, 5vw, 64px); display: flex; flex-direction: column; align-items: center;}
/* 마퀴 영역 라벨은 슬라이더박스 패딩을 그대로 따르도록 자체 패딩 제거 */
.con_wrap.n13 .slider-box .inner{ max-width: none; padding: 0;}
.con_wrap.n13 .slider-box .slider{ width: 100%; height: 55px; margin: 20px 0 0 0; overflow: hidden; position: relative;}
.con_wrap.n13 .slider-box .slider-inner{ display: flex; position: absolute; top: 0;}
.con_wrap.n13 .slider-box .list{ display: flex; flex-shrink: 0;}
/* 로고 크기 통일: 동일한 셀(박스)에 가운데 정렬 + 최대 높이 고정 */
.con_wrap.n13 .slider-box .item{ flex-shrink: 0; width: 180px; height: 55px; display: flex; align-items: center; justify-content: center;}
.con_wrap.n13 .slider-box img{ width: auto; height: auto; max-width: 130px; max-height: 42px;}
.con_wrap.n13 .slider-box.n1 .slider-inner{ left: 0;}
.con_wrap.n13 .slider-box.n2 .slider-inner{ right: 0;}

/* ===== Layer: Inquiry (문의 폼)  */
.main-contact-us2{padding:80px 20px; margin-top:0; width:100%; border-top:1px solid #ddd;}
.main-contact-us2 .cont{margin:0 auto; max-width:1220px; width:100%; box-sizing:border-box;}
.main-contact-us .cont{display:flex; justify-content: flex-end;}
.main-contact-us .inner{margin-left:auto; padding-left:0; max-width:1220px; width:100%;}
.main-contact-us .tit-area{position:relative; margin-bottom:3.375rem; padding-left:26px;}
.main-contact-us .tit-area:before{position:absolute; left:0; top:0; width:4px; height:100%; background-color:#161616; display:block; content:"";}
/* 제목: 페이지 표준 heading-lg(30px)에 맞춤. HTML이 h3라 h2/h3 모두 타깃 */
.main-contact-us .tit-area h2,
.main-contact-us .tit-area h3{font-size:30px; font-weight:400; color:#161616; line-height:1.4;}
.main-contact-us .tit-area h2 strong,
.main-contact-us .tit-area h3 strong{display:block; font-weight:700;}
.main-contact-us .tit-area p{margin-top:14px; font-size:17px; font-weight:500; color:#3c3c3c; line-height:1.5;}
.main-contact-us .form-area{position:relative; padding-bottom:1.875rem; display:flex;}
.main-contact-us .form-area:before{position:absolute; left:0; bottom:0; width:100%; height:1px; background-color:#d1d1d1; display:block; content:""; background: linear-gradient(91deg, #2268FD 0%, #7E46FF 40%, #7E46FF 65%, #F22C82 100%);}
.main-contact-us .left-area{width:46%;}
.main-contact-us .right-area{margin-left:auto; width:46%;}
.main-contact-us .form-area li{margin-bottom:2.25rem; list-style:none;}
.main-contact-us .form-area li:last-child{margin-bottom:0;}
.main-contact-us .form-area .d-flex{display:flex; gap:10px; align-items: center; flex-wrap:wrap;}
.main-contact-us .form-area .d-flex .error_txt{margin-top:0;}
.main-contact-us .form-area label{font-size:1rem; font-weight:700; color:#161616; display:block;}
.main-contact-us .form-area label strong{display:inline-block; color:#ff4054; font-weight:inherit;}
.main-contact-us .form-area input[type=text]{padding-left:0 !important; width:100%; height:55px; line-height:54px; border:none; border-bottom:1px solid #d1d1d1; font-size:1rem; color:#3c3c3c; padding:0 10px; box-sizing:border-box; transition: all 0.6s ease-out; background:transparent;}
.main-contact-us .form-area textarea::placeholder,
.main-contact-us .form-area input[type=text]::placeholder{color:#9c9c9c; transition: all 0.6s ease-out;}
.main-contact-us .form-area input[type=text]:focus{border:none; outline: none; border-bottom:1px solid #0074FF;}
.main-contact-us .form-area textarea:focus{border-color:#0074ef; outline: none;}
.main-contact-us .form-area textarea{margin-top:1rem; padding:1.25rem; width:100%; height:252px; border:1px solid #d1d1d1; font-size:1rem; color:#3c3c3c; resize:none; box-sizing:border-box; display:block; transition: all 0.6s ease-out; font-family:inherit;}
.main-contact-us .form-area .text_number{margin-top:10px; width:100%; display:block; text-align:right; font-size:0.8125rem; color:#6d6d6d;}
.main-contact-us .form-area .error_txt{margin-top:0.5rem; font-size:0.875rem; color:#ff4054;}
.main-contact-us .agree_txt{display:flex; gap:10px; align-items: flex-start; flex-wrap: wrap;}
.main-contact-us .agree_txt input[type=checkbox]{-webkit-appearance: checkbox !important;}
.main-contact-us .agree_txt label{font-size:0.875rem; color:#3c3c3c; font-family:inherit; font-weight:600; cursor:pointer;}
.main-contact-us .agree_txt label span{margin-top:0.875rem; display:block; font-size:0.875rem; color:#6680b3; font-weight:400;}
.main-contact-us .agree_txt label span strong{font-size:inherit; color:inherit; font-family:inherit; font-weight:inherit;}
.main-contact-us .agree_txt span a{color:#0074ff; display:inline-block; text-decoration:underline;}
.main-contact-us .btn-area{margin-top:1.875rem; text-align:center;}
.main-contact-us .btn-area .btn-submit{position:relative; width:194px; height:60px; line-height:60px; display:inline-block; text-align: center; background: linear-gradient(91deg, #2268FD 0%, #7E46FF 40%, #7E46FF 65%, #F22C82 100%); border-radius:2em; font-size:1.125rem; color:#fff; border:none; cursor:pointer;}
/* AJAX 진행 중 — 제출 버튼 스피너 */
.main-contact-us .btn-area .btn-submit.is-submitting{color:transparent !important; cursor:wait !important;}
.main-contact-us .btn-area .btn-submit.is-submitting::after{content:""; position:absolute; left:50%; top:50%; width:24px; height:24px; margin:-12px 0 0 -12px; border:3px solid rgba(255,255,255,0.35); border-top-color:#fff; border-radius:50%; animation:coex2026-btn-spin 0.8s linear infinite; box-sizing:border-box;}
@keyframes coex2026-btn-spin{to{transform:rotate(360deg);}}

@media (max-width: 1640px) {
    .main-contact-us .form-area{padding-left:20px;}
}
@media (max-width: 1200px) {
    .main-contact-us .form-area{display:block;}
    .main-contact-us .left-area{margin-bottom:20px; width:100%;}
    .main-contact-us .right-area{width:100%;}
}
@media (max-width: 960px) {
    .main-contact-us2{padding:60px 16px; margin-top:0;}
}
@media (max-width: 768px) {
    html{font-size: 16px;}
    .main-contact-us .form-area input[type=text]{height:48px; line-height:48px; font-size: 1rem;}
    .main-contact-us .form-area textarea{font-size:1rem;}
    .main-contact-us .form-area{padding-left:0;}
    .main-contact-us .tit-area{padding-left:15px;}
    .main-contact-us .tit-area h2,
    .main-contact-us .tit-area h3{font-size:23px;}
    .main-contact-us .tit-area p{font-size:16px;}
    .main-contact-us .form-area label{font-size:1rem;}
    .main-contact-us .form-area .error_txt{font-size:0.875rem;}
    .main-contact-us .form-area .agree_txt label{font-size:0.875rem; line-height:1.6;}
    .main-contact-us .agree_txt label span{font-size:0.875rem;}
    .main-contact-us .agree_txt input[type=checkbox]{margin-top:2px;}
    .main-contact-us .btn-area .btn-submit{width:140px; height:50px; line-height:50px; font-size:1rem;}
}

/* ===== Layer: Footer (visual terminator) ===== */
.page-footer {
    align-self: stretch;
    height: 120px;
    background: transparent;
}

.row-center {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.row-wrap {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.row-wrap--30 { gap: 30px; }
.row-wrap--80 { gap: 80px; }

/* ===== Reference grid (4 columns × 3 rows: badges + cards) ===== */
.reference-grid {
    width: 100%;
    /* 카드를 좁혀 세로형 비율 유지 + 넓은 화면에선 가운데 정렬로 양옆 여백 확보 */
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
/* 각 셀 = [배지 + 카드] 한 쌍 (데스크톱 4열, 모바일 세로 적층 시에도 짝 유지) */
.ref-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.ref-item > .badge-purple,
.ref-item > .card { width: 100%; }
.ref-item > .card { flex: 1; }

.col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stretch-text { flex: 1 1 0; text-align: center; }

/* 모바일 전용 줄바꿈 (데스크톱에선 숨김) */
.br-mo { display: none; }

/* ===== Layer: Hero — inner elements ===== */
.hero-section__inner {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.hero-section__logo-wrap {
    align-self: stretch;
    height: auto;
    padding: 0 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.hero-section__logo {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}
.hero-section__taglines {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.hero-section__tagline-row {
    align-self: stretch;
    padding: 0 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn-pill-dark {
    padding: 9px 20px;
    background: linear-gradient(0deg, #212121, #212121),
                linear-gradient(135deg, rgba(0, 104, 255, 0.20), rgba(134, 60, 255, 0.20));
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn-cta {
    width: 300px;
    max-width: 300px;
    height: 62px;
    padding: 16px 24px;
    background: linear-gradient(90deg, #0068FF 0%, #863CFF 52%, #FF0081 100%);
    box-shadow: 0 0 20px rgba(0, 104, 255, 0.30), 0 0 60px rgba(134, 60, 255, 0.10);
    border-radius: 9999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* ===== Video card ===== */
.video-card-row {
    align-self: stretch;
    height: 675px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.video-card {
    width: 1200px;
    height: 675px;
    border: none;
    border-radius: 37px;
    overflow: hidden;
    background: #000;
}
.video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== Cards ===== */
.card {
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.card--limit {
    width: 383px;
    padding: 30px 26px;
    background: white;
    border-color: rgba(33, 33, 33, 0.15);
    justify-content: center;
    gap: 20px;
}
.card--industry {
    width: 390px;
    padding: 24px 20px;
}
.card--industry-26 { padding: 24px 22px; }
.card-body {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ===== Badges ===== */
.badge-step {
    padding: 4px 12px;
    background: rgba(188, 188, 188, 0.09);
    border: 1px solid rgba(188, 188, 188, 0.21);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
}
.badge-blue {
    padding: 8px 24px;
    background: rgba(34, 104, 253, 0.10);
    border: 1px solid rgba(34, 104, 253, 0.30);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
}
.badge-purple {
    width: 390px;
    padding: 8px 24px;
    background: rgba(126, 70, 255, 0.10);
    border: 1px solid rgba(126, 70, 255, 0.30);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Feature rows (NLU/NLG/Auto) ===== */
.feature-row {
    width: 100%;
    max-width: 1200px;
    padding: 12px 16px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.feature-text {
    width: 334px;
    height: 276px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.feature-text--gap20 { gap: 20px; }
.feature-illustration {
    flex: 1 1 0;
    height: 280px;
    max-width: 480px;
    min-width: 360px;
    position: relative;
    overflow: hidden;
}
.feature-illustration__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.stats-card {
    width: 100%;
    max-width: 1200px;
    padding: 80px 16px 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}
.stats-text {
    width: 334px;
    padding: 12px 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.stats-text__title {
    width: 312px;
    height: 129px;
    position: relative;
}
.stats-text__title-row {
    width: 312px;
    left: 0;
    top: 0;
    position: absolute;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.stats-text__title-row > .heading-lg { width: 310px; }
.stats-text__value-row {
    width: 312px;
    left: 0;
    top: 53px;
    position: absolute;
    display: inline-flex;
    gap: 12.02px;
}
.stats-chart {
    flex: 1 1 0;
    height: 480px;
    max-width: 480px;
    min-width: 320px;
    padding: 32px 12px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.stats-chart__col {
    flex: 1 1 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.stats-bar {
    width: 100%;
    background: #C8C8C8;
    border-radius: 14px 14px 0 0;
    position: relative;
}
.stats-bar__value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #646464;
    white-space: nowrap;
}
.stats-bar__label {
    min-height: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #646464;
    text-align: center;
    white-space: nowrap;
}
.stats-chart__col--highlight .stats-bar {
    background: linear-gradient(180deg, #2268FD 0%, rgba(34, 104, 253, 0.92) 100%);
    box-shadow: 0 16px 36px rgba(34, 104, 253, 0.32);
}
.stats-chart__col--highlight .stats-bar__value {
    font-size: 32px;
    font-weight: 800;
    line-height: 36px;
    color: #2268FD;
    margin-bottom: 12px;
}
.stats-chart__col--highlight .stats-bar__label {
    font-size: 16px;
    line-height: 20px;
    color: #2268FD;
    font-weight: 700;
}
/* 막대 비율 (원본 유지: 31% / 40% / 53% / 75% / 100%) */
.stats-bar--h1 { height: 31%; }
.stats-bar--h2 { height: 40%; }
.stats-bar--h3 { height: 53%; }
.stats-bar--h4 { height: 75%; }
.stats-bar--h5 { height: 95%; }

/* ===== Event info box ===== */
.event-info {
    width: 100%;
    max-width: 478px;
    padding: 14px 24px;
    background: white;
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.event-info__row {
    flex: 1 1 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.event-info__value { flex: 1 1 0; }

/* ===== Industry card title (single-line variant) ===== */
.industry-title-block {
    align-self: stretch;
    height: 72px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.industry-title-block--gap16 { gap: 16px; }
.industry-desc-block {
    align-self: stretch;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pixel-logo {
    height: 110px;
    padding: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pixel-logo div { background: #212121; }

/* ===== Card product logo (SVG) ===== */
/* 카드1의 텍스트 제목(industry-title-block)과 같은 높이 → 아이콘 가로 정렬 */
.card-product-logo {
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* ===== Industry illustration ===== */
.industry-illust {
    width: 128px;
    height: 128px;
    display: block;
}

/* ===== Typography ===== */
.heading-xl { font-size: 36px; font-weight: 800; line-height: 50px; color: #212121; word-wrap: break-word; }
.heading-lg { font-size: 30px; font-weight: 700; line-height: 42px; color: #212121; word-wrap: break-word; }
.heading-md { font-size: 25px; font-weight: 700; line-height: 36px; color: #212121; word-wrap: break-word; }
.heading-sm { font-size: 20px; font-weight: 700; line-height: 30px; color: #212121; word-wrap: break-word; }
.heading-card { font-size: 19px; font-weight: 600; line-height: 28px; color: #212121; word-wrap: break-word; }
/* reference 카드 본문 — 작아진 카드에 맞춰 축소 */
.reference-grid .body-lg { font-size: 14px; line-height: 1.5; }

.subtitle-lg { font-size: 26px; font-weight: 400; line-height: 38px; color: #646464; word-wrap: break-word; }
.subtitle-md { font-size: 19px; font-weight: 400; line-height: 29px; color: #646464; word-wrap: break-word; }
.subtitle-md--strong { font-size: 19px; font-weight: 700; line-height: 29px; color: #212121; word-wrap: break-word; }

.body-lg { font-size: 17px; font-weight: 400; line-height: 26px; color: #646464; word-wrap: break-word; }
.body-lg--strong { font-size: 17px; font-weight: 600; line-height: 26px; color: #646464; word-wrap: break-word; }
.body-lg--label { font-size: 17px; font-weight: 600; line-height: 26px; color: #212121; word-wrap: break-word; }

.body-md { font-size: 16px; font-weight: 400; line-height: 24px; color: #646464; word-wrap: break-word; }
.body-md--strong { font-size: 16px; font-weight: 600; line-height: 24px; color: #212121; word-wrap: break-word; }
.body-md--track { letter-spacing: 0.36px; }
.caption { font-size: 10px; font-weight: 400; line-height: 15px; color: #646464; word-wrap: break-word; }

.eyebrow {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #2268FD;
    text-transform: uppercase;
    word-wrap: break-word;
}
.badge-text-blue { font-size: 16px; font-weight: 700; line-height: 24px; color: #2268FD; word-wrap: break-word; }
.badge-text-purple { font-size: 16px; font-weight: 700; line-height: 24px; color: #7E46FF; word-wrap: break-word; }
.stat-value { font-size: 36px; font-weight: 800; line-height: 50px; color: #2268FD; word-wrap: break-word; }
.btn-cta-text { font-size: 20px; font-weight: 700; line-height: 30px; color: white; text-align: center; word-wrap: break-word; }

/* ============================================================
   반응형 — 전체 페이지 대응 (줌 제거, 유동 + 브레이크포인트)
   ============================================================ */

/* 태블릿 */
@media (max-width: 1024px) {
    .gnb { padding: 0 24px; }
    .gnb__nav { gap: 26px; }
    .hero-section { padding: 120px 16px 90px; }
    .section { padding: 60px 16px 40px; }
    .reference-section { padding: 60px 0 40px; }
    .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cert-grid { grid-template-columns: minmax(0, 1fr); }
    .feature-row { gap: 40px; }
    .stats-card { gap: 40px; }
    .badge-purple { width: 100%; max-width: 480px; }
    .card--industry, .card--limit { width: 100%; max-width: 420px; }
}

/* 헤더: 메뉴가 좁아지는 구간 → 햄버거 드롭다운 */
@media (max-width: 900px) {
    .gnb { height: 56px; padding: 0 16px; }
    .gnb__logo { width: 120px; }
    .gnb__toggle { display: flex; }
    .gnb__nav-bar { display: none; }
    .gnb__lang { display: none; }   /* 모바일은 햄버거만 — 언어 토글 숨김 */
    .gnb__nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px 0 12px;
        background: rgba(255, 255, 255, 0.97);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .gnb.is-open .gnb__nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
    /* 닫힌 메뉴: 패널 + 하위 전체 클릭 차단 (투명 오버레이가 탭을 먹어 페이지로 넘어가던 문제) */
    .gnb:not(.is-open) .gnb__nav,
    .gnb:not(.is-open) .gnb__nav * { pointer-events: none !important; }
    /* 모바일: 아이템 세로 적층, 서브메뉴는 들여쓰기로 항상 펼침 */
    .gnb__item { display: block; height: auto; }
    .gnb__top { display: block; padding: 13px 20px; font-size: 16px; font-weight: 700; }
    .gnb__item:hover .gnb__top { color: #212121; }
    .gnb__sub {
        position: static;
        transform: none;
        min-width: 0;
        padding: 0 0 6px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        gap: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .gnb__sub a { padding: 11px 20px 11px 36px; font-size: 15px; border-radius: 0; }
    .gnb__top:active, .gnb__sub a:active { background: rgba(0, 0, 0, 0.04); }
    /* 모바일 Product 메가: 고정폭 해제 + 아이콘 크기 축소 */
    .gnb__sub--mega { min-width: 0; padding: 0 0 6px; transform: none; }
    .gnb__sub--mega a { padding: 10px 20px 10px 28px; gap: 12px; }
    .gnb__sub-ico { width: 34px; height: 34px; }
    /* 햄버거 → X */
    .gnb.is-open .gnb__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .gnb.is-open .gnb__toggle span:nth-child(2) { opacity: 0; }
    .gnb.is-open .gnb__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* 모바일 */
@media (max-width: 768px) {
    .br-mo { display: inline; }
    .section { padding: 52px 16px 36px; gap: 18px; }
    .hero-section { padding: 88px 16px 64px; gap: 22px; }
    .hero-section__inner { gap: 28px; }
    .hero-section__logo-wrap { height: auto; }

    /* Painpoint: 모바일은 카드 3개 세로 적층 */
    .painpoint-section .row-wrap { flex-direction: column; gap: 8px; }
    .painpoint-section .card--limit { width: 100% !important; max-width: 100%; }

    .reference-section { padding: 52px 0 36px; }
    /* Reference: 모바일은 [배지+카드] 쌍 2열 2행 */
    .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0 16px; }
    .ref-item { gap: 8px; }
    .reference-grid .card--industry,
    .reference-grid .card--industry-26 { padding: 18px 10px; }
    .reference-grid .industry-illust { width: 76px; height: 76px; }
    .reference-grid .industry-title-block,
    .reference-grid .card-product-logo { height: 54px; }
    .reference-grid .heading-card { font-size: 14px; line-height: 20px; }
    .reference-grid .body-lg { font-size: 11px; line-height: 1.45; }
    .reference-grid .badge-text-purple { font-size: 13px; }
    .feature-row { flex-direction: column; gap: 9px; padding: 24px 16px; }
    .feature-text { width: 100%; height: auto; }
    /* 세로 배치에선 flex:1 1 0 가 높이를 0으로 붕괴시키므로 고정 높이 부여 */
    .feature-illustration { flex: none; width: 100%; min-width: 0; max-width: 100%; height: 220px; }
    .stats-card { flex-direction: column; gap: 32px; padding: 40px 16px 28px; }
    .stats-text, .stats-text__title, .stats-text__title-row, .stats-text__value-row { width: 100%; }
    .stats-text__title { height: auto; }
    .stats-text__title-row, .stats-text__value-row { position: static; }
    /* flex:1 1 0 가 세로 배치에서 높이를 0으로 붕괴 → 갤럭시 Chrome에서 그래프 안 보임. 고정 높이 */
    .stats-chart { flex: none; width: 100%; max-width: 100%; min-width: 0; height: 300px; gap: 8px; padding: 32px 0 0; }
    /* 컬럼 균등 폭 + 라벨 줄바꿈 허용 → 막대 너비 통일 & 카드 밖 넘침 방지 */
    .stats-chart__col { min-width: 0; }
    .stats-bar__label { white-space: normal; font-size: 11px; line-height: 14px; }
    .stats-bar__value { font-size: 12px; }
    .stats-chart__col--highlight .stats-bar__value { font-size: 22px; line-height: 26px; }
    .stats-chart__col--highlight .stats-bar__label { font-size: 12px; line-height: 15px; }
    .video-card-row { height: auto; }
    .video-card { width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .kolas-card { flex-direction: column; }
    .kolas-item { width: 100%; height: auto; }
    .heading-xl { font-size: 26px; line-height: 38px; }
    .heading-lg { font-size: 23px; line-height: 34px; }
    .axdc-section .heading-lg { font-size: 30px; line-height: 1.4; }   /* AxDC 메인 제목은 크게 */
    /* 모바일: 페이드 없이 이미지를 섹션 맨 위부터 깔기 */
    .axdc-section { background: #ffffff url("/coex2026/assets/axdc-bg.png") center top / cover no-repeat; }
    .axdc-bg-area { background: none; width: 100%; margin: 0; padding: 0; }
    .heading-md { font-size: 21px; line-height: 30px; }
    .heading-sm { font-size: 18px; line-height: 26px; }
    .heading-card { font-size: 19px; line-height: 28px; }
    .subtitle-lg { font-size: 21px; line-height: 32px; }
    .subtitle-md, .subtitle-md--strong { font-size: 17px; line-height: 26px; }
    .body-lg, .body-lg--strong, .body-lg--label { font-size: 16px; line-height: 24px; }
    .heading-xl, .heading-lg, .heading-md, .subtitle-lg { word-break: keep-all; }

    /* Customer Cases (con_wrap n13) */
    .con_wrap.n13 { padding-top: 56px; }
    .con_wrap.n13 .tit { font-size: 20px; }
    .con_wrap.n13 .tit-box .tit { font-size: 26px; }
    .con_wrap.n13 .tit-box { margin-bottom: 20px; }   /* 모바일: 제목 아래 여백 */
    .con_wrap.n13 .customer-list { gap: 16px 24px; }
    .con_wrap.n13 .customer-list .item { height: 40px; }
    .con_wrap.n13 .customer-list .item.n1 { width: 85px; }
    .con_wrap.n13 .customer-list .item.n2 { width: 84px; }
    .con_wrap.n13 .customer-list .item.n3 { width: 82px; }
    .con_wrap.n13 .customer-list .item.n4 { width: 114px; }
    /* 모바일: 박스 안 로고 숨기고, 박스 밖 로고를 가로 한 줄로 */
    #slider-client .customer-list { display: none; }
    .con_wrap.n13 .customer-list--mo { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 14px; margin-top: 12px; }
    .con_wrap.n13 .customer-list--mo .item { height: 26px; }
    .con_wrap.n13 .customer-list--mo .item.n1 { width: 56px; }
    .con_wrap.n13 .customer-list--mo .item.n2 { width: 55px; }
    .con_wrap.n13 .customer-list--mo .item.n3 { width: 53px; }
    .con_wrap.n13 .customer-list--mo .item.n4 { width: 76px; }
    .con_wrap.n13 .banner-box { height: 320px; padding: 28px 16px 20px; margin-top: 28px; border-radius: 12px; }
    /* 모바일 페이징: 막대 → 점 */
    .con_wrap.n13 .banner-box .paging .btn_page { width: 7px; height: 7px; border-radius: 50%; }
    .con_wrap.n13 .banner-box .paging .btn_page + .btn_page { margin-left: 8px; }
    .con_wrap.n13 .banner-box .sliderBox { padding: 18px 0; }
    .con_wrap.n13 .banner-box .sliderBox > ul > li { padding: 0 4px; gap: 12px; justify-content: flex-start; }
    .con_wrap.n13 .banner-box .sliderBox .txt { font-size: 14px; line-height: 1.6; color: #212121; }
    .con_wrap.n13 .banner-box .sliderBox .txt br { display: none; }
    .con_wrap.n13 .banner-box .sliderBox .name { font-size: 13px; color: #000; font-weight: 700; margin-top: 8px; margin-bottom: 0; }
    .con_wrap.n13 .slider-box { margin-top: 48px; }
    /* Customers ↔ Investors 마퀴 사이 간격 축소 (모바일) */
    .con_wrap.n13 .slider-box.n1 { margin-bottom: 0; }
    .con_wrap.n13 .slider-box.n2 { margin-top: 20px; }
    .con_wrap.n13 .slider-box .item { width: 124px; height: 42px; }
    .con_wrap.n13 .slider-box img { max-width: 96px; max-height: 30px; }
}

/* 소형 모바일 */
@media (max-width: 480px) {
    .hero-section { padding: 72px 16px 52px; }
    .hero-section__logo { max-width: 100%; }
    .heading-xl { font-size: 23px; line-height: 34px; }
    .heading-lg { font-size: 21px; line-height: 30px; }
    .subtitle-lg { font-size: 19px; line-height: 28px; }
    .btn-cta { width: 100%; max-width: 100%; }
    .con_wrap.n13 .tit { font-size: 18px; }
    .con_wrap.n13 .tit-box .tit { font-size: 23px; }
    .con_wrap.n13 .banner-box { height: 360px; }
    .con_wrap.n13 .slider-box .item { width: 108px; }
}


/* [추가] 홈(v2)에서 사이트 기본 헤더/메뉴 숨김 — coex 메뉴(.gnb)만 노출 (home_v2 사이트 헤더 숨김) */
body.home_v2 #top_layout,
body.home_v2 #header_banner_wrap,
body.home_v2 .quick_wrap{ display: none !important; }


/* [추가] 홈(v2)에서 KR 언어 토글 숨김 (KR 토글 숨김) */
body.home_v2 .gnb__lang{ display: none !important; }
