/* =========================================================
   서브 페이지 공통 스타일 (sub01 / sub02 / sub04)
   PC 기준(1440px~) → 1439 / 1279 / 1023 / 767 / 479
   ========================================================= */

/* ========== 컬러 변수 (통합) ========== */
:root {
	--color-primary: #191A47;
	--color-accent: #FF6B35;
	--color-accent-light: #FF8C5A;
	--color-accent-gradient-start: #ffb347;
	--color-accent-gradient-mid: #ff9a56;
	--color-accent-gradient-mid2: #ff7b45;
	--color-white: #fff;
	--color-text: #333;
	--color-text-light: #666;
	--color-text-muted: #999;
	--color-text-dark: #444;
	--color-border: #e5e5e5;
	--color-border-light: #f0f0f0;
	--color-bg-light: #f8f9fa;
	--color-bullet: #00BFFE;
	--shadow-card: rgba(0, 0, 0, 0.08);
	--shadow-accent: rgba(255, 107, 53, 0.15);
	--shadow-accent-strong: rgba(255, 107, 53, 0.2);
	--shadow-accent-hover: rgba(255, 107, 53, 0.3);
	--overlay-dark: rgba(0, 0, 0, 0.7);
	--overlay-hero: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	--shadow-subtle: rgba(0, 0, 0, 0.05);
	--shadow-final-goal: 0 10px 40px rgba(255, 107, 53, 0.35);
	--shadow-final-goal-hover: 0 14px 50px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 154, 86, 0.2);
}

/* ========== PC 기준 (1440px~) ========== */
#container {
	font-family: 'Pretendard JP Variable', sans-serif;
	width: 100%;
	min-height: calc(100vh - 92px);
	padding-top: 92px;
	background: var(--color-white);
}

.content-wrapper {
	margin: 0 auto 80px;
	max-width: 1920px;
	padding: 0 80px;
	box-sizing: border-box;
	position: relative;
}

/* 페이지 타이틀 영역 */
.page-header {
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-border);
}

.page-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.4;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.page-subtitle {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-light);
	line-height: 1.6;
}

/* 메인 콘텐츠 영역 */
.main-content {
	width: 100%;
	max-width: 1600px;
	margin: 100px auto 0;
	padding: 0;
	box-sizing: border-box;
}

.content-section {
	margin-bottom: 80px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 30px;
	letter-spacing: -0.01em;
}

.section-content {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.8;
}

/* 그리드 레이아웃 */
.grid-layout {
	display: grid;
	gap: 30px;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-item {
	border-radius: 8px;
	box-sizing: border-box;
}

/* 카드 레이아웃 */
.card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 40px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	height: 100%;
}

.card:hover {
	box-shadow: 0 8px 24px var(--shadow-card);
	transform: translateY(-4px);
}

.card-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 20px;
	position: relative;
}



.card-content {
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.8;
}

/* 이미지 영역 */
.image-section {
	width: 100%;
	margin: 40px 0;
}

.image-section img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* 텍스트 콘텐츠 */
.text-content {
	max-width: 900px;
	margin: 0 auto;
}

.text-content p {
	margin-bottom: 20px;
}

.text-content p:last-child {
	margin-bottom: 0;
}

/* 리스트 스타일 */
.content-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-list li {
	padding: 15px 0;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 16px;
	color: var(--color-text);
	line-height: 1.6;
}

.content-list li:last-child {
	border-bottom: none;
}

.content-list li:before {
	content: "•";
	color: var(--color-bullet);
	margin-right: 10px;
	font-weight: bold;
}

/* 정보 테이블 스타일 */
.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
}

.info-table tr {
	border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table th {
	width: 200px;
	padding: 20px 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-primary);
	text-align: left;
	vertical-align: top;
}

.info-table td {
	padding: 20px 0 20px 30px;
	font-size: 16px;
	color: var(--color-text);
	line-height: 1.8;
}

/* 정보 카드 스타일 */
.info-card {
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 20px;
	text-align: center;
}

.info-card-icon {
	margin-bottom: 16px;
}

.info-card-icon .bi {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: var(--color-white);
	background: var(--color-primary);
	border-radius: 50%;
	padding: 15px;
	margin: 0 auto 20px;
}

.info-card-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-light);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.info-card-value {
	font-size: 26px;
	font-weight: 600;
	color: var(--color-primary);
}

/* 하이라이트 텍스트 */
.highlight-text {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-primary);
	line-height: 1.8;
	margin-bottom: 30px;
}

