/* =====================================================================
   Honour Tech — main.css  (shared across all pages & languages)
   Typography policy:
   - 일반 제목/본문은 TOKENS의 --fs-* 변수를 사용
   - 디자인·기능상 명확한 특수 요소만 독립 font-size 유지
   - 특수값에는 유지 이유를 주석으로 표시
   ===================================================================== */


/* +======================================================================+
	1. TOKENS
	 - 역할: 사이트 전체에서 재사용하는 색상, 구분선, 포인트 컬러, 모서리 반경, 
	        콘텐츠 최대폭 등 공통 디자인 값을 정의합니다.
	 - 글꼴 색상, 레이아웃, 제목/본문 스케일, 굵기 설정
	 - 적용: 전체 웹페이지 (영문/한글 공통)
   +======================================================================+ */

:root {
	/* ── 색상 ── */
	--bg: #ffffff; /* 흰색 — 페이지/카드 배경 */
	--bl: #000000; /* 검정색 */
	--ink: #0f2b3d; /* 잉크색 — 제목/강조 텍스트 */
	--body: #33434d; /* 본문 텍스트 */
	--muted: #617079; /* 보조·흐린 텍스트 */
	--line: #e6ebee; /* 연한 구분선 */
	--line-2: #f1f5f6; /* 더 연한 구분선·배경 */
	--accent: #0e6e7a; /* 포인트색 — 청록 */
	--accent-soft: #e6f3f4; /* 포인트 옅은 배경 */
	--accent-ink: #0a5560; /* 포인트 진한 톤 — hover·강조 */

	/* ── 레이아웃 ── */
	--radius: 14px; /* 기본 모서리 반경 */
	--maxw: 1120px; /* 콘텐츠 최대폭 */
	--maxw-narrow: 1080px; /* 좁은 콘텐츠 최대폭 */
	font-synthesis-weight: none;

	/* ── 제목 스케일 (h1~h6) ── */
	--fs-h1: clamp(2rem, 4.4vw, 3.2rem); /* 히어로 타이틀 */
	--fs-h2: clamp(1.5rem, 3vw, 2rem); /* 섹션 타이틀 */
	--fs-h3: 1.15rem; /* 카드/블록 소제목 */
	--fs-h4: 1rem; /* 서브 소제목 */
	--fs-h5: .9rem; /* 미니카드 제목 */
	--fs-h6: .8rem; /* 최소 제목/소형 라벨 */

	/* ── 본문 스케일 (p, p1~p3) ── */
	--fs-p: 1rem; /* 기본 본문 */
	--fs-p1: 1.15rem; /* 리드/섹션 인트로 */
	--fs-p2: .9rem; /* 보조 설명 */
	--fs-p3: .8rem; /* 태그/라벨/주석 */

	/* ── 굵기 ── */
	--fw-regular: 400; /* 일반 본문 */
	--fw-semibold: 600; /* 리드/강조 */
	--fw-bold: 700; /* 제목 기본 굵기 */

	/* ── 카드 공통 패딩 ── */
	--card-padding: 22px; /* 일반 카드 표준 */
	--card-padding-compact: 12px; /* 미니카드 전용 */
}

	/* ── 줄간격 ── */
	--lh-p: 1.6; /* 일반 본문 */

/* +======================================================================+
	2. BASE
	 - 역할: 브라우저 기본 여백을 초기화하고 본문 글꼴, 기본 텍스트 색상, 
	 		공통 콘텐츠 폭(.wrap), 이미지 기본 동작을 정의합니다.
	 - 적용: 전체 웹페이지 (영문/한글 공통)
   +======================================================================+ */

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

* {
	margin: 0;
	padding: 0;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Pretendard", "Pretendard Variable", -apple-system,
		BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	background: var(--bg);
	color: var(--body);
	font-size: var(--fs-p);
	line-height: 1.66;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.wrap--narrow {
	max-width: var(--maxw-narrow);
}

a {
	color: inherit;
}

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



/* +================================================================================+
	3. SITE HEADER (global nav + language)
	 - 역할: 상단 HONOURTECH 로고, 데스크톱 내비게이션, 모바일 햄버거 메뉴, 
	 		언어 전환 버튼의 배치와 상태를 정의합니다.
	 - 적용: 전체 웹페이지 (영문/한글 공통)
   +================================================================================+ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.site-header .wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	min-width: 0;
}

/* ── Brand ── */
.brand {
	font-weight: var(--fw-bold);
	font-size: 1.2rem; /* 특수값 — HONOURTECH 브랜드 로고 */
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -.01em;
	white-space: nowrap;
	flex: 0 1 auto;
	min-width: 0;
}

.brand span {
	color: var(--accent);
}

/* ── Desktop Navigation ── */
.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-nav a {
	font-size: var(--fs-p2);
	font-weight: var(--fw-regular);
	color: var(--muted);
	text-decoration: none;
	transition: color .18s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
	color: var(--ink);
	font-weight: var(--fw-bold);
}

/* ── Language ── */
.lang {
	display: flex;
	gap: 2px;
	margin-left: 8px;
}

.lang a {
	font-size: var(--fs-p3);
	font-weight: var(--fw-semibold);
	color: var(--muted);
	text-decoration: none;
	padding: 4px 7px;
	border-radius: 6px;
	white-space: nowrap;
}

.lang a[aria-current="true"] {
	color: var(--accent-ink);
	background: var(--accent-soft);
}

/* ── Mobile Menu Button ── */
.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px 0;
	background: var(--ink);
	transition: .2s;
}

/* =========================================================
	MOBILE NAVIGATION
========================================================= */

@media(max-width:820px) {

	.site-header .wrap {
		height: 60px;
		min-width: 0;
	}

	/* 햄버거 버튼 */
	.nav-toggle {
		display: block;
		flex: 0 0 auto;
		margin-left: auto;
		position: relative;
		z-index: 1002;
	}

	/* 기본 상태 — 메뉴 숨김 */
	.site-nav {
		display: none;

		/* viewport 전체 폭 기준 */
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		z-index: 1001;

		width: auto;
		max-width: none;
		min-width: 0;

		flex-direction: column;
		align-items: stretch;
		gap: 0;

		padding: 8px 24px 16px;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 12px 24px -16px rgba(0,0,0,.2);

		max-height: calc(100dvh - 60px);
		overflow-y: auto;
		overflow-x: hidden;
	}

	/* main.js가 open 클래스를 추가하면 메뉴 표시 */
	.site-nav.open {
		display: flex;
	}

	.site-nav > a {
		display: block;
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid var(--line-2);
	}

	/* 모바일 언어 선택 */
	.lang {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 6px;
		margin: 10px 0 0;
	}

	.lang a {
		width: auto;
		min-width: 64px;
		padding: 8px 14px;
		text-align: center;
		white-space: nowrap;
		border-bottom: 0;
	}
}



/* +================================================================================+
	4. SECTION HERO (HERO 전용)
	 - 역할: 각 페이지 상단 Hero의 배경 이미지, 오버레이, H1, 
	 		설명문, CTA, Hero 내부 실적 숫자 영역을 정의합니다.
	 - 적용: 전체 웹페이지 (영문/한글 공통)
   +================================================================================+ */

.hero {
	padding: 66px 0 34px;
	position: relative;
	overflow: hidden;
	background-position: center;
	background-size: cover;
}
	/* [ Hero 높이: 60vh ] */
	.section-full {
		min-height: 60vh;
		min-height: 60dvh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	/* [ Hero 높이: 40vh ] */
	.section-full.section-half {
		min-height: 40vh;
		min-height: 40dvh;
	}
	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient( 90deg, 
		rgba(10,20,30,.75) 0%, 
		rgba(10,20,30,.55) 45%, 
		rgba(10,20,30,.35) 100% );
		z-index: 0;
	}
	.hero .wrap {
		position: relative;
		z-index: 1;
		max-width: var(--maxw);
		margin: 0 auto;
		padding: 0 24px;
	}

h1 {
	font-size: var(--fs-h1);
	font-weight: 700;
	color: var(--bg);
	letter-spacing: -.02em;
	line-height: 1.22
}

.hero p {
	margin-top: 18px;
	max-width: 700px;
	color: var(--bg);
	font-size: var(--fs-p1);
	line-height: 1.4;
}

.hero p b {
	color: var(--bg);
	font-weight: 600;
}

.hero .eyebrow {
	font-size: 1.3rem; /* 특수값 — Section 식별용 Display Label */ /* 특수값 — Hero 식별용 Display Label */
	color: var(--bg);
}
	.hero .eyebrow::before {
		background: var(--bg);
	}

