/* =============================================
   SCROLL ENTRANCE ANIMATIONS
   ============================================= */
[data-anim] {
	opacity: 0;
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
[data-anim='fade-up'] {
	transform: translateY(48px);
}
[data-anim='fade-left'] {
	transform: translateX(-48px);
}
[data-anim='fade-right'] {
	transform: translateX(48px);
}
[data-anim].anim-visible {
	opacity: 1;
	transform: none;
}

/* ── Paperlogy font ──────────────────────────────────────────────── */
@font-face {
	font-family: 'Paperlogy';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2309@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	color: #111;
	background: #fff;
	line-height: 1.6;
}

main {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
}
address {
	font-style: normal;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 80px;
}

/* =============================================
   HEADER
   ============================================= */
site-header,
site-footer {
	display: block;
}

.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: transparent;
	box-shadow: none;
	width: 100%;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease;
}
.header.scrolled {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 40px;
	height: 72px;
	display: flex;
	/* width: 100%; */
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 33px;
	width: auto;
}

/* GNB */
.gnb-list {
	display: flex;
	align-items: center;
	gap: 52px;
}

.gnb-item {
	position: relative;
}

.gnb-link {
	color: #121212;
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.72px;
	display: block;
	padding: 24px 0;
	position: relative;
	transition: color 0.2s;
}
.gnb-item:hover .gnb-link,
.gnb-item.is-open .gnb-link,
.gnb-item.active .gnb-link {
	color: #d60057;
}

/* Per-item dropdown */
.gnb-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	min-width: 210px;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease;
	pointer-events: none;
	z-index: 999;
	padding: 10px 0 12px;
	overflow: hidden;
}
.gnb-item.is-open > .gnb-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
/* 마지막 아이템(News) 드롭다운은 오른쪽 정렬 — 뷰포트 밖으로 넘치지 않도록 */
.gnb-item:last-child > .gnb-dropdown {
	left: auto;
	right: 0;
	transform: translateY(-6px);
}
.gnb-item:last-child.is-open > .gnb-dropdown {
	transform: translateY(0);
}

.gnb-drop-heading {
	display: block;
	color: #a3a3a3;
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 20px 4px;
}

.gnb-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.gnb-dropdown ul li a {
	display: block;
	color: #383838;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	padding: 9px 20px;
	white-space: nowrap;
	transition:
		color 0.15s,
		background 0.15s;
}
.gnb-dropdown ul li a:hover {
	color: #d60057;
	background: #fdf5f8;
}

.gnb-dropdown ul + .gnb-drop-heading {
	border-top: 1px solid #f3f3f3;
	margin-top: 4px;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	padding: 4px;
}
.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: #111;
	border-radius: 1px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
	display: none;
	background: #fff;
	border-top: 1px solid #eee;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
}
.mobile-nav.open {
	display: block;
}
.m-item {
	border-bottom: 1px solid #f0f0f0;
}
.m-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.m-item-link {
	flex: 1;
	display: block;
	padding: 16px 24px;
	color: #121212;
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.64px;
	transition: color 0.2s;
}
.m-item-link:hover {
	color: #d60057;
}
.m-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 16px 20px;
	color: #888;
	font-size: 12px;
	line-height: 1;
	transition: transform 0.3s ease;
}
.m-toggle.open {
	transform: rotate(180deg);
}
.m-sub-panel {
	display: none;
	background: #f8f8f8;
	padding: 8px 0 12px;
}
.m-sub-panel.open {
	display: block;
}
.m-sub-cat {
	color: #a3a3a3;
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 10px 24px 4px;
}
.m-sub-panel ul {
	list-style: none;
}
.m-sub-panel ul li a {
	display: block;
	padding: 9px 24px 9px 32px;
	color: #383838;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.6px;
	transition: color 0.2s;
}
.m-sub-panel ul li a:hover {
	color: #d60057;
}

/* =============================================
   HERO
   ============================================= */