/* 히어로 섹션 */
.hero-section {
	width: 100%;
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.hero-image {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 1800px;
	height: 100%;
	background: var(--color-border-light);
	overflow: hidden;
	z-index: 1;
	will-change: transform, width;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 768px) {
	.hero-image {
		height: 50%;
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--overlay-hero);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.hero-section.scrolled .hero-overlay {
	opacity: 1;
}

.hero-content {
	position: fixed;
	top: 20%;
	left: 0;
	width: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	pointer-events: none;
	transition: opacity 0.3s ease;
	padding-left: 80px;
}

.hero-content-inner {
	width: min(1600px, 100%);
	pointer-events: auto;
	margin-left: 0;
	text-align: left;
}

@media screen and (max-width: 1600px) {
	.hero-content-inner {
		padding-left: 40px;
		padding-right: 40px;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 768px) {
	.hero-content-inner {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
}

/* heroSection 지나면 스크롤 따라오지 않음 (문서 흐름으로 올라감) */
.hero-content.past-hero {
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 80px;
}

.breadcrumb {
	font-size: 24px;
	color: var(--color-accent);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	transition: color 0.5s ease;
	font-weight: 600;
}

.hero-content.scrolled .breadcrumb {
	color: var(--color-white);
}

.hero-title {
	font-size: 72px;
	color: var(--color-primary);
	margin-bottom: 40px;
	line-height: 1.2;
	transition: color 0.5s ease;
}

.hero-content.scrolled .hero-title {
	color: var(--color-white);
}

/* 비전 섹션 */
.vision-section {
	margin-bottom:  100px;
}

.vision-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 30px;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.vision-content {
	color: var(--color-text);
}

.vision-content p {
	font-size: 20px;
	line-height: 1.8;
}

/* 가치 섹션 */
.values-section {
	margin-bottom: 80px;
}

.values-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
	gap: 20px;
	flex-direction: column;
}

.values-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-primary);
}

.values-intro {
	font-size: 20px;
	color: var(--color-text-light);
}

.values-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.value-item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.value-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 15px;
}

.value-name {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
}

.value-name-en {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text-muted);
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.value-desc {
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.7;
}

/* 지도 스타일 */
.map-container {
	width: 100%;
	height: 300px;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 20px;
	border: 1px solid var(--color-border);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.root_daum_roughmap,
.root_daum_roughmap_landing {
	width: 100% !important;
	height: 100% !important;
}

.location-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.location-info {
	flex: 0 0 auto;
}

.location-map {
	flex: 1;
	margin-top: 20px;
}

/* 제품 카드 (sub02) */
.product-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	border-color: var(--color-accent);
	box-shadow: 0 8px 24px var(--shadow-accent);
	transform: translateY(-4px);
}

.product-image {
	width: 100%;
	height: 250px;
	background: var(--color-bg-light);
	overflow: hidden;
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-name {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 15px;
}

.product-category {
	font-size: 15px;
	color: var(--color-accent);
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-desc {
	font-size: 18px;
	color: var(--color-text-light);
	line-height: 1.7;
	flex: 1;
}

.product-specs {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border-light);
}

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

.product-specs li {
	font-size: 15px;
	color: var(--color-text-light);
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.product-specs li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: bold;
}

.product-specs li:last-child {
	margin-bottom: 0;
}

.product-filter {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text-light);
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-white);
}

.product-category-content {
	display: none;
}

.product-category-content.active {
	display: block;
}

.product-category-desc {
	font-size: 20px;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 40px;
}

/* R&D 연구 분야 카드 (sub04) */
.research-area-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 40px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
}

.research-area-card:hover {
	border-color: var(--color-accent);
	box-shadow: 0 8px 24px var(--shadow-accent);
	transform: translateY(-4px);
}

.research-icon {
	font-size: 48px;
	color: var(--color-accent);
	margin-bottom: 20px;
}

.research-area-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 15px;
	z-index: 2;
}

.research-area-desc {
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.7;
	z-index: 2;
}

/* 연구 성과 섹션 */
.achievement-item {
	background: var(--color-bg-light);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.achievement-item:hover {
	background: var(--color-white);
	box-shadow: 0 4px 16px var(--shadow-card);
	transform: translateX(8px);
}

.achievement-year {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 10px;
}

.achievement-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 10px;
}

.achievement-desc {
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.7;
}