/* [ CTA 버튼 — 투명 배경 + 흰색 테두리 ] */
.hero .btn {
	background: transparent;
	border: 1.5px solid var(--bg);
	color: var(--bg);
}
	.hero .btn:hover {
		background: rgba(255,255,255,.12);
	}

/* [ 링크 — 흰색] */
.hero .go {
	color: var(--bg);
}

/* [ TRUST GRID] */
.hero .trust-grid,
.trust-grid.on-hero {
	border: 0;
	border-radius: 0;
	background: transparent;
}
	.hero .trust-grid .t {
		border: 0;
		border-left: 1px solid rgba(255,255,255,.35);
		padding: 0 26px;
	}
		.hero .trust-grid .t:first-child {
			border-left: 0;
			padding-left: 0;
		}
		.hero .trust-grid .t .v {
			color: var(--bg);
		}
		.hero .trust-grid .t .l {
			color: var(--bg);
		}
		.hero .trust-grid .t .c {
			color: rgba(255,255,255,.75);
		}

@media(max-width:820px) {
	/* Hero 배경 — 모바일 화면 전체 폭 */
	.hero {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	/* Hero 내부 콘텐츠 — 텍스트에만 좌우 여백 적용 */
	.hero .wrap {
		max-width: 100%;
		min-width: 0;
		margin-left: auto;
		margin-right: auto;
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Hero 제목·본문의 폭 제한 */
	.hero h1,
	.hero p,
	.hero .eyebrow {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	/* 제목 */
	.hero h1 {
		word-break: keep-all;
		overflow-wrap: break-word;
	}

	/* Eyebrow — 긴 문구도 정상 줄바꿈 */
	.hero .eyebrow {
		display: block;
		font-size: 1rem;
		line-height: 1.4;
		word-break: keep-all;
		overflow-wrap: break-word;
	}

	.hero .eyebrow::before {
		display: inline-block;
		margin-right: 10px;
		vertical-align: middle;
	}

	/* Hero 본문 */
	.hero p {
		font-size: var(--fs-p);
		line-height: 1.5;
		word-break: keep-all;
		overflow-wrap: break-word;
	}
}

/* +================================================================================+
	5. SECTION-COMMON (공용)
	 - 역할: 일반 콘텐츠 섹션 공통 구조
	 - 섹션 번호, 제목, Intro, Eyebrow 등
	 - 적용: 전체 웹페이지 (영문/한글 공통)
   +================================================================================+ */

section.s {
	padding: 60px 0;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 60px;
}

section.s.no-border {
	border-bottom: 0;
}

.eyebrow {
	font-size: 1.3rem; /* 특수값 — Section 식별용 Display Label */
	font-weight: var(--fw-semibold);
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}
	.eyebrow::before {
		content: "";
		width: 13px;
		height: 2.5px;
		background: var(--accent);
	}

.snum {
	font-size: var(--fs-p3);
	font-weight: var(--fw-bold);
	letter-spacing: .1em;
	color: var(--accent);
	margin-bottom: 12px;
}

h2 {
	font-size: var(--fs-h2);
	font-weight: var(--fw-bold);
	color: var(--ink);
	letter-spacing: -.015em;
	line-height: 1.3;
}

.s .intro,
.section-intro {
	margin-top: 16px;
	max-width: 720px;
	font-size: var(--fs-p);
	line-height: 1.5;
	color: var(--body);
}
	.s .intro b,
	.section-intro b {
		color: var(--ink);
		font-weight: var(--fw-semibold);
	}

.lead b {
	color: var(--ink);
	font-weight: var(--fw-semibold);
}

.block-wrap {
	padding: 44px 0 20px;
}



/* +================================================================================+
	6. ANCHOR NAV (sub-page in-page tabs)
	 - 역할:
	 - 
	 - 적용: 
   +================================================================================+ */

.anchor {
	position: sticky;
	top: 60px;
	z-index: 20;
	background: rgba(255,255,255,.93);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-top: 30px
}
	.anchor .wrap {
		display: flex;
		gap: 26px;
		overflow-x: auto;
		scrollbar-width: none
	}
		.anchor .wrap::-webkit-scrollbar {
			display: none
		}
	.anchor a {
		white-space: nowrap;
		padding: 17px 2px;
		font-size: var(--fs-p);
		font-weight: 600;
		color: var(--muted);
		text-decoration: none;
		border-bottom: 2px solid transparent;
		transition: color .18s,border-color .18s
	}

.anchor a:hover{color:var(--ink)}

.anchor a.on{color:var(--ink);border-color:var(--accent)}



/* +================================================================================+
	7. TABS (button-driven, e.g. Solution Finder)
	 - 역할:
	 - 
	 - 적용: 
   +================================================================================+ */

.tabs {
	position: sticky;
	top: 60px;
	z-index: 20;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line)
}
.tabs .wrap{display:flex;gap:4px}
.tab {
    appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 20px 6px;
    margin-right: 28px;
    font-size: var(--fs-p);
    font-weight: 600;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color .18s,border-color .18s
}
	.tab[aria-selected="true"] {
		color: var(--ink);
		border-color: var(--accent)
	}

.tab:hover{color:var(--ink)}

.panel{padding:40px 0 80px}

.panel[hidden]{display:none}

.lead {
	font-size: var(--fs-p1);
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px
}

.sub {
	color: var(--muted);
	margin-bottom: 34px;
	font-size: var(--fs-p2)
}



/* +================================================================================+
	7b. INTERACTIVE FINDER (FrontPage 솔루션 찾기)
	 - 역할:
	 - 
	 - 적용: 
   +================================================================================+ */

.finder-tabs{
	display:inline-flex;
	gap:4px;
	background:var(--line-2);
	border:1px solid var(--line);
	border-radius:999px;
	padding:4px;
	margin-top:26px;
}

.finder-tabs button{
	appearance:none;
	border:0;
	background:none;
	font:inherit;
	font-weight:600;
	font-size: var(--fs-p);
	color:var(--muted);
	padding:9px 20px;
	border-radius:999px;
	cursor:pointer;
	transition:color .18s,background .18s;
}

.finder-tabs button.on{
	background:#fff;
	color:var(--accent-ink);
	box-shadow:0 1px 3px rgba(15,43,61,.08);
}

.finder-grid{
	display:grid;
	grid-template-columns:340px 1fr;
	gap:24px;
	margin-top:30px;
	align-items:start;
}

/* [ 왼쪽 목록 ] */
.finder-list {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.finder-item{
	text-align:left;
	background:#fff;
	border:1px solid var(--line);
	border-radius:12px;
	padding:16px 18px;
	cursor:pointer;
	font:inherit;
	transition:border-color .18s,box-shadow .18s,background .18s;
}
	.finder-item:hover {
		border-color: #cfe0e2
	}

	.finder-item.on{
	border-color:var(--accent);
	background:var(--accent-soft);
	box-shadow:0 4px 14px -8px rgba(14,110,122,.4);
}
	.finder-item .fi-title {
		font-weight: 700;
		color: var(--ink);
		font-size: var(--fs-h3)
	}
	.finder-item .fi-gas {
		margin-top: 4px;
		font-size: var(--fs-p2);
		color: var(--muted)
	}

	.finder-item.on .fi-gas{color:var(--accent-ink)}

/* 오른쪽 패널 */
.finder-panel{
	border:1px solid var(--line);
	border-radius:14px;
	padding:30px 30px 26px;
	min-height:280px;
}
	.finder-panel h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink);
		letter-spacing: -.01em
	}
	.finder-panel .fp-desc {
		margin-top: 0px;
		color: var(--body);
		font-size: var(--fs-p1);
		line-height: 1.7
	}
	.finder-panel .fp-block {
		margin-top: 22px;
		padding-top: 20px;
		border-top: 1px solid var(--line)
	}
	.finder-panel .fp-lbl {
		font-size: var(--fs-h4);
		font-weight: 700;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 10px
	}

.fp-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px
}

.fp-chip {
	font-size: var(--fs-p2);
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	color: var(--body);
	background: var(--line-2)
}

.fp-gas {
	font-size: var(--fs-p3);
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 8px;
	background: var(--accent-soft);
	color: var(--accent-ink)
}

.fp-needs {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 18px
}

@media(max-width:560px){
	.fp-needs {
		grid-template-columns: 1fr
	}}

	.fp-needs li {
	position: relative;
	padding-left: 16px;
	font-size: var(--fs-p2);
	color: var(--body);
	line-height: 1.7
}
	.fp-needs li::before {
		content: "";
		position: absolute;
		left: 2px;
		top: .62em;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: var(--accent-soft);
		border: 1.5px solid var(--accent)
	}