@keyframes hero-img-in {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes hero-content-in {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-section {
	background: #fff;
	padding: 50px 40px 150px;
	height: 100vh;
	box-sizing: border-box;
}

.hero-card {
	max-width: 1680px;
	height: 100%;
	border-radius: 40px;
	/* background: #4b4b4b; */
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	animation: hero-img-in 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes hero-img-in {
	from {
		transform: scale(1.08);
	}
	to {
		transform: scale(1);
	}
}
.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hero bg image crossfade */
.hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	opacity: 0;
	transition: opacity 0.9s ease;
}
.hero-bg-img.active {
	opacity: 1;
}

/* Hero pagination */
.hero-pagination {
	display: flex;
	align-items: baseline;
	margin-top: 16px;
}
.hero-pg-cur {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.72px;
}
.hero-pg-sep,
.hero-pg-tot {
	color: #d7d7d7;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.56px;
}

/* left-to-right gradient so text stays legible */
.hero-card::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background: linear-gradient(to right, rgba(75, 75, 75, 1) 0%, rgba(75, 75, 75, 0.9) 28%, rgba(75, 75, 75, 0.3) 58%, rgba(75, 75, 75, 0) 78%); */
	z-index: 1;
}

.hero-content {
	position: absolute;
	bottom: 72px;
	left: 72px;
	z-index: 2;
	max-width: 100%;
	animation: hero-content-in 0.9s ease both 0.7s;
}

.hero-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 80px;
	color: #fff;
	/* line-height: 24px; */
	letter-spacing: -3.2px;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
	white-space: nowrap;
}
.hero-mark {
	height: 52px;
	width: auto;
	flex-shrink: 0;
}
.hero-desc {
	color: #b5b5b5;
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: -0.8px;
	transition: opacity 0.5s ease;
}
.hero-word-wrap {
	display: inline-block;
	overflow-x: visible;
	overflow-y: clip;
	vertical-align: bottom;
	padding: 0.15em 0;
	margin: -0.15em 0;
}
.hero-word {
	display: inline-block;
	transition:
		transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.5s ease;
}
.hero-word.exit {
	transform: translateY(-100%);
	opacity: 0;
}
.hero-word.enter-start {
	transform: translateY(100%);
	opacity: 0;
	transition: none !important;
}
.hero-desc.fading {
	opacity: 0;
}

.hero-dots {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}
.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	transition:
		background 0.3s,
		transform 0.3s;
}
.hero-dot.active {
	background: #d4005a;
	transform: scale(1.25);
}

/* =============================================
   PRODUCT HIGHLIGHT
   ============================================= */
.ph-section {
	background: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 60px 0;
	gap: 60px;
}

.ph-card {
	flex-shrink: 0;
	width: 1320px;
	max-width: 88vw;
	height: 420px;
	border-radius: 0 40px 40px 0;
	background: linear-gradient(84deg, #9d0442 20.09%, #000624 54.86%);
	padding: 70px 160px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}

.ph-wm {
	position: absolute;
	right: 60px;
	bottom: 28px;
	height: 110px;
	width: auto;
	opacity: 0.1;
	filter: brightness(0) invert(1);
	pointer-events: none;
	user-select: none;
}

.ph-text {
	position: relative;
	z-index: 2;
}

.ph-title {
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -2.4px;
	color: #fff;
	margin-bottom: 40px;
}

.ph-model {
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -1.12px;
	color: #fff;
	margin-bottom: 12px;
}

.ph-sub {
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -1.12px;
	color: #fff;
	margin-bottom: 36px;
}

.ph-desc {
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	/* line-height: 22px; */
	letter-spacing: -1.72px;
	color: #f5c7da;
	word-break: keep-all;
}

.ph-img {
	position: absolute;
	right: -10%;
	top: 50%;
	transform: translateY(-50%);
	height: 700px;
	width: auto;
	object-fit: contain;
	pointer-events: none;
}

/* =============================================
   PRODUCT HIGHLIGHT v2
   ============================================= */
.ph2-section {
	background: #fff;
	padding: 80px 0 160px;
	display: flex;
	flex-direction: column;
	gap: 270px;
	overflow: hidden;
}

/* Row: 카드 + 이미지 나란히 */
.ph2-row {
	display: flex;
	align-items: center;
	gap: 140px;
}
.ph2-row--rev {
	flex-direction: row-reverse;
}

/* 그라데이션 텍스트 카드: 933.861 × 420 */
.ph2-card {
	flex-shrink: 0;
	width: 50%;
	height: 420px;
	background: linear-gradient(82deg, #9d0442 1.01%, #000624 44.08%);
	border-radius: 0 40px 40px 0;
	position: relative;
}

.ph2-row--rev .ph2-card {
	border-radius: 40px 0 0 40px;
	background: linear-gradient(273deg, #9d0442 1.01%, #000624 44.08%);
}

.ph2-text {
	height: 100%;
	padding: 40px 100px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ph2-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 35px;
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	letter-spacing: -1.28px;
	margin-bottom: 12px;
}
.ph2-model {
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
	word-break: keep-all;
}
.ph2-eng {
	color: #fff;
	font-family: 'Wanted Sans', 'Pretendard', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.56px;
	margin-bottom: 20px;
}
.ph2-desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 17px;
	line-height: 1.8;
	word-break: keep-all;
}

/* 이미지 슬라이더 (카드 외부) */
.ph2-imgs {
	flex-shrink: 0;
	position: relative;
}
.ph2-imgs--sm {
	/* 원격방수총: 747 × 524 */
	width: 747px;
	height: 524px;
}
.ph2-imgs--lg {
	/* 사족보행로봇: 767 × 846 */
	width: 767px;
	height: 846px;
}

.ph2-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.03);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ph2-slide.active {
	opacity: 1;
	transform: scale(1);
}
.ph2-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
}

/* 페이지네이션: 747px × 8px, 카드 내부 하단 */
.ph2-pagination {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	width: 747px;
	max-width: calc(100% - 48px);
	display: none;
}
.ph2-dot {
	flex: 1;
	height: 8px;
	background: #d9d9d9;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s;
}
.ph2-dot.active {
	background: #d60057;
}