/* 통계 카드 */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-card {
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	color: var(--color-white);
	box-shadow: 0 4px 16px var(--shadow-accent-strong);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 24px var(--shadow-accent-hover);
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	font-weight: 500;
	opacity: 0.95;
}

/* AFDEX 시뮬레이션 프로세스 */
.simulation-process {
	margin-top: 40px;
}

.simulation-intro p {
	font-size: 20px;
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: 50px;
}

.process-flow {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 60px;
	position: relative;
	flex-wrap: wrap;
}

.process-step {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	position: relative;
	flex: 1;
	min-width: 240px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 520px;
}

.process-step:not(:last-child)::after {
	content: none;
}
.process-step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 24px;
	color: var(--color-accent);
}
.process-step-arrow .bi {
	font-size: 1em;
	font-weight: 700;
}

.process-step:hover {
	border-color: var(--color-accent);
	box-shadow: 0 8px 24px var(--shadow-accent);
	transform: translateY(-4px);
}

.process-step-number {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	line-height: 50px;
	margin-bottom: 20px;
}

.process-step-title {
	font-size: 26px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 15px;
}

.process-step-desc {
	font-size: 18px;
	color: var(--color-text-dark);
	line-height: 1.5;
	margin-bottom: 20px;
}

.process-step-list {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.process-step-list li {
	font-size: 17px;
	color: var(--color-text-light);
	line-height: 1;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
}

.process-step-list li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: bold;
	font-size: 18px;
	line-height: 1.4;
}

.process-step-list li:last-child {
	margin-bottom: 0;
}

.process-images {
	margin-top: 20px;
}

.process-images img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	margin: 20px 0;
}

.process-image-item {
	background: var(--color-bg-light);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
}

.process-image-item img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.process-image-label {
	font-size: 13px;
	color: var(--color-text-light);
	margin-top: 10px;
	font-weight: 500;
}

.process-flow-container {
	padding: 20px 30px;
}

.process-flow-label {
	font-size: 14px;
	color: var(--color-text-light);
	margin: 15px 0 10px;
	font-weight: 600;
	text-align: center;
}

.process-flow-images {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-direction: row;
}

.process-flow-images img {
	max-width: 100%;
	height: 100px;
	border-radius: 8px;
	border: 1px solid var(--color-border);
}

.process-flow-image {
	width: 150px;
	height: 120px;
	background: var(--color-white);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	box-shadow: 0 2px 4px var(--shadow-subtle);
}

.process-flow-image img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 4px;
}

.process-flow-arrow {
	color: var(--color-accent);
	font-size: 24px;
	font-weight: 700;
}

.final-goal {
	background: linear-gradient(120deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-mid) 25%, var(--color-accent-gradient-mid2) 50%, var(--color-accent) 75%, var(--color-accent-gradient-mid) 100%);
	background-size: 200% 200%;
	border-radius: 12px;
	padding: 50px;
	text-align: center;
	color: var(--color-white);
	margin-top: 40px;
	box-shadow: var(--shadow-final-goal);
	animation: final-goal-glow 3s ease-in-out infinite, final-goal-gradient-wave 5s ease-in-out infinite;
}
@keyframes final-goal-glow {
	0%, 100% { box-shadow: var(--shadow-final-goal); }
	50% { box-shadow: var(--shadow-final-goal-hover); }
}
@keyframes final-goal-gradient-wave {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.final-goal-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.final-goal-desc {
	font-size: 18px;
	opacity: 0.95;
	line-height: 1.8;
}

@media screen and (max-width: 1600px) {
	.hero-content-inner {
		width: 100%;
	}
}

/* ========== 1439px 이하 (큰 노트북) ========== */
@media screen and (max-width: 1439px) {
	.content-wrapper {
		padding: 0 60px;
	}
	.main-content {
		margin-top: 80px;
	}
	.page-title {
		font-size: 40px;
	}
	.section-title {
		font-size: 30px;
		margin-bottom: 28px;
	}
	.hero-content,
	.hero-content.past-hero {
		padding-left: 60px;
	}
	.hero-title {
		font-size: 64px;
	}
	.breadcrumb {
		font-size: 22px;
	}
	.vision-title {
		font-size: 38px;
	}
	.vision-content p {
		font-size: 19px;
	}
	.stats-grid {
		gap: 24px;
	}
	.stat-number {
		font-size: 44px;
	}

	.process-step {
		min-height: 600px;
	}
}

/* ========== 1279px 이하 (노트북) ========== */
@media screen and (max-width: 1279px) {
	#container {
		padding-top: 88px;
	}
	.content-wrapper {
		padding: 0 40px;
	}
	.main-content {
		margin-top: 72px;
	}
	.page-header {
		margin-bottom: 48px;
		padding-bottom: 24px;
	}
	.page-title {
		font-size: 36px;
		margin-bottom: 16px;
	}
	.page-subtitle {
		font-size: 17px;
	}
	.section-title {
		font-size: 28px;
		margin-bottom: 24px;
	}
	.content-section {
		margin-bottom: 64px;
	}
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 32px;
	}
	.stat-card {
		padding: 32px 28px;
	}
	.stat-number {
		font-size: 40px;
	}
	.stat-label {
		font-size: 15px;
	}
	.hero-content,
	.hero-content.past-hero {
		padding-left: 40px;
	}
	.hero-title {
		font-size: 56px;
		margin-bottom: 32px;
	}
	.breadcrumb {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.hero-section {
		min-height: 560px;
	}
	.vision-section {
		margin-bottom: 72px;
	}
	.vision-title {
		font-size: 34px;
		margin-bottom: 24px;
	}
	.vision-content p {
		font-size: 18px;
	}
	.card {
		padding: 32px 28px;
	}
	.product-card .product-info,
	.research-area-card {
		padding: 28px 24px;
	}
	.research-area-title {
		font-size: 22px;
	}
	.final-goal {
		padding: 44px 36px;
	}
	.final-goal-title {
		font-size: 30px;
	}
	.final-goal-desc {
		font-size: 17px;
	}
}