.finder-panel .fp-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 0;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none
}
	.finder-panel .fp-link:hover {
		text-decoration: underline
	}

.finder-panel .fp-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 24px;
}


/* [ FINDER — MOBILE ] */
.finder-list-wrap {
	position: relative;
}

.finder-nav {
	display: none;
}

@media(max-width:820px) {
	#finder .finder-grid {
		display: block;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-top: 20px;
	}
	#finder .finder-list-wrap {
		position: relative;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		margin-bottom: 14px;
	}
	#finder .finder-list {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 8px;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 2px 36px 8px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
		scroll-behavior: smooth;
		overscroll-behavior-x: contain;
	}
		#finder .finder-list::-webkit-scrollbar {
			display: none;
		}
	#finder .finder-item {
		flex: 0 0 auto;
		width: auto;
		min-width: 0;
		padding: 10px 16px;
		border-radius: 999px;
		white-space: nowrap;
		scroll-snap-align: start;
	}
		#finder .finder-item .fi-title {
			font-size: var(--fs-p2);
			font-weight: 700;
			line-height: 1.35;
		}

		#finder .finder-item.on {
			background: var(--accent-soft);
			border-color: var(--accent);
			box-shadow: none;
		}
	#finder .finder-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 30px;
		height: 30px;
		border: 1px solid var(--line);
		border-radius: 50%;
		background: rgba(255,255,255,.94);
		color: var(--ink);
		font-size: 1rem; /* 특수값 — Finder 좌우 화살표 아이콘 */
		font-weight: 700;
		line-height: 1;
		cursor: pointer;
		z-index: 5;
		box-shadow: 0 2px 8px rgba(15,43,61,.10);
	}
	#finder .finder-nav-prev {
		left: 2px;
	}
	#finder .finder-nav-next {
		right: 2px;
	}
	#finder .finder-nav[disabled] {
		opacity: .25;
		pointer-events: none;
	}
	#finder .finder-panel {
		width: auto;
		max-width: 100%;
		min-width: 0;
		padding: 22px 18px 20px;
		min-height: 0;
		overflow-wrap: break-word;
	}
		#finder .finder-panel .fp-desc {
			font-size: var(--fs-p);
			line-height: 1.65;
		}
		#finder .finder-panel .fp-block {
			margin-top: 18px;
			padding-top: 16px;
		}
		#finder .finder-panel .fp-lbl {
			font-size: var(--fs-p2);
			margin-bottom: 8px;
		}
	#finder .fp-needs {
		grid-template-columns: 1fr;
		gap: 5px;
	}
		#finder .fp-needs li {
			font-size: var(--fs-p2);
			line-height: 1.6;
		}
	#finder .fp-chip {
		font-size: var(--fs-p3);
		padding: 4px 9px;
	}
	#finder .finder-panel .fp-links {
		margin-top: 18px;
	}
}



/* +================================================================================+
	8. GRID
	 - 역할:
	 - 
	 - 적용: 
   +================================================================================+ */

.grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr
}

@media(min-width:640px) {
	.grid.g2 {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:720px) {
	.grid.g2-720 {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:900px) {
	.grid.g4 {
		grid-template-columns: repeat(4,1fr)
	}
}

@media(min-width:980px) {
	.grid.g3 {
		grid-template-columns: repeat(3,1fr)
	}
	.grid.g2 {
		grid-template-columns: 1fr 1fr
	}
}

.cols {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 34px
}

@media(min-width:560px) {
	.cols.c4 {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:760px) {
	.cols.c2 {
		grid-template-columns: 1fr 1fr
	}
	.cols.c3 {
		grid-template-columns: repeat(3,1fr)
	}
}

@media(min-width:980px) {
	.cols.c4 {
		grid-template-columns: repeat(4,1fr)
	}
}


/* =========================================================
	9. CARDS


========================================================= */

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 22px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: border-color .18s,box-shadow .18s,transform .18s
}
	.card::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 3px;
		background: var(--accent);
		transform: scaleY(0);
		transform-origin: top;
		transition: transform .2s
	}
	.card:hover {
		border-color: #cfe0e2;
		box-shadow: 0 8px 26px -14px rgba(14,110,122,.35);
		transform: translateY(-2px)
	}
		.card:hover::before {
			transform: scaleY(1)
		}
	.card:focus-visible {
		outline: 2px solid var(--accent);
		outline-offset: 3px
	}
	.card .num, .card .cn {
		font-size: var(--fs-p3);
		font-weight: 700;
		letter-spacing: .08em;
		color: var(--accent);
		margin-bottom: 11px
	}
	.card h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink);
		letter-spacing: -.01em;
		line-height: 1.32
	}
		.card h3 .en {
			display: block;
			font-size: var(--fs-p3);
			font-weight: 600;
			color: var(--muted);
			margin-top: 3px;
			letter-spacing: 0
		}
	.card .desc, .card .intro {
		margin-top: 10px;
		font-size: var(--fs-p2);
		color: var(--body)
	}
	.card .kw {
		margin-top: 14px;
		font-size: var(--fs-p2);
		color: var(--muted);
		line-height: 1.7
	}
		.card .kw b {
			color: var(--body);
			font-weight: 600
		}

	.card .thumb {
		height: 160px;
		margin: -20px -20px 16px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: var(--radius) var(--radius) 0 0;
	}

	.card .thumb2 {
		aspect-ratio: 9/6;
		background-color: var(--line-2);
		background-position: center;
		background-size: cover;
	}

.go {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: var(--fs-p);
	font-weight: 600;
	color: var(--accent)
}
	.go svg {
		transition: transform .18s
	}

.card:hover .go svg {
	transform: translateX(3px)
}

/* [ product placeholder thumb ] */
.thumb {
	height: 240px;
	overflow: hidden;
	margin: -24px -22px 18px;
	background: repeating-linear-gradient(135deg,#eef4f5 0 12px,#e8f1f2 12px 24px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--line)
}
	.thumb span {
		font-size: var(--fs-p3);
		color: #9db4b8;
		font-weight: 600;
		letter-spacing: .04em
	}
	.thumb img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover
	}



/* =========================================================
	10. LISTS / TAGS

	
========================================================= */

.facilities {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--line)
}
	.facilities .lbl {
		font-size: var(--fs-p3);
		font-weight: 600;
		letter-spacing: .06em;
		color: var(--muted);
		text-transform: uppercase;
		margin-bottom: 8px
	}
	.facilities ul {
		list-style: none;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2px 14px
	}
	.facilities li {
		font-size: var(--fs-p2);
		color: var(--body);
		padding-left: 12px;
		position: relative;
		line-height: 1.75
	}
		.facilities li::before {
			content: "";
			position: absolute;
			left: 0;
			top: .62em;
			width: 4px;
			height: 4px;
			border-radius: 50%;
			background: var(--accent)
		}

ul.ticks {
	list-style: none
}
	ul.ticks li {
		position: relative;
		padding-left: 18px;
		margin: 7px 0;
		font-size: var(--fs-p2);
		color: var(--body)
	}
		ul.ticks li::before {
			content: "";
			position: absolute;
			left: 2px;
			top: .58em;
			width: 5px;
			height: 5px;
			border-radius: 50%;
			background: var(--accent-soft);
			border: 1.5px solid var(--accent)
		}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 16px
}

.tag {
	font-size: var(--fs-p3);
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-ink)
}
	.tag.ind {
		background: var(--line-2);
		color: var(--muted)
	}

.note {
	margin-top: 14px;
	font-size: var(--fs-p3);
	color: var(--muted);
	background: var(--line-2);
	padding: 9px 11px;
	border-radius: 8px;
	line-height: 1.55
}
	.note b {
		color: var(--body);
		font-weight: 600
	}

.note-line {
	margin-top: 40px;
	padding: 16px 20px;
	background: var(--line-2);
	border-radius: 10px;
	font-size: var(--fs-p2);
	color: var(--muted);
	line-height: 1.6
}
	.note-line b {
		color: var(--body);
		font-weight: 600
	}

.divider {
	height: 1px;
	background: var(--line);
	margin: 44px 0 0
}



/* =========================================================
	11. TABLES (pressure etc.)

	
========================================================= */

.ptable {
	margin-top: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden
}