/* ── Responsive ── */
@media (max-width: 1800px) {
	.ph2-row {
		gap: 80px;
	}
	.ph2-card {
		width: 720px;
		height: 380px;
	}
	.ph2-imgs--sm {
		width: 580px;
		height: 407px;
	}
	.ph2-imgs--lg {
		width: 600px;
		height: 661px;
	}
}
@media (max-width: 1400px) {
	.ph2-section {
		gap: 160px;
	}
	.ph2-row {
		gap: 60px;
	}
	.ph2-card {
		width: 560px;
		height: 340px;
	}
	.ph2-title {
		font-size: 26px;
	}
	.ph2-imgs--sm {
		width: 440px;
		height: 309px;
	}
	.ph2-imgs--lg {
		width: 460px;
		height: 508px;
	}
}
@media (max-width: 1100px) {
	.ph2-section {
		gap: 80px;
		padding: 60px 20px 100px;
	}
	.ph2-row,
	.ph2-row--rev {
		flex-direction: column-reverse;
		align-items: center;
		gap: 32px;
	}
	.ph2-card {
		width: min(934px, calc(100vw - 40px));
		height: auto;
		border-radius: 20px;
	}
	.ph2-text {
		height: auto;
		padding: 36px 36px 56px;
	}
	.ph2-imgs--sm {
		width: min(747px, calc(100vw - 40px));
		height: auto;
		aspect-ratio: 747 / 524;
	}
	.ph2-imgs--lg {
		width: min(767px, calc(100vw - 40px));
		height: auto;
		aspect-ratio: 767 / 846;
	}
}
@media (max-width: 768px) {
	.ph2-section {
		gap: 60px;
		padding: 40px 0 80px;
	}
	.ph2-title {
		font-size: 26px;
	}
	.ph2-model {
		font-size: 18px;
		font-style: normal;
		font-weight: 500;
	}

	.ph2-desc {
		font-size: 14px;
	}
	.ph2-text {
		padding: 28px 24px 50px;
	}
	.ph2-pagination {
		position: static;
		transform: none;
		width: 100%;
		max-width: 100%;
		margin-top: 16px;
	}

	.ph2-card {
		width: 100%;
		border-radius: 0 15px 15px 0;
	}

	.ph2-row {
		padding: 0 16px 0 0;
	}

	.ph2-row--rev {
		padding: 0 0 0 16px;
	}

	.ph2-row--rev .ph2-card {
		border-radius: 15px 0 0 15px;
	}
}

/* =============================================
   PRODUCT CAROUSEL
   ============================================= */
.product-section {
	margin-top: 120px;
	padding-bottom: 150px;
	/* overflow: hidden; */
	position: relative;
}

.product-section::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../img/main/back_bg.png) no-repeat center;
	width: 403px;
	height: 400px;
	background-size: cover;
	left: 0;
	top: -32%;
	z-index: 999;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 60px;
	letter-spacing: -2.4px;
	text-align: center;
	color: #121212;
	margin-bottom: 80px;
}

.product-inner {
	position: relative;
	/* 패널(443) + 우측여백(80) + 갭(37) = 560px → 활성 이미지+패널 합산 중앙 = 화면 정중앙 */
	/* padding-right: 560px; */
}

/* 이미지 슬라이더 */
.product-slider-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 560px;
	transform: translateZ(0);
	cursor: grab;
	user-select: none;
}
.product-slider-wrap:active {
	cursor: grabbing;
}
.product-track {
	position: relative;
	width: 100%;
	height: 100%;
}
.product-slide {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 0;
	box-sizing: border-box;
	justify-content: center;
}
.product-slide.slide-prev {
	justify-content: flex-end;
	opacity: 0.35;
}
.product-slide.slide-next {
	justify-content: flex-start;
	opacity: 0.35;
}
.product-slide.active {
	overflow: visible;
	opacity: 1;
	padding-left: 100px;
	padding-right: 600px;
}
.product-slide img {
	height: 500px;
	width: auto;
	max-width: none;
	display: block;
	flex-shrink: 0;
	transform: scale(0.5);
	transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-slide.slide-prev img {
	transform-origin: right center;
}
.product-slide.slide-next img {
	transform-origin: left center;
}
.product-slide.active img {
	transform: scale(1);
	transform-origin: center;
}

/* 설명 패널 — 우측 560px 공간 안에 절대 고정 */
.product-panels {
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translateY(-50%);
	width: 443px;
	min-height: 420px;
	z-index: 10;
}
.product-panel {
	border-radius: 30px;
	background: #f7f7f7;
	padding: 44px 40px;
	display: flex;
	flex-direction: column;
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.product-panel.active {
	opacity: 1;
	pointer-events: auto;
}
.product-panel h3 {
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #121212;
	letter-spacing: -1.12px;
	text-align: left;
	margin-bottom: 16px;
	word-break: keep-all;
}
.car-sub {
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #3b3b3b;
	letter-spacing: -0.8px;
	line-height: 1.55;
	margin-bottom: 20px;
	word-break: keep-all;
}
.product-panel ul {
	margin-bottom: 28px;
	flex: 1;
}
.product-panel ul li {
	word-break: keep-all;
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #464646;
	letter-spacing: -0.64px;
	padding: 6px 0 6px 16px;
	position: relative;
	line-height: 1.5;
}
.product-panel ul li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: #d60057;
	font-weight: 700;
}

.more-view {
	font-family:
		'Pretendard',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #d60057;
	letter-spacing: -0.72px;
	text-align: left;
	display: block;
	transition: opacity 0.2s;
}
.more-view:hover {
	opacity: 0.7;
}

/* Bottom nav */
.car-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 48px;
}
.car-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	opacity: 0.5;
	transition: opacity 0.2s;
}
.car-arrow:hover {
	opacity: 1;
}
.car-arrow img {
	width: 12px;
	height: 24px;
}
.car-dots {
	display: flex;
	align-items: center;
	gap: 22px;
}
.c-dot {
	width: 8px;
	height: 8px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: #d9d9d9;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s;
}
.c-dot.active {
	background: #d60057;
}