/* ========== 1023px 이하 (태블릿) ========== */
@media screen and (max-width: 1023px) {
	#container {
		padding-top: 80px;
	}
	.content-wrapper {
		padding: 0 32px;
	}
	.main-content {
		margin-top: 56px;
	}
	.page-header {
		margin-bottom: 40px;
		padding-bottom: 20px;
	}
	.page-title {
		font-size: 32px;
		margin-bottom: 12px;
	}
	.page-subtitle {
		font-size: 16px;
	}
	.section-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.content-section {
		margin-bottom: 48px;
	}
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.card {
		padding: 28px 24px;
	}
	.card-title {
		font-size: 22px;
	}
	.hero-content,
	.hero-content.past-hero {
		padding-left: 32px;
	}
	.hero-title {
		font-size: 42px;
		margin-bottom: 28px;
	}
	.breadcrumb {
		font-size: 18px;
	}
	.hero-section {
		height: 70vh;
		min-height: 400px;
	}
	.vision-section {
		margin-bottom: 56px;
	}
	.vision-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.vision-content p {
		font-size: 17px;
	}
	.values-header {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 28px;
	}
	.values-title {
		font-size: 28px;
	}
	.values-intro {
		font-size: 16px;
	}
	.values-list {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.value-item {
		padding: 28px 24px;
	}
	.value-name {
		font-size: 24px;
	}
	.map-container {
		height: 260px;
	}
	.product-filter {
		margin-bottom: 32px;
		gap: 12px;
	}
	.filter-btn {
		padding: 11px 20px;
		font-size: 15px;
	}
	.product-category-desc {
		font-size: 18px;
		margin-bottom: 32px;
	}
	.product-image {
		height: 220px;
	}
	.product-name {
		font-size: 22px;
	}
	.research-area-card {
		padding: 32px 24px;
	}
	.research-icon {
		font-size: 42px;
		margin-bottom: 16px;
	}
	.research-area-title {
		font-size: 22px;
		margin-bottom: 12px;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
		margin-top: 28px;
	}
	.stat-card {
		padding: 28px 24px;
	}
	.stat-number {
		font-size: 38px;
	}
	.process-flow {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 48px;
	}
	.process-step {
		width: 100%;
		padding: 28px 24px;
		flex: 1 1 100%;
		max-width: 100%;
		min-height: auto;
	}
	.process-step-arrow {
		width: 100%;
		justify-content: center;
		transform: rotate(90deg);
	}
	.process-step-number {
		width: 48px;
		height: 48px;
		font-size: 22px;
		line-height: 48px;
		margin-bottom: 16px;
	}
	.process-step-title {
		font-size: 22px;
		margin-bottom: 12px;
	}
	.process-step-desc {
		font-size: 15px;
	}
	.final-goal {
		padding: 36px 28px;
	}
	.final-goal-title {
		font-size: 28px;
		margin-bottom: 12px;
	}
	.final-goal-desc {
		font-size: 16px;
	}
}