.prow {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.4fr auto;
	gap: 12px;
	padding: 14px 18px;
	align-items: center;
	border-top: 1px solid var(--line);
	font-size: var(--fs-p)
}
	.prow:first-child {
		border-top: 0;
		background: var(--ink);
		color: #cfe0e2;
		font-weight: 600;
		font-size: var(--fs-p3);
		letter-spacing: .04em;
		text-transform: uppercase
	}
	.prow .p-use {
		font-weight: 600;
		color: var(--ink)
	}
	.prow .p-bar {
		color: var(--accent-ink);
		font-weight: 600
	}

.badge {
	font-size: var(--fs-p3);
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	white-space: nowrap
}

.b-core {
	background: #c6efce;
	color: #1e6b34
}

.b-dev {
	background: #ffeb9c;
	color: #8a6a00
}

@media(max-width:640px) {
	.prow {
		grid-template-columns: 1fr 1fr;
		gap: 6px 12px
	}
		.prow .p-note {
			grid-column: 1/-1;
			color: var(--muted);
			font-size: var(--fs-p2)
		}
}

.concept {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin-top: 30px
}

@media(min-width:680px) {
	.concept {
		grid-template-columns: 1fr 1fr
	}
}

.concept .box {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	background: var(--line-2)
}
	.concept .box.hl {
		background: var(--accent-soft);
		border-color: #bfe0e4
	}
	.concept .box .t {
		font-size: var(--fs-p3);
		font-weight: 700;
		letter-spacing: .05em;
		color: var(--muted);
		margin-bottom: 8px;
		text-transform: uppercase
	}

.concept .box.hl .t{color:var(--accent-ink)}
	.concept .box p {
		font-size: var(--fs-p);
		color: var(--body)
	}

.def-quote {
	margin: 20px 0 28px;
	padding: 18px 24px;
	border-left: 3px solid var(--accent);
	background: var(--accent-soft, #f0f7f8);
	font-size: var(--fs-p1);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.6;
}

.size-compare {
	margin-bottom: 28px;
}
	.size-compare img {
		width: 100%;
		max-width: 640px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		display: block;
	}

.size-compare-caption {
	margin-top: 8px;
	font-size: var(--fs-p3);
	color: var(--muted);
}

.closing {
	margin-top: 26px;
	padding: 20px 22px;
	border-left: 3px solid var(--accent);
	background: var(--accent-soft);
	border-radius: 0 10px 10px 0;
	font-size: var(--fs-p);
	color: var(--accent-ink);
	font-weight: 500
}

/* [ generic block card ] */
.block {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 22px
}
	.block h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink);
		margin-bottom: 12px;
		letter-spacing: -.01em
	}
	.block h3 .k, .block h3 .n {
		font-size: var(--fs-p3);
		font-weight: 700;
		color: var(--accent);
		display: block;
		letter-spacing: .06em;
		margin-bottom: 6px
	}



/* =========================================================
	12. METRICS / KV

	
   ========================================================= */

.metrics {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr
}

@media(min-width:820px) {
	.metrics {
		grid-template-columns: repeat(4,1fr)
	}
}

.metric {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 18px;
	background: #fff
}
	.metric .v {
		font-size: 1.7rem; /* 특수값 — 주요 Metric 숫자 */
		font-weight: 700;
		color: var(--accent);
		letter-spacing: -.02em;
		line-height: 1.1
	}
	.metric .l {
		margin-top: 8px;
		font-size: var(--fs-p2);
		font-weight: 600;
		color: var(--ink)
	}
	.metric .c {
		margin-top: 5px;
		font-size: var(--fs-p3);
		color: var(--muted);
		line-height: 1.5
	}

	.kv {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 9px
}
	.kv .row {
		display: flex;
		align-items: baseline;
		gap: 12px;
		font-size: var(--fs-p2)
	}
		.kv .row .n {
			flex-shrink: 0;
			min-width: 110px;
			font-weight: 700;
			color: var(--accent-ink)
		}

.kv .row .d{color:var(--body)}

.site {
	margin-top: 16px;
	font-size: var(--fs-p3);
	color: var(--muted)
}
	.site b {
		color: var(--body);
		font-weight: 600
	}

/* [ trust strip / numbers ] */
.trust-strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-top: 34px;
	background: var(--line-2)
}
	.trust-strip .wrap {
		display: flex;
		flex-wrap: wrap;
		gap: 8px 40px;
		padding: 20px 24px
	}
	.trust-strip .t {
		display: flex;
		flex-direction: column
	}
		.trust-strip .t b {
			font-size: 1.35rem; /* 특수값 — 실적/지표 강조 숫자 */
			font-weight: 700;
			color: var(--ink);
			letter-spacing: -.01em
		}
		.trust-strip .t span {
			font-size: var(--fs-p3);
			color: var(--muted)
		}

/* trust grid / numbers */
.trust-grid {
	margin-top: 100px;
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr
}

@media(min-width:720px){
	.trust-grid {
		grid-template-columns: repeat(4,1fr)
	}
}

.trust-grid .t {
	padding: 26px 22px;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line)
}
	.trust-grid .t:nth-child(-n+2) {
		border-top: 0
	}

@media(min-width:720px){
	.trust-grid .t:nth-child(-n+4) {
		border-top: 0
	}}

.trust-grid .t .v {
	font-size: 2.0rem; /* 특수값 — Hero 실적 강조 숫자 */
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -.02em;
	line-height: 1
}

.trust-grid .t .l {
	margin-top: 9px;
	font-size: var(--fs-p1);
	font-weight: 600;
	color: var(--bl)
}

.trust-grid .t .c {
	margin-top: 3px;
	font-size: var(--fs-p2);
	color: var(--bl)
}



/* =========================================================
	13. TIMELINE

	
   ========================================================= */

.tl {
	margin-top: 36px;
	position: relative;
	padding-left: 26px
}
	.tl::before {
		content: "";
		position: absolute;
		left: 6px;
		top: 6px;
		bottom: 6px;
		width: 2px;
		background: var(--line)
	}
	.tl .row {
		position: relative;
		padding: 0 0 26px 20px
	}
	.tl .row::before {
		content: "";
		position: absolute;
		left: -24px;
		top: 5px;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background: #fff;
		border: 2.5px solid var(--accent)
	}
	.tl .yr {
		font-size: var(--fs-p);
		font-weight: 700;
		color: var(--ink);
		margin-bottom: 5px
	}

.tl ul{list-style:none}
	.tl ul li {
		position: relative;
		padding-left: 15px;
		font-size: var(--fs-p2);
		color: var(--body);
		margin: 3px 0
	}
	.tl ul li::before {
		content: "·";
		position: absolute;
		left: 2px;
		color: var(--accent);
		font-weight: 700
	}



/* =========================================================
	14. VISION / WHY / PARTNERS
========================================================= */

.vm {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin-top: 34px
}
@media(min-width:760px) {
	.vm {
		grid-template-columns: repeat(3,1fr)
	}
}
.vm .b {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 22px
}
	.vm .b .k {
		font-size: var(--fs-p3);
		font-weight: 700;
		letter-spacing: .1em;
		color: var(--accent);
		text-transform: uppercase;
		margin-bottom: 10px
	}
	.vm .b p {
		font-size: var(--fs-p);
		color: var(--body)
	}
.goals {
	margin-top: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}
	.goals span {
		font-size: var(--fs-p3);
		font-weight: 600;
		padding: 5px 12px;
		border-radius: 999px;
		background: var(--accent-soft);
		color: var(--accent-ink)
	}
.why {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin-top: 34px
}
@media(min-width:820px) {
	.why {
		grid-template-columns: repeat(3,1fr)
	}
}
.why .b {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 22px
}
	.why .b h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink);
		margin-bottom: 12px
	}
		.why .b h3 .n {
			display: block;
			font-size: var(--fs-p3);
			color: var(--accent);
			font-weight: 700;
			letter-spacing: .06em;
			margin-bottom: 6px
		}
	.why .b p {
		font-size: var(--fs-p2);
		color: var(--body);
		line-height: 1.65;
	}
.partners {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}
	.partners .p {
		border: 1px solid var(--line);
		border-radius: 10px;
		padding: 13px 17px;
		font-size: var(--fs-p2);
		color: var(--body);
		background: var(--line-2)
	}
		.partners .p b {
			color: var(--ink);
			font-weight: 600
		}


/* =========================================================
	15. DARK BANDS (future / oem / global)
========================================================= */