/* =============================================
   VISION
   ============================================= */
.vision-section {
	margin-top: 150px;
	overflow: visible;
	padding: 0 0 150px;
}

.vision-bg-wrap {
	position: relative;
	width: 100%;
	height: 589px;
	overflow: hidden;
}

@keyframes vision-scale {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.06);
	}
}

.vision-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: vision-scale 6s ease-in-out infinite alternate;
}

.vision-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	padding: 0;
	max-width: 1570px;
	margin: 0 auto;
}

.vision-headline {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -1.28px;
	margin-bottom: 28px;
}

.vision-sub {
	color: #fff;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: -1.12px;
	text-align: left;
	padding-bottom: 130px;
}

.vision-cards {
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-top: -160px;
	position: relative;
	z-index: 2;
	padding: 0 40px 80px;
}

.vision-card {
	position: relative;
	flex: 0 0 auto;
	width: 735px;
	padding: 50px 48px 50px 48px;
	border-radius: 20px;
	height: 320px;
	background: #fff;
	box-shadow: 0 4px 11.4px 0 rgba(0, 0, 0, 0.09);
	transition: background 0.3s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vision-card:hover {
	background: #d60057;
}

.vision-icon {
	position: absolute;
	top: 26px;
	right: 40px;
	width: 138px;
	height: 138px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: background 0.3s ease;
}

.vision-icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.vision-card-title {
	color: #121212;
	font-family: 'Poppins', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -1.92px;
	margin-bottom: 30px;
	transition: color 0.3s ease;
}

.vision-card:hover .vision-card-title {
	color: #fff;
}

.vision-card-desc {
	color: #121212;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	transition: color 0.3s ease;
}

.vision-card:hover .vision-card-desc {
	color: #fff;
}

.vision-bg-wrap img {
	display: block;
}

/* =============================================
   COMPANY CARDS
   ============================================= */
.cards-section {
	height: 100vh;
	overflow: visible;
	padding: 60px 0 0;
}
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	max-width: 1680px;
	margin: 0 auto;
	gap: 30px;
	height: 100%;
}

.card {
	position: relative;
	overflow: hidden;
	width: 508px;
	height: 721px;
	aspect-ratio: 31 / 44;
	border-radius: 30px;
	display: block;
	opacity: 0;
	transform: translateY(0);
	transition:
		opacity 0.7s ease,
		transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.35s ease;
}
.card:hover {
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}
.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: luminosity;
	transition: transform 0.55s ease;
}
.card:hover img {
	transform: scale(1.06);
}

.card-body {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 0 36px 60px;
	gap: 30px;
	color: #fff;
	transition: background 0.3s;
}
.card:hover .card-body {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.05) 100%);
}
.card-body h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -1.92px;
	color: #fff;
	text-align: center;
	margin: 0;
}
.card-body p {
	font-family: 'Pretendard', sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: -0.8px;
	color: #d3d3d3;
	text-align: center;
	margin: 0;
	height: 64px;
	word-break: keep-all;
}
.card-more {
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: -0.72px;
	color: var(--MainColor, #d60057);
	text-align: center;
	display: block;
}

/* Mobile hero slider — hidden on desktop */
.hero-mo {
	display: none;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	height: 540px;
}
.hero-mo-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.8s ease;
}
.hero-mo-bg-img.active {
	opacity: 1;
}
.hero-mo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
	z-index: 1;
}
.hero-mo-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 20px 44px;
}
.hero-mo-slide {
	display: none;
}
.hero-mo-slide.active {
	display: block;
}
.hero-mo-title {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 55px;
	letter-spacing: -1.68px;
	margin: 0 0 14px;
}
.hero-mo-last {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.hero-mo-mark {
	height: 26px;
	flex-shrink: 0;
}
.hero-mo-desc {
	color: #e9e9e9;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.64px;
	margin: 0 0 10px;
}
.hero-mo-pagination {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
}

/* Cards scroll-in stagger */
.cards-grid.animated .card:nth-child(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0ms;
}
.cards-grid.animated .card:nth-child(2) {
	opacity: 1;
	transform: translateY(-60px);
	transition-delay: 150ms;
}
.cards-grid.animated .card:nth-child(3) {
	opacity: 1;
	transform: translateY(60px);
	transition-delay: 300ms;
}

/* Hover lift — offsets per card's stagger position */
.cards-grid.animated .card:nth-child(1):hover {
	transform: translateY(-10px);
}
.cards-grid.animated .card:nth-child(2):hover {
	transform: translateY(-70px);
}
.cards-grid.animated .card:nth-child(3):hover {
	transform: translateY(50px);
}

/* =============================================
   CONTACT + FOOTER
   ============================================= */
.contact-footer {
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(124, 45, 77, 0.15) 100%);
	padding-top: 200px;
	position: relative;
	overflow: hidden;
}
.contact-footer::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../img/main/back_bg.png) no-repeat center;
	width: 403px;
	height: 400px;
	background-size: cover;
	left: -10%;
	z-index: -1;
}