/* ========== 767px 이하 (모바일) ========== */
@media screen and (max-width: 767px) {
	#container {
		padding-top: 72px;
	}
	.content-wrapper {
		padding: 0 20px;
	}
	.main-content {
		margin-top: 48px;
	}
	.page-header {
		margin-bottom: 32px;
		padding-bottom: 16px;
	}
	.page-title {
		font-size: 28px;
		margin-bottom: 10px;
	}
	.section-title {
		font-size: 22px;
		margin-bottom: 18px;
	}
	.content-section {
		margin-bottom: 40px;
	}
	.card {
		padding: 24px 20px;
	}
	.card-title {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.info-table th {
		width: 100px;
		font-size: 14px;
		padding: 14px 0;
	}
	.info-table td {
		font-size: 14px;
		padding: 14px 0 14px 16px;
	}
	.highlight-text {
		font-size: 17px;
		margin-bottom: 24px;
	}
	.info-card-value {
		font-size: 22px;
	}
	.hero-content {
		top: 13%;
	}
	.hero-content,
	.hero-content.past-hero {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hero-title {
		font-size: 36px;
		margin-bottom: 24px;
	}
	.breadcrumb {
		font-size: 16px;
		margin-bottom: 12px;
	}
	.hero-section {
		min-height: 300px;
	}
	.vision-section {
		margin-bottom: 40px;
	}
	.vision-title {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.vision-content p {
		font-size: 16px;
	}
	.values-title {
		font-size: 24px;
	}
	.values-list {
		gap: 16px;
	}
	.value-item {
		padding: 24px 20px;
	}
	.value-number {
		font-size: 28px;
	}
	.value-name {
		font-size: 22px;
	}
	.map-container {
		height: 220px;
	}
	.product-filter {
		margin-bottom: 24px;
		gap: 10px;
	}
	.filter-btn {
		padding: 10px 18px;
		font-size: 14px;
	}
	.product-category-desc {
		font-size: 16px;
		margin-bottom: 24px;
	}
	.product-image {
		height: 200px;
	}
	.product-name {
		font-size: 20px;
	}
	.product-info {
		padding: 24px 20px;
	}
	.research-area-card {
		padding: 24px 20px;
	}
	.research-icon {
		font-size: 38px;
		margin-bottom: 12px;
	}
	.research-area-title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.research-area-desc {
		font-size: 15px;
	}
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 24px;
	}
	.stat-card {
		padding: 24px 20px;
	}
	.stat-number {
		font-size: 36px;
		margin-bottom: 8px;
	}
	.stat-label {
		font-size: 14px;
	}
	.process-flow {
		gap: 20px;
		margin-bottom: 40px;
	}
	.process-step {
		padding: 22px 20px;
	}
	.process-step-number {
		width: 44px;
		height: 44px;
		font-size: 20px;
		line-height: 44px;
		margin-bottom: 12px;
	}
	.process-step-title {
		font-size: 20px;
	}
	.process-step-desc {
		font-size: 14px;
	}
	.process-flow-images {
		flex-direction: column;
		gap: 12px;
	}
	.process-flow-images img {
		width: 100%;
	}
	.final-goal {
		padding: 28px 20px;
	}
	.final-goal-title {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.final-goal-desc {
		font-size: 15px;
	}
}

/* ========== 479px 이하 (소형 모바일) ========== */
@media screen and (max-width: 479px) {
	.content-wrapper {
		padding: 0 16px;
	}
	.main-content {
		margin-top: 40px;
	}
	.page-title {
		font-size: 24px;
	}
	.section-title {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.hero-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.breadcrumb {
		font-size: 14px;
	}
	.vision-title {
		font-size: 22px;
	}
	.vision-content p {
		font-size: 15px;
	}
	.card,
	.product-info,
	.research-area-card {
		padding: 20px 16px;
	}
	.stat-card {
		padding: 20px 16px;
	}
	.stat-number {
		font-size: 32px;
	}
	.process-step {
		padding: 20px 16px;
	}
	.process-step-number {
		width: 40px;
		height: 40px;
		font-size: 18px;
		line-height: 40px;
	}
	.process-step-title {
		font-size: 18px;
	}
	.final-goal {
		padding: 24px 16px;
	}
	.final-goal-title {
		font-size: 22px;
	}
	.final-goal-desc {
		font-size: 14px;
	}
}