.dark {
	background: var(--ink);
	border-radius: 16px;
	color: #dce8ea
}
.fbadge {
	display: inline-block;
	font-size: var(--fs-p3);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #bfe0e4;
	background: rgba(14,110,122,.35);
	border: 1px solid rgba(14,110,122,.6);
	padding: 4px 11px;
	border-radius: 999px;
	margin-bottom: 14px
}
.dark h2,.dark h3,.dark h4{color:#fff}
.dark p{color:#9fb6bb}
.future {
	background: var(--ink);
	border-radius: 16px;
	padding: 40px 34px;
	margin-top: 38px
}
.future h2,.future h3{color:#fff}
	.future > p {
		color: #9fb6bb;
		margin-top: 12px;
		max-width: 640px;
		font-size: var(--fs-p)
	}
.fgrid {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
	margin-top: 26px
}
@media(min-width:720px) {
	.fgrid {
		grid-template-columns: 1fr 1fr
	}
}
.fitem {
	border: 1px solid #26424d;
	border-radius: 12px;
	padding: 18px 20px;
	background: rgba(255,255,255,.02)
}
	.fitem .fn {
		font-size: var(--fs-p3);
		font-weight: 700;
		color: #5f8f98;
		margin-bottom: 7px;
		letter-spacing: .06em
	}
	.fitem h4 {
		color: #eaf3f4;
		font-size: var(--fs-h4);
		font-weight: 600;
		margin-bottom: 5px
	}
	.fitem p {
		color: #8ba7ac;
		font-size: var(--fs-p2);
		line-height: 1.55
	}
	.fitem .st {
		display: inline-block;
		margin-top: 9px;
		font-size: var(--fs-p3);
		font-weight: 600;
		color: #bfe0e4;
		background: rgba(14,110,122,.3);
		padding: 2px 8px;
		border-radius: 6px
	}
.fcta{margin-top:26px}
	.fcta a, .dark a.link {
		color: #bfe0e4;
		text-decoration: none;
		font-weight: 600;
		font-size: var(--fs-p);
		border-bottom: 1px solid transparent;
		transition: border-color .18s
	}
.fcta a:hover,.dark a.link:hover{border-color:#bfe0e4}
.oem {
	background: var(--ink);
	border-radius: 16px;
	padding: 36px 32px;
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 22px
}
	.oem h3 {
		color: #fff;
		font-size: var(--fs-h3);
		font-weight: 700
	}
	.oem p {
		color: #9fb6bb;
		margin-top: 10px;
		max-width: 560px;
		font-size: var(--fs-p)
	}
.oem .tags{margin-top:14px}
	.oem .tag {
		background: rgba(14,110,122,.3);
		color: #bfe0e4;
		border: 1px solid #2c4954
	}
.btn {
	flex-shrink: 0;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 13px 22px;
	border-radius: 10px;
	font-size: var(--fs-p);
	white-space: nowrap;
	transition: background .18s;
	text-align: center
}
.btn:hover{background:#0b8391}
	.btn.ghost {
		background: transparent;
		border: 1px solid #35525c;
		color: #cfe0e2
	}
.btn.ghost:hover{background:rgba(255,255,255,.06)}
.global {
	background: var(--ink);
	border-radius: 16px;
	padding: 34px 32px;
	margin-top: 26px;
	color: #dce8ea
}
	.global h3 {
		color: #fff;
		font-size: var(--fs-h3);
		font-weight: 700
	}
	.global p {
		margin-top: 10px;
		color: #9fb6bb;
		font-size: var(--fs-p);
		max-width: 640px
	}
.gsites {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}
.gsite {
	border: 1px solid #2c4954;
	border-radius: 10px;
	padding: 11px 15px;
	font-size: var(--fs-p2)
}
	.gsite b {
		color: #eaf3f4;
		font-weight: 600
	}
	.gsite span {
		display: block;
		color: #7fa0a6;
		font-size: var(--fs-p3);
		margin-top: 2px
	}
.disc {
	margin-top: 42px;
	padding: 16px 20px;
	background: var(--line-2);
	border-radius: 10px;
	font-size: var(--fs-p3);
	color: var(--muted);
	line-height: 1.6
}
	.disc b {
		color: var(--body);
		font-weight: 600
	}


/* =========================================================
	16. PRODUCTS LAYERS + CONTACT
========================================================= */

.layer {
	padding: 56px 0 20px;
	scroll-margin-top: 120px
}
.layer-head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 8px
}
.layer-tag {
	font-size: var(--fs-p3);
	font-weight: 700;
	letter-spacing: .1em;
	color: #fff;
	background: var(--accent);
	padding: 4px 10px;
	border-radius: 6px
}
.layer-head h2{font-size: var(--fs-h2)}
.layer-desc {
	color: var(--muted);
	font-size: var(--fs-p);
	margin-bottom: 28px;
	max-width: 640px
}
.meta {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center
}
.code {
	margin-left: auto;
	font-size: var(--fs-p3);
	font-weight: 600;
	color: var(--muted);
	font-family: ui-monospace,Menlo,Consolas,monospace;
	background: var(--line-2);
	padding: 3px 9px;
	border-radius: 6px
}
.contact{padding:60px 0 30px}
.cbox {
	background: var(--ink);
	border-radius: 18px;
	padding: 36px 34px;
	color: #dce8ea;
	display: grid;
	gap: 26px;
	grid-template-columns: 1fr
}
@media(min-width:760px) {
	.cbox {
		grid-template-columns: 1.2fr 1fr;
		align-items: center
	}
}
.cbox h2{color:#fff}
.cbox .info {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: var(--fs-p2);
	color: #b6cace
}
	.cbox .info b {
		color: #eaf3f4;
		font-weight: 600
	}
.cbox .cta {
	display: flex;
	flex-direction: column;
	gap: 10px
}

/* ---- Contact Form (기술 적용성 검토) ---- */
.contact-section .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 40px;
	align-items: start;
}

@media(max-width:820px) {
	.contact-section .contact-grid {
		grid-template-columns: 1fr
	}
}

.ct-label {
	font-size: var(--fs-p3);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}

.ct-list {
	list-style: none
}

	.ct-list li {
		font-size: var(--fs-p2);
		color: var(--body);
		padding: 10px 0;
		border-bottom: 1px solid var(--line);
	}

.ct-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px
}

	.ct-tags span {
		font-size: var(--fs-p3);
		border: 1px solid var(--line);
		border-radius: 999px;
		padding: 6px 13px;
		color: var(--ink);
	}

.ct-form {
	background: var(--line-2);
	border-radius: var(--radius);
	padding: 26px;
}

	.ct-form label {
		display: block;
		font-size: var(--fs-p3);
		font-weight: 600;
		color: var(--ink);
		margin: 14px 0 6px;
	}

		.ct-form label:first-child {
			margin-top: 0
		}

	.ct-form input,
	.ct-form textarea {
		width: 100%;
		border: 1px solid var(--line);
		border-radius: 10px;
		padding: 11px 13px;
		font: inherit;
		font-size: var(--fs-p2);
		background: #fff;
		color: var(--ink);
		box-sizing: border-box;
	}

	.ct-form textarea {
		min-height: 90px;
		resize: vertical
	}

	.ct-form .btn {
		margin-top: 20px;
		width: 100%;
		justify-content: center;
		border: 0;
		cursor: pointer;
	}

	.ct-form .ct-note {
		font-size: var(--fs-p3);
		color: var(--muted);
		margin-top: 12px;
		line-height: 1.55;
	}

/* =========================================================
	18. UTILITIES / A11Y
========================================================= */

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 3px
}
@media(prefers-reduced-motion:reduce) {
	html {
		scroll-behavior: auto
	}

	* {
		transition: none !important
	}
}


/* =========================================================
	19. FOCUS AREAS (Front Page · 8개 카드)
========================================================= */

.focus-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 34px;
}

@media(min-width:640px) {
	.focus-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:900px) {
	.focus-grid {
		grid-template-columns: repeat(3,1fr)
	}
}

.focus-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	outline: none;
	background: var(--line-2);
}

	.focus-card:focus-visible {
		outline: 2px solid var(--accent);
		outline-offset: 3px;
	}

/* 사진 */
.focus-media {
	aspect-ratio: 4/3;
	background-color: var(--line-2);
	background-position: center;
	background-size: cover;
	transition: transform .35s ease;
}

.focus-card:hover .focus-media,
.focus-card.open .focus-media {
	transform: scale(1.04);
}

/* 사진 하단 그라데이션 (제목 가독성용) */
.focus-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 55%;
	background: linear-gradient(to top, rgba(15,43,61,.75), rgba(15,43,61,0));
	pointer-events: none;
	z-index: 1;
}

/* 상단 상태 배지 */
.focus-top {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
}