.contact-footer-inner {
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 80px;
	display: flex;
	align-items: flex-end;
	gap: 60px;
	justify-content: space-between;
}

/* ── Left: company info ── */
.footer-info {
	flex-shrink: 0;
	min-width: 0;
	/* margin-bottom: 30px; */
}

.footer-logo img {
	width: 317px;
	height: 43.802px;
	aspect-ratio: 317 / 43.8;
	object-fit: contain;
	display: block;
	margin-bottom: 20px;
}

.footer-company-name {
	color: #303030;
	font-family: 'Wanted Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.72px;
	margin-bottom: 16px;
}

.footer-addr {
	font-style: normal;
}
.addr-section-label {
	color: #303030;
	font-family: 'Wanted Sans', sans-serif;
	font-size: 13px;
	font-weight: 700 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.footer-addr p {
	color: #303030;
	font-family: 'Wanted Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: -0.3px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 2px;
	word-break: keep-all;
}
.addr-label {
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}
.addr-contact-row {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 6px;
	margin-top: 12px !important;
}
.addr-divider {
	color: #bbb;
	margin: 0 4px;
}

.footer-policy {
	display: inline-flex;
	align-items: center;
	gap: 40px;
	margin-top: 24px;
	/* justify-content: flex-end; */
}
.footer-policy a {
	color: #989898;
	font-family: 'Wanted Sans';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}
.footer-policy a:hover {
	text-decoration: underline;
}

/* ── Right: contact form ── */
.contact-form-wrap {
	max-width: 920px;
	width: 100%;
	flex-shrink: 0;
}

.contact-form .form-row {
	display: flex;
	gap: 14px;
	margin-bottom: 14px;
}

.form-field {
	flex: 1;
	display: flex;
	align-items: center;
	height: 70px;
	border-radius: 10px;
	border: 1px solid #b8b8b8;
	background: #fff;
	overflow: hidden;
	padding: 0 24px;
	gap: 16px;
}
.form-field.full {
	flex: none;
	width: 100%;
	box-sizing: border-box;
}
.form-field.textarea-field {
	height: 220px;
	align-items: flex-start;
	padding: 20px 24px;
}

.field-label {
	color: #3b3b3b;
	font-family: 'Pretendard ';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	white-space: nowrap;
	flex-shrink: 0;
	display: flex;
	gap: 5px;
	align-items: flex-start;
}
.req {
	color: var(--MainColor, #d60057);
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 24px;
	/* margin-bottom: 20px; */
	/* display: inline-block; */
}

.form-field input,
.form-field textarea {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	color: #303030;
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	width: 100%;
	height: 100%;
	resize: none;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #adadad;
	font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
}
.form-field input:focus,
.form-field textarea:focus {
	outline: none;
}

.form-privacy-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}
.privacy-check {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
.privacy-check input[type='checkbox'] {
	width: 16px;
	height: 16px;
	accent-color: var(--MainColor, #d60057);
	flex-shrink: 0;
	cursor: pointer;
}
.privacy-text {
	color: var(--MainColor, #d60057);
	font-family: 'Wanted Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.56px;
}
.privacy-more {
	color: #888;
	font-family: 'Wanted Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 36px;
	letter-spacing: -0.56px;
	text-decoration: none;
	white-space: nowrap;
}
.submit-btn {
	margin-left: auto;
	width: 159px;
	height: 61px;
	background: var(--MainColor, #d60057);
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}
.submit-btn:hover {
	background: #b2004b;
}

/* ── Copyright ── */
.footer-copy {
	margin-top: 100px;
	padding-bottom: 60px;
	text-align: center;
}
.footer-copy p {
	color: #7d5562;
	font-family: 'Wanted Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.56px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   ULTRA-WIDE (2560px+, 3840px+)
   ============================================= */
@media (min-width: 2560px) {
	.container {
		max-width: 1600px;
		padding: 0 120px;
	}
	.header-inner {
		/* max-width: 2400px; */
		/* padding: 0 120px; */
		height: 88px;
	}
	.logo img {
		height: 48px;
	}
	.gnb-link {
		font-size: 22px;
	}
	.hero-section {
		/* padding: 60px 60px 180px; */
	}
	.hero-card {
		max-width: 2400px;
		border-radius: 56px;
	}
	.hero-title {
		font-size: 110px;
		letter-spacing: -4px;
	}
	.hero-mark {
		height: 72px;
	}
	.hero-desc {
		font-size: 26px;
	}

	.ph2-section {
		max-width: 1680px;
		margin: 0 auto;
	}

	.ph2-card {
		border-radius: 40px;
	}

	.ph2-row--rev .ph2-card {
		border-radius: 40px;
	}

	.ph-card {
		width: 1800px;
		max-width: 80vw;
		height: 560px;
		padding: 100px 220px;
	}
	.ph-title {
		font-size: 80px;
	}
	.ph-model,
	.ph-sub {
		font-size: 36px;
	}
	.ph-desc {
		font-size: 24px;
	}
	.section-title {
		font-size: 80px;
	}
	.cards-grid {
		/* max-width: 2400px; */
		gap: 40px;
	}
	.card {
		/* height: 900px; */
	}
	.card-body h3 {
		/* font-size: 60px; */
	}
	.card-body p {
		/* font-size: 24px; */
	}
	.contact-footer-inner {
		max-width: 2400px;
		padding: 0 120px;
	}
}

@media (min-width: 3200px) {
	.container {
		max-width: 2000px;
	}
	.header-inner {
		/* max-width: 3200px; */
		/* padding: 0 160px; */
		/* height: 100px; */
	}
	.hero-card {
		max-width: 100%;
	}
	.hero-title {
		font-size: 140px;
	}
	.section-title {
		font-size: 100px;
	}
	.cards-grid {
		max-width: 1680px;
		gap: 30px;
		align-items: center;
	}
	.card {
		/* height: 1100px; */
		/* border-radius: 50px; */
		/* width: 100%; */
	}
	.card-body h3 {
		/* font-size: 80px; */
	}
	.card-body p {
		/* font-size: 30px; */
	}
	.contact-footer-inner {
		max-width: 3000px;
		padding: 0 160px;
	}
}

@media (max-width: 1400px) {
	/* 제품 슬라이더 */
	.product-section {
		padding-bottom: 10px;
	}
	.product-slider-wrap {
		height: 500px;
	}
	.product-slide img {
		height: 420px;
	}
	.product-slide.active {
		padding-left: 60px;
		padding-right: 480px;
	}
	.product-panels {
		left: auto;
		right: calc(10vw + 20px);
		width: 400px;
	}

	.vision-overlay {
		padding: 0 40px;
		justify-content: flex-start;
	}
	/* Vision */
	.vision-cards {
		gap: 60px;
		padding: 0 40px 60px;
	}
	.vision-card {
		max-width: 48%;
		width: 100%;
	}
	.vision-card-title {
		font-size: 40px;
	}

	/* 카드 섹션 */
	.cards-section {
		height: 100vh;
	}

	.card-body {
		gap: 20px;
	}

	.card-body h3 {
		font-size: 32px;
	}

	.card-body p,
	.card-more {
		font-size: 16px;
		line-height: 160%;
	}

	.cards-grid {
		max-width: 1200px;
		align-items: center;
	}
	.card {
		width: 100%;
		height: 600px;
	}

	/* Cards scroll-in stagger */
	.cards-grid.animated .card:nth-child(1) {
		opacity: 1;
		transform: translateY(0);
	}
	.cards-grid.animated .card:nth-child(2) {
		opacity: 1;
		transform: translateY(-60px);
	}
	.cards-grid.animated .card:nth-child(3) {
		opacity: 1;
		transform: translateY(60px);
	}

	.contact-footer {
		padding-top: 80px;
	}
	.contact-form-wrap {
		width: 100%;
		max-width: 52%;
	}

	.contact-footer-inner {
		max-width: 1680px;
		padding: 0 40px;
		width: 100%;
	}
}
@media (max-width: 1200px) {
	.header-inner {
		max-width: 100%;
	}
	.container {
		padding: 0 48px;
	}
	.header-inner {
		padding: 0 48px;
	}
	.ph-img {
		right: -14%;
	}

	.ph-inner {
		padding: 0 64px;
	}

	.cards-grid {
		padding: 0 40px;
	}

	.contact-footer {
		padding: 0 40px;
	}

	.footer-inner {
		padding: 52px 64px 44px;
	}
	.footer-copy-inner {
		padding: 20px 64px;
	}
	.contact-footer-inner {
		align-items: flex-start;
		flex-direction: column-reverse;
		max-width: 100%;
		padding: 0;
	}

	.form-field {
		padding: 10px;
	}

	.footer-partner {
		margin-top: 30px;
	}
	.form-field input,
	.form-field textarea {
		font-size: 16px;
		word-break: keep-all;
	}
	.form-privacy-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.contact-form-wrap {
		max-width: 100%;
	}
}
/* 제품 슬라이더 — 1024px 이하: 1개 표시 + 설명 하단 */
@media (max-width: 1024px) {
	.hero-bg {
		width: 100%;
	}
	.hero-card::before {
		display: none;
	}
	.ph-section {
		width: 100%;
		gap: 10px;
	}
	.ph-img {
		right: -20%;
	}

	.product-inner {
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}
	.product-slider-wrap {
		height: 360px;
		width: 100%;
	}
	.product-slide.active {
		padding-left: 24px;
		padding-right: 24px;
		overflow: hidden;
	}
	.product-slide img {
		height: 300px;
	}
	.product-panels {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		width: 100%;
		min-height: auto;
		margin-top: 28px;
		padding: 0 24px;
	}

	.product-panel {
		position: relative;
		inset: auto;
		display: none;
		opacity: 1;
		pointer-events: auto;
	}
	.product-panel.active {
		display: flex;
	}
	.cards-section {
		height: auto;
		padding: 100px 0;
	}

	.cards-grid {
		max-width: 100%;
		gap: 20px;
		padding: 0 20px;
	}
	.card-body {
		padding: 30px 20px;
	}

	.card-body p,
	.card-more {
		font-size: 14px;
		height: auto;
	}
	.gnb {
		display: none;
	}
	.hamburger {
		display: flex;
	}
}

@media (max-width: 900px) {
	.hero-section {
		padding: 16px 20px 0;
		height: auto;
		max-width: 100%;
	}
	.hero-card {
		height: 520px;
		border-radius: 24px;
	}
	.hero-title {
		font-size: 52px;
		letter-spacing: -2px;
		margin-bottom: 32px;
	}
	.hero-mark {
		height: 36px;
	}
	.hero-content {
		bottom: 48px;
		left: 40px;
	}
	.hero-desc {
		font-size: 16px;
		line-height: 160%;
	}
	.car-slide {
		flex-direction: column;
		gap: 32px;
	}
	.car-img {
		min-height: unset;
	}
	.car-img img {
		max-height: 260px;
	}
	.car-info {
		padding: 32px 28px;
	}
	.ph-inner {
		flex-direction: column;
		padding: 0 40px;
	}
	.ph-img-wrap {
		width: 100%;
	}
	.ph-img {
		width: 70%;
		margin: 0 auto;
	}
	.cards-section {
		height: auto;
	}

	/* Vision */
	.vision-section {
		margin-top: 100px;
	}
	.vision-bg-wrap {
		height: 480px;
	}
	.vision-sub {
		font-size: 20px;
		line-height: 34px;
	}
	.vision-cards {
		flex-direction: column;
		align-items: center;
		gap: 25px;
		margin-top: -80px;
		padding: 0 16px 60px;
	}
	.vision-card {
		width: 100%;
		max-width: 520px;
	}
	.vision-headline {
		margin: 50px 0 18px 0;
	}
	.vision-bg-wrap img {
		display: none;
	}
	.vision-section {
		margin-top: 60px;
		background: url('../img/main/vision.png') no-repeat center;
		background-size: cover;
		height: 700px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 24px;
	}
	.header-inner {
		padding: 0 24px;
	}
	.hero-section {
		padding: 12px 16px 0;
	}
	.hero-card {
		height: 440px;
		border-radius: 20px;
	}

	.hero-card::before {
		background: linear-gradient(to right, rgba(17, 17, 17, 2) 10%, rgba(17, 17, 17, 0.2) 1%, rgba(17, 17, 17, 0.1) 30%, rgba(17, 17, 17, 0) 50%);
	}

	.logo img {
		height: 23px;
	}

	.hero-title {
		font-size: 36px;
		letter-spacing: -1.5px;
		margin-bottom: 24px;
		white-space: normal;
	}
	.hero-mark {
		height: 28px;
	}
	.hero-content {
		bottom: 40px;
		left: 28px;
	}
	.hero-desc {
		font-size: 14px;
	}
	.product-section {
		margin-top: 60px;
		padding-bottom: 70px;
	}
	.car-dots {
		gap: 15px;
	}
	.c-dot {
		width: 5px;
		height: 5px;
	}
	.vision-overlay {
		padding: 0 16px;
	}

	/* Hero — hide desktop slider, show mobile slider */
	.hero-section {
		padding: 12px 10px 0;
	}
	.hero-card {
		display: none;
	}
	.hero-mo {
		display: block;
	}

	/* Cards — original mobile layout restored */
	.cards-grid {
		grid-template-columns: 1fr;
		max-width: 100%;
		padding: 16px;
		gap: 20px;
	}
	.card {
		height: 420px;
		width: 100%;
	}

	.cards-grid.animated .card {
		height: 224px;
	}
	.cards-grid.animated .card:nth-child(1) {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 0ms;
	}
	.cards-grid.animated .card:nth-child(2) {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 150ms;
	}
	.cards-grid.animated .card:nth-child(3) {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 300ms;
	}

	.contact-footer {
		padding-top: 50px;
		padding: 50px 20px 0;
	}

	.footer-inner {
		flex-direction: column;
		padding: 44px 24px 36px;
		gap: 32px;
	}
	.footer-right {
		display: none;
	}
	.footer-copy-inner {
		padding: 18px 24px;
	}
	.contact-form .form-row {
		flex-direction: column;
		gap: 10px;
	}
	.field-label {
		font-size: 14px;
	}

	.form-field {
		height: 50px;
	}

	.form-field.textarea-field {
		flex-direction: column;
	}

	.contact-form .form-row:nth-child(1) {
		flex-direction: row;
	}

	.contact-inner {
		padding: 0 24px;
	}
	.section-title {
		font-size: 42px;
		margin-bottom: 40px;
		line-height: 48px;
	}

	.product-panel h3 {
		font-size: 22px;
		text-align: center;
	}

	.more-view {
		font-size: 16px;
		text-align: center;
	}

	.car-sub {
		font-size: 15px;
		text-align: center;
	}

	.product-panel ul li {
		font-size: 14px;
		text-align: center;
	}

	.carousel-wrap {
		gap: 12px;
		padding: 0 12px;
	}
	.ph-section {
		padding: 40px 0;
	}
	.ph-card {
		height: auto;
		padding: 50px 32px;
		max-width: 96%;
		border-radius: 0 24px 24px 0;
	}
	.ph-title {
		font-size: 40px;
		margin-bottom: 28px;
	}
	.ph-model,
	.ph-sub {
		font-size: 18px;
	}
	.ph-desc {
		font-size: 14px;
		padding: 0 74px 0 0;
	}
	.ph-img {
		height: 340px;
		right: -52px;
	}
	.form-field input {
		text-overflow: ellipsis;
		font-size: 14px;
	}
	.form-field input::placeholder {
		text-overflow: ellipsis;
	}
	.cards-section {
		padding: 20px 0 100px;
	}
	.submit-btn {
		width: 154px;
		height: 52px;
		margin: 0 auto;
	}
	.form-field input::placeholder,
	.form-field textarea::placeholder {
		font-size: 14px;
	}

	/* Vision */
	.vision-section {
		margin-top: 60px;
		background: url('../img/main/vision.png') no-repeat center;
		background-size: cover;
	}
	.vision-bg-wrap {
		height: 300px;
	}
	.vision-headline {
		font-size: 24px;
	}
	.vision-sub {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: -0.64px;
		padding-bottom: 75px;
		word-break: keep-all;
	}
	.vision-card {
		padding: 40px 32px;
		height: 200px;
	}
	.vision-card-title {
		font-size: 32px;
	}

	.vision-card-desc {
		font-size: 16px;
	}

	.vision-icon {
		width: 70px;
		height: 70px;
		top: 26px;
		right: 24px;
	}
	.vision-icon img {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	.hero-card {
		height: 360px;
	}
	.hero-title {
		font-size: 28px;
	}
	.hero-desc {
		font-size: 13px;
		line-height: 24px;
	}
	.ph-title {
		font-size: 28px;
	}
	.card-body h3 {
		/* font-size: 20px; */
	}
	.footer-addr p {
		font-size: 12px;
		/* padding-right: 50px; */
	}
	.footer-policy {
		justify-content: flex-end;
		width: 100%;
		gap: 10px;
	}
	.footer-policy a {
		font-size: 12px;
	}
}

/* ── Top Button ─────────────────────────────────────────────────── */
.top-btn {
	position: fixed;
	right: 32px;
	bottom: 40px;
	width: 52px;
	height: 52px;
	background: rgba(20, 20, 20, 0.82);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	font-family: 'Poppins', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.3s ease,
		background 0.2s ease;
	backdrop-filter: blur(8px);
}
.top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.top-btn:hover {
	background: rgba(50, 50, 50, 0.95);
}
@media (max-width: 768px) {
	.top-btn {
		right: 20px;
		bottom: 28px;
		width: 44px;
		height: 44px;
		font-size: 10px;
	}
}

/* ── 모바일 Swiper peek (767px 이하) ── */
@media (max-width: 767px) {
	.product-inner {
		overflow: visible;
	}
	.product-slider-wrap {
		height: 280px;
		overflow: visible;
		/* 양쪽 끝을 gradient로 자연스럽게 페이드 */
		-webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
		mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
	}
	/* flex 기반 트랙으로 전환 */
	.product-track {
		display: flex;
		align-items: center;
		gap: 14px;
		width: auto;
	}
	.product-slide {
		position: relative;
		flex-shrink: 0;
		height: 100%;
		opacity: 0.35;
		overflow: visible;
		justify-content: center;
	}
	.product-slide.active {
		opacity: 1;
		padding: 0;
		overflow: visible;
	}
	.product-slide.slide-prev,
	.product-slide.slide-next {
		opacity: 0.3;
	}
	.product-slide img {
		height: 220px;
		transform: none !important;
	}
	.product-slide.active img {
		transform: none !important;
	}
}