.focus-badge {
	font-size: var(--fs-p3);
	font-weight: 700;
	padding: 4px 11px;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: var(--accent-ink);
	letter-spacing: .02em;
}

/* 하단 번호 + 제목 (기본 상태 항상 노출) */
.focus-bottom {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	z-index: 2;
	color: #fff;
}

	.focus-bottom .focus-num {
		display: block;
		font-size: var(--fs-p3);
		font-weight: 700;
		letter-spacing: .08em;
		color: rgba(255,255,255,.85);
		margin-bottom: 4px;
	}

	.focus-bottom h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		letter-spacing: -.01em;
		color: #fff;
	}

/* 상세 패널 (호버/탭/포커스 시 아래에서 위로 등장) */
.focus-panel {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: rgba(255,255,255,.96);
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateY(100%);
	transition: transform .35s ease;
	overflow-y: auto;
}

.focus-card:hover .focus-panel,
.focus-card:focus-within .focus-panel,
.focus-card.open .focus-panel {
	transform: translateY(0);
}

.focus-panel h4 {
	font-size: var(--fs-h4);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.01em;
	margin-bottom: 10px;
}

.focus-panel p {
	font-size: var(--fs-p2);
	color: var(--body);
	line-height: 1.65;
}

.focus-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-weight: 600;
	font-size: var(--fs-p2);
	color: var(--accent);
	text-decoration: none;
}

	.focus-link:hover {
		text-decoration: underline;
	}

@media(prefers-reduced-motion:reduce) {
	.focus-media, .focus-panel {
		transition: none
	}
}

/* =========================================================
	20. TECHNOLOGY — 응용 밴드
========================================================= */

.tech-apps {
	margin-top: 32px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--line-2);
}

	.tech-apps .lbl {
		font-size: var(--fs-p2);
		font-weight: 700;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 14px;
	}

.tech-apps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media(min-width:760px) {
	.tech-apps-grid {
		grid-template-columns: repeat(3,1fr)
	}
}

.tech-apps-grid .item b {
	display: block;
	font-size: var(--fs-h4);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}

.tech-apps-grid .item span {
	font-size: var(--fs-p2);
	color: var(--muted);
	line-height: 1.55;
}

.tech-verify {
	margin-top: 18px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

	.tech-verify .tv-icon {
		flex-shrink: 0;
		width: 34px;
		height: 34px;
		border-radius: 50%;
		background: var(--accent-soft);
		color: var(--accent-ink);
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.tech-verify .tv-body {
		flex: 1;
		min-width: 0;
	}

	.tech-verify .tv-lbl {
		font-size: var(--fs-p3);
		font-weight: 700;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: var(--accent);
		margin-bottom: 6px;
	}

	.tech-verify h4 {
		font-size: var(--fs-h4);
		font-weight: 700;
		color: var(--ink);
		margin-bottom: 8px;
	}

	.tech-verify p {
		font-size: var(--fs-p2);
		color: var(--body);
		line-height: 1.6;
	}

	.tech-verify .tv-list {
		list-style: none;
		margin: 2px 0 12px;
	}

		.tech-verify .tv-list li {
			position: relative;
			padding-left: 16px;
			font-size: var(--fs-p2);
			color: var(--body);
			line-height: 1.7;
		}

			.tech-verify .tv-list li::before {
				content: "";
				position: absolute;
				left: 2px;
				top: .62em;
				width: 5px;
				height: 5px;
				border-radius: 50%;
				background: var(--accent-soft);
				border: 1.5px solid var(--accent);
			}

		.tech-verify .tv-list b {
			color: var(--ink);
			font-weight: 600;
		}

	.tech-verify .tv-note {
		font-size: var(--fs-p3);
		color: var(--muted);
		line-height: 1.6;
		background: var(--line-2);
		padding: 10px 12px;
		border-radius: 8px;
	}

/* =========================================================
	21. CASE STUDIES — Front Page 4개 대표 카드
========================================================= */

.case-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	margin-top: 34px;
}

@media(min-width:720px) {
	.case-grid {
		grid-template-columns: 1fr 1fr
	}
}

.case-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.case-media {
	aspect-ratio: 9/6;
	background-color: var(--line-2);
	background-position: center;
	background-size: cover;
}

.case-media2 {
	aspect-ratio: 14/5;
	background-color: var(--line-2);
	background-position: center;
	background-size: cover;
}

.case-body {
	padding: 22px 22px 24px;
}

.case-tag {
	display: inline-block;
	font-size: var(--fs-p3);
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--accent-ink);
	background: var(--accent-soft);
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 10px;
}

.case-body h3 {
	font-size: var(--fs-h3);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.01em;
}

.case-metrics {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

	.case-metrics .cm {
		position: relative;
		padding-left: 16px;
		font-size: var(--fs-p);
		font-weight: 700;
		color: var(--ink);
	}

		.case-metrics .cm::before {
			content: "";
			position: absolute;
			left: 0;
			top: .5em;
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: var(--accent);
		}

.case-body p {
	margin-top: 14px;
	font-size: var(--fs-p2);
	color: var(--muted);
	line-height: 1.65;
}

.case-body .focus-link {
	margin-top: 16px;
}

/* =========================================================
	22. PRODUCTS & SYSTEMS — Front Page 8개 카드
========================================================= */

.product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 34px;
}

@media(min-width:640px) {
	.product-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:1040px) {
	.product-grid {
		grid-template-columns: repeat(4,1fr)
	}
}

.prod-tag {
	display: inline-block;
	font-size: var(--fs-p3);
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--accent-ink);
	background: var(--accent-soft);
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 10px;
}

/* ---- Core Module 배너 (링크 없는 정보 블록) ---- */
.core-banner {
	border: 1px solid var(--line);
	border-left: 4px solid var(--accent);
	border-radius: var(--radius);
	background: var(--accent-soft);
	padding: 28px 26px;
	margin-top: 34px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

@media(min-width:720px) {
	.core-banner {
		grid-template-columns: 1.4fr 1fr
	}
}

.core-banner-media {
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
	background: repeating-linear-gradient(135deg,#eef4f5 0 12px,#e8f1f2 12px 24px);
}

	.core-banner-media img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.core-banner h3 {
		margin-top: 10px;
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink);
		letter-spacing: -.01em;
	}

		.core-banner h3 .en {
			display: block;
			font-size: var(--fs-p2);
			font-weight: 600;
			color: var(--accent-ink);
			margin-top: 4px;
		}

	.core-banner p {
		margin-top: 12px;
		font-size: var(--fs-p2);
		color: var(--body);
		line-height: 1.65;
		max-width: 640px;
	}

	.core-banner .tags {
		margin-top: 16px
	}

/* ---- 4개 플랫폼 카드 그리드 ---- */
.platform-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 22px;
}

@media(min-width:640px) {
	.platform-grid {
		grid-template-columns: 1fr 1fr
	}
}

/* =========================================================
	23. PRODUCTS.HTML — 플랫폼 비교표
========================================================= */
.spec-table {
	margin-top: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow-x: auto
}

.spec-row {
	display: grid;
	grid-template-columns: 1.3fr 1fr .8fr 1fr 1fr 1.3fr;
	gap: 10px;
	padding: 13px 16px;
	min-width: 680px;
	border-top: 1px solid var(--line);
	font-size: var(--fs-p2);
	align-items: center
}

	.spec-row:first-child {
		border-top: 0;
		background: var(--ink);
		color: #cfe0e2;
		font-weight: 600;
		font-size: var(--fs-p3);
		letter-spacing: .04em;
		text-transform: uppercase
	}

	.spec-row .sp-name {
		font-weight: 700;
		color: var(--ink)
	}

	.spec-row:first-child .sp-name {
		color: #cfe0e2;
		font-weight: 600
	}

	.spec-row .sp-flow {
		color: var(--accent-ink);
		font-weight: 600
	}

/* 가스 구성표 */
.gas-table {
	margin-top: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow-x: auto
}

.gas-row {
	display: grid;
	grid-template-columns: 1.6fr repeat(4,.7fr);
	gap: 8px;
	padding: 12px 16px;
	min-width: 480px;
	border-top: 1px solid var(--line);
	font-size: var(--fs-p2);
	text-align: center
}

	.gas-row:first-child {
		border-top: 0;
		background: var(--line-2);
		font-weight: 700;
		color: var(--ink);
		font-size: var(--fs-p3)
	}

	.gas-row .g-name {
		text-align: left;
		font-weight: 600;
		color: var(--ink)
	}

.gas-legend {
	margin-top: 10px;
	font-size: var(--fs-p3);
	color: var(--muted)
}

/* ---- 나노버블 생성 방식 (3단계 프로세스) ---- */
.mech-block {
	margin-top: 34px;
	padding-top: 30px;
	border-top: 1px solid var(--line)
}

.mech-title {
	font-size: var(--fs-h3);
	font-weight: 700;
	color: var(--ink)
}

.mech-desc {
	margin-top: 10px;
	max-width: 680px;
	font-size: var(--fs-p);
	color: var(--body);
	line-height: 1.65
}

.process-flow {
	margin-top: 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;
}

@media(min-width:820px) {
	.process-flow {
		flex-direction: row;
		align-items: stretch
	}
}

.pf-step {
	flex: 1;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--line-2);
	padding: 20px 18px;
}

.pf-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-p3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.pf-step h4 {
	font-size: var(--fs-h4);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px
}

.pf-step p {
	font-size: var(--fs-p2);
	color: var(--muted);
	line-height: 1.55
}

.pf-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-weight: 700;
	font-size: 1.1rem; /* 특수값 — Process Flow 방향 화살표 */
	transform: rotate(90deg);
}

@media(min-width:820px) {
	.pf-arrow {
		transform: none
	}
}

.mech-note {
	margin-top: 20px;
	font-size: var(--fs-p3);
	color: var(--muted);
	background: var(--line-2);
	padding: 10px 12px;
	border-radius: 8px;
	line-height: 1.55
}

/* ---- 플랫폼별 제품 카드 ---- */
.pcard-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 26px;
}

@media(min-width:640px) {
	.pcard-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media(min-width:900px) {
	.pcard-grid {
		grid-template-columns: repeat(3,1fr)
	}
}

.pcard-grid-1 {
	grid-template-columns: 1fr
}

@media(min-width:640px) {
	.pcard-grid-1 {
		grid-template-columns: minmax(280px,420px)
	}
}

.pcard {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 20px;
	overflow: hidden;
}

	.pcard .thumb {
		height: 160px;
		margin: -20px -20px 16px
	}

	.js-product-open {
		cursor: pointer;
	}

	.pcard-code {
		display: inline-block;
		font-size: var(--fs-p3);
		font-weight: 700;
		font-family: ui-monospace,Menlo,Consolas,monospace;
		color: var(--accent-ink);
		background: var(--accent-soft);
		padding: 3px 9px;
		border-radius: 6px;
		margin-bottom: 10px;
	}

	.pcard h4 {
		font-size: var(--fs-h4);
		font-weight: 700;
		color: var(--ink);
		line-height: 1.4;
		margin-bottom: 8px
	}

	.pcard-desc {
		font-size: var(--fs-p3);
		color: var(--muted);
		margin-bottom: 10px
	}

	.pcard .go {
		font-size: var(--fs-p2); /* 원하는 크기로 조정 */
	}

/* =========================================================
	24. CASE-STUDIES DETAIL PAGES — 서브네비 + 상세 사례 카드
========================================================= */

/* 4-way 서브네비 (사례 분야 전환) */
.case-subnav {
	position: sticky;
	top: 60px;
	z-index: 20;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line)
}

	.case-subnav .wrap {
		display: flex;
		gap: 26px;
		overflow-x: auto;
		scrollbar-width: none
	}

		.case-subnav .wrap::-webkit-scrollbar {
			display: none
		}

	.case-subnav a {
		white-space: nowrap;
		padding: 16px 2px;
		font-size: var(--fs-p2);
		font-weight: 600;
		color: var(--muted);
		text-decoration: none;
		border-bottom: 2px solid transparent;
		transition: color .18s,border-color .18s
	}

		.case-subnav a:hover {
			color: var(--ink)
		}

		.case-subnav a[aria-current="page"] {
			color: var(--ink);
			border-color: var(--accent);
			font-weight: 700
		}

/* 상세 사례 블록 */
.case-detail {
	padding: 52px 0;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 130px
}

	.case-detail .cd-num {
		font-size: var(--fs-p3);
		font-weight: 700;
		color: var(--accent);
		letter-spacing: .06em;
		margin-bottom: 8px
	}

	.case-detail h2 {
		font-size: var(--fs-h2);
		font-weight: 700;
		color: var(--ink);
		letter-spacing: -.01em
	}

	.case-detail .cd-lead {
		margin-top: 12px;
		max-width: 760px;
		font-size: var(--fs-p1);
		color: var(--body);
		line-height: 1.7
	}

.cd-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 26px
}

@media(min-width:860px) {
	.cd-grid {
		grid-template-columns: 1.1fr 1fr
	}
}

.cd-figure {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--line-2)
}

	.cd-figure img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover
	}

.cd-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	background: #fff
}

.cd-panel-title {
	font-size: var(--fs-h3);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.4
}

	.cd-panel-title .accent {
		color: var(--accent)
	}

.cd-panel-sub {
	margin-top: 6px;
	font-size: var(--fs-p3);
	color: var(--muted)
}

.cd-table {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6px 14px
}

	.cd-table dt {
		font-size: var(--fs-p3);
		color: var(--muted);
		white-space: nowrap
	}

	.cd-table dd {
		font-size: var(--fs-p2);
		color: var(--body)
	}

.cd-metrics {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
	display: flex;
	flex-direction: column;
	gap: 9px
}

	.cd-metrics .m-row {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: 10px;
		font-size: var(--fs-p2)
	}

	.cd-metrics .m-label {
		color: var(--muted)
	}

	.cd-metrics .m-value {
		font-weight: 700;
		color: var(--accent-ink);
		text-align: right
	}

.cd-note {
	margin-top: 14px;
	font-size: var(--fs-p3);
	color: var(--muted);
	background: var(--line-2);
	padding: 9px 11px;
	border-radius: 8px;
	line-height: 1.5
}

/* 하단 다른 사례 링크 */
.case-links {
	padding: 44px 0
}

	.case-links h3 {
		font-size: var(--fs-h3);
		font-weight: 700;
		color: var(--ink)
	}

	.case-links p {
		margin-top: 8px;
		color: var(--muted);
		font-size: var(--fs-p2)
	}

.case-links-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px
}

@media(min-width:720px) {
	.case-links-grid {
		grid-template-columns: repeat(3,1fr)
	}
}

.case-link-card {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	text-decoration: none;
	transition: border-color .18s,box-shadow .18s
}

	.case-link-card:hover {
		border-color: #cfe0e2;
		box-shadow: 0 8px 20px -14px rgba(14,110,122,.35)
	}

	.case-link-card .category {
		display: block;
		font-size: var(--fs-p3);
		font-weight: 700;
		color: var(--accent);
		letter-spacing: .04em
	}

	.case-link-card .title {
		display: block;
		margin-top: 6px;
		font-size: var(--fs-p2);
		font-weight: 600;
		color: var(--ink)
	}

/* ============================================================
   FAQ 아코디언
   ============================================================ */
.faq-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 28px;
}

.faq-item {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 26px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

	.faq-question h3 {
		font-size: var(--fs-h3);
		font-weight: 600;
		line-height: 1.5;
		color: var(--ink);
		margin: 0;
	}

	.faq-question:hover h3 {
		color: var(--accent);
	}

/* + 아이콘 → 열리면 − 로 변형 */
.icon-plus {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

	.icon-plus::before,
	.icon-plus::after {
		content: "";
		position: absolute;
		background: var(--accent);
		transition: transform .25s ease, opacity .25s ease;
	}

	.icon-plus::before {
		top: 50%;
		left: 0;
		width: 100%;
		height: 2px;
		transform: translateY(-50%);
	}

	.icon-plus::after {
		left: 50%;
		top: 0;
		width: 2px;
		height: 100%;
		transform: translateX(-50%);
	}

.faq-item.open .icon-plus::after {
	opacity: 0;
	transform: translateX(-50%) scaleY(0);
}

/* 답변 영역 — 접혀있다가 펼쳐짐 */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

.faq-item.open .faq-answer {
	max-height: 800px;
}

.faq-answer-content {
	padding: 18px 26px 26px;
}

	.faq-answer-content p.t3 {
		font-size: var(--fs-p);
		line-height: 1.7;
		color: var(--body);
		margin: 0 0 14px;
	}

		.faq-answer-content p.t3:last-child {
			margin-bottom: 0;
		}

	.faq-answer-content strong {
		color: var(--ink);
		font-weight: 600;
	}

/* ============================================================
   NTA 검증 배너 — 우측 이미지 썸네일 (A4 비율)
   ============================================================ */
.tech-verify {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 28px;
}

	.tech-verify .tv-body {
		flex: 1 1 420px;
	}

.tv-media {
	flex: 0 0 auto;
	display: flex;
	gap: 14px;
	margin-left: auto;
}

.tv-media-box {
	width: 165px;
	aspect-ratio: 210 / 297;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
	flex-shrink: 0;
	padding: 0;
	background: none;
	cursor: zoom-in;
}

	.tv-media-box img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.tv-media-box:hover {
		box-shadow: 0 6px 20px rgba(0,0,0,.12);
	}

@media (max-width: 720px) {
	.tv-media {
		margin-left: 0;
		width: 100%;
	}
		.tv-media-box {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		flex-shrink: 1;
	}
	.tv-media-box img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		object-fit: cover;
	}
}


/* ============================================================
   이미지 라이트박스 (클릭 시 원본 크게 보기 — 사이트 공통)
   ============================================================ */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(15,15,15,.88);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	z-index: 1000;
}

	.lightbox.open {
		opacity: 1;
		visibility: visible;
	}

.lightbox-img {
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	box-shadow: 0 12px 40px rgba(0,0,0,.4);
	border-radius: 4px;
}

.lightbox-close {
	position: absolute;
	top: 24px;
	right: 32px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 1.8rem; /* 특수값 — Lightbox 닫기 아이콘 */
	line-height: 1;
	cursor: pointer;
}

	.lightbox-close:hover {
		background: rgba(255,255,255,.22);
	}

/* ============================================================
   제품 상세 팝업 (Product Modal)
   ============================================================ */
.product-modal {
	position: fixed;
	inset: 0;
	background: rgba(15,15,15,.6);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease;
	z-index: 1000;
}

	.product-modal.open {
		opacity: 1;
		visibility: visible;
	}

.pm-inner {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 880px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px 44px;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.pm-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: #f2f2f2;
	color: #444;
	font-size: 1.3rem; /* 특수값 — Product Modal 닫기 아이콘 */
	line-height: 1;
	cursor: pointer;
}

	.pm-close:hover {
		background: #e6e6e6;
	}

/* 상단 — 제품명 + 영문 서브라벨 */
.pm-header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

	.pm-header h3 {
		font-size: 1.5rem; /* 특수값 — Product Modal 메인 타이틀 */
		font-weight: 700;
		color: var(--ink);
		margin: 0;
	}

.pm-sublabel {
	font-size: var(--fs-p2);
	letter-spacing: .08em;
	color: var(--accent);
	font-weight: 600;
}

.pm-intro {
	margin-top: 14px;
	font-size: var(--fs-p);
	line-height: 1.7;
	color: var(--body);
}

/* 하단 — 좌 사진 / 우 특징+적용분야 */
.pm-body {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 32px;
	margin-top: 28px;
}

	.pm-body img {
		width: 100%;
		border-radius: 8px;
		object-fit: cover;
	}

.pm-features h4,
.pm-applications h4 {
	font-size: var(--fs-h4);
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 10px;
}

.pm-applications {
	margin-top: 22px;
}

	.pm-features ul,
	.pm-applications ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.pm-features li,
	.pm-applications li {
		position: relative;
		padding-left: 16px;
		margin-bottom: 8px;
		font-size: var(--fs-p);
		color: var(--body);
		line-height: 1.5;
	}

		.pm-features li::before,
		.pm-applications li::before {
			content: "";
			position: absolute;
			left: 0;
			top: .6em;
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: var(--accent);
		}

/* 스펙 테이블 자리 — 내용은 추후 확정 */
.pm-specs {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

	.pm-specs h4 {
		font-size: var(--fs-h4);
		font-weight: 700;
		color: var(--ink);
		margin: 0 0 12px;
	}

.pm-specs-placeholder {
	border: 1px dashed #ccc;
	border-radius: 8px;
	padding: 32px;
	text-align: center;
	color: #999;
	font-size: var(--fs-p2);
}

@media (max-width: 640px) {
	.pm-body {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
	17. FOOTER
========================================================= */
.site-footer {
	background: #0a0a0a;
	color: rgba(255,255,255,.85);
	padding: 48px 0 32px;
	margin-top: 44px;
}

.footer-brand-name {
	font-size: 1.4rem; /* 특수값 — Footer 브랜드명 */
	font-weight: 800;
	color: var(--accent);
	margin: 0 0 16px;
}

.footer-tagline {
	font-size: var(--fs-p);
	line-height: 1.8;
	color: rgba(255,255,255,.75);
	max-width: 640px;
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,.15);
	margin: 32px 0 24px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-legal p {
	font-size: var(--fs-p3);
	line-height: 1.8;
	color: rgba(255,255,255,.55);
	margin: 0;
}

.footer-legal .footer-contact-line {
	margin: 6px 0;
}

	.footer-legal .footer-contact-line a {
		color: rgba(255,255,255,.75);
		text-decoration: none;
	}

		.footer-legal .footer-contact-line a:hover {
			color: #fff;
			text-decoration: underline;
		}

	.footer-legal .footer-contact-line span {
		margin: 0 6px;
		color: rgba(255,255,255,.35);
	}

.footer-social {
	display: flex;
	gap: 10px;
}

.social-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 999px;
	color: #fff;
	font-size: var(--fs-p2);
	text-decoration: none;
}

	.social-pill:hover {
		background: rgba(255,255,255,.1);
	}

@media (max-width: 640px) {
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ============================================================
   산업 필터 + 미니 카드
   ============================================================ */
.industry-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 8px;
}

.filter-pill {
	padding: 7px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--body);
	font-size: var(--fs-p2);
	cursor: pointer;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

	.filter-pill:hover {
		border-color: var(--accent);
	}

	.filter-pill.on {
		background: var(--accent);
		color: #fff;
		border-color: var(--accent);
	}

/* 미니 카드 — 기존 .pcard보다 작고 간결하게 */
.pcard-grid-mini {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
	.pcard-grid-mini {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1000px) {
	.pcard-grid-mini {
		grid-template-columns: repeat(5, 1fr);
	}
}

.pcard-mini {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 12px;
	cursor: pointer;
	transition: opacity .25s ease, filter .25s ease;
}

	.pcard-mini .thumb {
		height: 80px;
		margin: -12px -12px 10px;
	}

	.pcard-mini h5 {
		font-size: var(--fs-h5);
		font-weight: 700;
		color: var(--ink);
		line-height: 1.4;
		margin-bottom: 6px;
	}

	.pcard-mini .tags {
		gap: 4px;
	}

	.pcard-mini .tag {
		font-size: .7rem; /* 특수값 — 미니카드 내부 초소형 태그 */
		padding: 2px 7px;
	}

	.pcard-mini.dimmed {
		opacity: .25;
		filter: grayscale(.5);
		pointer-events: none;
	}


/* ============================================================
   GLOBAL FOOTPRINT
============================================================ */

.global-footprint .intro {
	max-width: 880px;
}

.fp-map-stage {
	position: relative;
	margin-top: 34px;
	border-radius: 24px;
	overflow: hidden;
	background: #f8fbff;
	border: 1px solid rgba(31, 111, 178, 0.10);
}

.fp-map {
	display: block;
	width: 100%;
	height: auto;
}

.fp-region-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.fp-region {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 170px;
	padding: 10px 12px;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(31, 111, 178, 0.32);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(20, 48, 78, 0.08);
	backdrop-filter: blur(5px);
}

	.fp-region strong {
		display: block;
		margin-bottom: 4px;
		color: #175f9d;
		font-size: 15px; /* 특수값 — Global Footprint 지도 지역명 */
		font-weight: 750;
		line-height: 1.2;
	}

	.fp-region span {
		display: block;
		color: #536579;
		font-size: 12px; /* 특수값 — Global Footprint 지도 국가명 */
		line-height: 1.45;
	}

.fp-region-asia {
	width: 220px;
}

.fp-note {
	margin-top: 16px;
}

@media (max-width: 900px) {

	.fp-map-stage {
		overflow: visible;
		background: transparent;
		border: 0;
	}

	.fp-map {
		border-radius: 18px;
		border: 1px solid rgba(31, 111, 178, 0.10);
		background: #f8fbff;
	}

	.fp-region-layer {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 18px;
	}

	.fp-region {
		position: static;
		width: auto;
		transform: none;
		box-shadow: none;
	}

	.fp-region-asia {
		width: auto;
	}
}

@media (max-width: 580px) {

	.fp-region-layer {
		grid-template-columns: 1fr;
	}
}