/* ================================================
   FreeCare Landing Page - Enterprise Design System
   ================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--color-primary: #4f46e5;
	--color-primary-dark: #4338ca;
	--color-primary-light: #818cf8;
	--color-primary-bg: #eef2ff;
	--color-accent: #06b6d4;
	--color-success: #10b981;
	--color-warning: #f59e0b;
	--color-danger: #ef4444;
	--color-gray-50: #f9fafb;
	--color-gray-100: #f3f4f6;
	--color-gray-200: #e5e7eb;
	--color-gray-300: #d1d5db;
	--color-gray-400: #9ca3af;
	--color-gray-500: #6b7280;
	--color-gray-600: #4b5563;
	--color-gray-700: #374151;
	--color-gray-800: #1f2937;
	--color-gray-900: #111827;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
	font-family: var(--font-sans);
	color: var(--color-gray-800);
	background: #fff;
	line-height: 1.6;
	overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lp-container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 24px;
}

/* === NAV === */
.lp-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.35);
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	border-bottom: 1px solid transparent;
	transition:
		background 0.35s ease,
		backdrop-filter 0.35s ease,
		border-bottom-color 0.35s ease,
		box-shadow 0.35s ease;
}
.lp-nav.scrolled {
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom-color: rgba(226,232,240,0.8);
	box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}
.lp-nav-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.lp-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--color-gray-900);
}
.lp-logo-text {
	color: #f97316;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.lp-logo-text-accent {
	color: #f97316;
}
.lp-logo-icon {
	width: 48px; height: 48px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lp-logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.lp-nav-links {
	display: flex;
	gap: 32px;
}
.lp-nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-gray-600);
	transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--color-primary); }
.lp-nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.lp-btn-nav {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	background: #f97316;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	transition: all 0.2s;
	box-shadow: 0 4px 12px -4px rgba(249, 115, 22, 0.4);
}
.lp-btn-nav:hover {
	background: #ea580c;
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(249, 115, 22, 0.5);
}
.lp-btn-nav-ghost {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-gray-600);
	transition: color 0.2s;
}
.lp-btn-nav-ghost:hover { color: var(--color-primary); }
.lp-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.lp-hamburger span {
	width: 22px; height: 2px;
	background: var(--color-gray-700);
	border-radius: 2px;
	transition: all 0.3s;
}
.lp-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.lp-mobile-menu {
	display: none;
	position: fixed;
	top: 64px; left: 0; right: 0;
	background: #fff;
	border-bottom: 1px solid var(--color-gray-200);
	box-shadow: var(--shadow-lg);
	flex-direction: column;
	padding: 16px 24px 24px;
	z-index: 999;
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}
.lp-mobile-menu.open {
	display: flex;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.lp-mm-link {
	padding: 12px 0;
	font-weight: 500;
	color: var(--color-gray-700);
	border-bottom: 1px solid var(--color-gray-100);
}
.lp-mm-divider { height: 1px; background: var(--color-gray-200); margin: 8px 0; }
.lp-mm-btn { text-align: center; margin-top: 8px; justify-content: center; }

@media (max-width: 768px) {
	.lp-nav-links, .lp-nav-actions { display: none; }
	.lp-hamburger { display: flex; }
}

/* === HERO === */
.lp-hero {
	position: relative;
	padding: 140px 0 80px;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #fafbff 0%, #f3f4ff 100%);
}

/* ── 애니메이션 블롭 배경 ── */
.lp-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.lp-hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.55;
	will-change: transform;
}
.lp-hero-blob--1 {
	width: 520px; height: 520px;
	top: -120px; left: -80px;
	background: radial-gradient(circle at 35% 35%, #818cf8, transparent 70%);
	animation: lpBlobFloat1 18s ease-in-out infinite;
}
.lp-hero-blob--2 {
	width: 460px; height: 460px;
	top: 10%; right: -100px;
	background: radial-gradient(circle at 40% 40%, #f0abfc, transparent 70%);
	animation: lpBlobFloat2 22s ease-in-out infinite;
}
.lp-hero-blob--3 {
	width: 600px; height: 600px;
	bottom: -160px; left: 30%;
	background: radial-gradient(circle at 50% 50%, #67e8f9, transparent 70%);
	animation: lpBlobFloat3 26s ease-in-out infinite;
	opacity: 0.4;
}
@keyframes lpBlobFloat1 {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes lpBlobFloat2 {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(-30px, 50px) scale(0.95); }
}
@keyframes lpBlobFloat3 {
	0%,100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(20px, -40px) scale(1.05); }
}

.lp-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(79,70,229,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79,70,229,0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black, transparent);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black, transparent);
}

/* ── 중앙정렬 레이아웃 ── */
.lp-hero > .lp-container {
	position: relative;
	z-index: 2;
	display: block;
	max-width: 960px;
}
.lp-hero-center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--color-primary-bg);
	color: var(--color-primary);
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	margin-bottom: 24px;
	border: 1px solid rgba(79,70,229,0.15);
}
.lp-badge-dot {
	width: 8px; height: 8px;
	background: var(--color-primary);
	border-radius: 50%;
	animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%,100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}
.lp-hero-title {
	font-size: clamp(2.4rem, 5.5vw, 4.6rem);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.035em;
	color: var(--color-gray-900);
	margin: 0 0 22px;
}
.lp-hero--centered .lp-hero-title {
	max-width: 900px;
}
.lp-gradient-text {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.lp-hero-desc {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.75;
	color: var(--color-gray-700);
	margin: 0 0 40px;
	max-width: 680px;
	min-height: calc(1.2rem * 1.75 * 2); /* 2줄 높이 예약 — 타이핑 중 레이아웃 점프 방지 */
}
.lp-hero-desc__text { white-space: pre-wrap; }
.lp-hero-desc__caret {
	display: inline-block;
	width: 2px;
	height: 1em;
	background: var(--color-primary);
	margin-left: 2px;
	vertical-align: text-bottom;
	animation: lpCaretBlink 0.9s step-end infinite;
}
@keyframes lpCaretBlink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}
.lp-hero--centered .lp-hero-desc {
	text-align: center;
}
.lp-hero-actions {
	display: flex;
	gap: 12px;
	margin-bottom: 44px;
	flex-wrap: wrap;
	justify-content: center;
}
.lp-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #f97316;
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 1px 2px rgba(249,115,22,0.25), 0 4px 12px rgba(249,115,22,0.2);
}
.lp-btn-primary:hover {
	background: #ea580c;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(249,115,22,0.3), 0 8px 20px rgba(249,115,22,0.3);
}
.lp-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #fff;
	color: var(--color-gray-700);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-gray-300);
	cursor: pointer;
	transition: all 0.2s;
}
.lp-btn-secondary:hover {
	background: var(--color-gray-50);
	border-color: var(--color-gray-400);
}
.lp-btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.lp-btn-full { width: 100%; justify-content: center; }

/* Hero Social Proof */
.lp-hero-proof {
	display: flex;
	align-items: center;
	gap: 12px;
}
.lp-proof-avatars {
	display: flex;
}
.lp-avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.75rem;
	color: #fff;
	margin-left: -8px;
}
.lp-avatar:first-child { margin-left: 0; }
.lp-avatar:nth-child(1) { background: #6366f1; }
.lp-avatar:nth-child(2) { background: #ec4899; }
.lp-avatar:nth-child(3) { background: #14b8a6; }
.lp-avatar:nth-child(4) { background: #f59e0b; }
.lp-proof-text {
	font-size: 0.875rem;
	color: var(--color-gray-500);
}
.lp-proof-text strong { color: var(--color-gray-900); }

/* ── 플로팅 기능 태그 (사진 대체) ── */
.lp-hero-tags {
	margin-top: 48px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.lp-hero-tag {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(226,232,240,0.9);
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--color-gray-700);
	box-shadow: 0 2px 8px rgba(79,70,229,0.05);
	animation: lpTagFloat 6s ease-in-out infinite;
	will-change: transform;
}
.lp-hero-tag:hover {
	color: var(--color-primary);
	border-color: #a5b4fc;
	background: #fff;
}
.lp-hero-tag--a { animation-delay: -0.0s; }
.lp-hero-tag--b { animation-delay: -0.6s; }
.lp-hero-tag--c { animation-delay: -1.2s; }
.lp-hero-tag--d { animation-delay: -1.8s; }
.lp-hero-tag--e { animation-delay: -2.4s; }
.lp-hero-tag--f { animation-delay: -3.0s; }
.lp-hero-tag--g { animation-delay: -3.6s; }
.lp-hero-tag--h { animation-delay: -4.2s; }
.lp-hero-tag--i { animation-delay: -4.8s; }
.lp-hero-tag--j { animation-delay: -5.4s; }
@keyframes lpTagFloat {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

/* ==============================================
   HERO 0 — 풀스크린 플레이스홀더 (내일 재구성 예정)
   ============================================== */
.lp-hero0 {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	padding: 100px 24px 60px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle 42vw at 15% 20%, rgba(99, 102, 241, 0.14) 0%, transparent 60%),
		radial-gradient(circle 42vw at 85% 82%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
		#ffffff;
}
.lp-hero0__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1000px;
}
.lp-hero0__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(79, 70, 229, 0.2);
	color: #4f46e5;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 28px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 14px -8px rgba(79, 70, 229, 0.25);
}
.lp-hero0__badge-dot {
	width: 8px; height: 8px;
	background: #4f46e5;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.22);
}
.lp-hero0__headline {
	font-size: clamp(2.2rem, 5.2vw, 4.8rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: #0f172a;
	margin: 0 0 22px;
}
.lp-hero0__accent {
	color: #f97316;
}
.lp-hero0__sub {
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	line-height: 1.65;
	color: #475569;
	margin: 0 auto 38px;
	max-width: 760px;
}
.lp-hero0__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.lp-hero0__scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: rgba(15, 23, 42, 0.45);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	z-index: 2;
}
.lp-hero0__scroll-line {
	width: 2px;
	height: 42px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.35), transparent);
	animation: heroScrollPulse 2s ease-in-out infinite;
}
@keyframes heroScrollPulse {
	0%, 100% { transform: translateY(0); opacity: 0.6; }
	50%      { transform: translateY(8px); opacity: 1; }
}

/* ==============================================
   기능 데모 (iframe 캐러셀) — 구 Hero
   ============================================== */
.lp-features-demo {
	position: relative;
	min-height: 100vh;
	padding: 80px 0 40px;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
}
.lp-features-demo > .lp-container {
	position: relative;
	z-index: 2;
	max-width: 1720px;
	padding-left: 32px;
	padding-right: 32px;
}
.lp-features-demo-heading {
	text-align: center;
	margin-bottom: 22px;
}
.lp-features-demo-heading .lp-section-tag { margin-bottom: 14px; }
.lp-features-demo-heading h2 {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--color-gray-900);
	margin-bottom: 0;
}
.lp-features-demo-heading p {
	font-size: 1rem;
	color: var(--color-gray-600);
}

/* 반응형 — Hero 0 플레이스홀더 */
@media (max-width: 768px) {
	.lp-hero0 { padding: 90px 16px 60px; }
	.lp-hero0__actions {
		flex-direction: column;
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
	}
	.lp-hero0__actions .lp-btn-primary,
	.lp-hero0__actions .lp-btn-secondary { justify-content: center; }
}

/* ==============================================
   HERO SPLIT LAYOUT (좌: 텍스트 / 우: iframe 시연)
   ============================================== */
.lp-hero--split {
	padding: 100px 0 64px;
}
.lp-hero--split > .lp-container {
	max-width: 1720px;
	display: block;
	padding-left: 32px;
	padding-right: 32px;
}
.lp-hero-split {
	display: grid;
	grid-template-columns: minmax(380px, 460px) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* 텍스트 컬럼 — 중앙정렬 오버라이드 */
.lp-hero-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}
.lp-hero-text .lp-hero-title {
	font-size: clamp(2rem, 3.2vw, 3.4rem);
	margin-bottom: 20px;
	max-width: none;
}
.lp-hero-text .lp-hero-title br { display: inline; }
.lp-hero-text .lp-hero-desc {
	text-align: left;
	max-width: none;
	font-size: 1.05rem;
	margin-bottom: 32px;
}
.lp-hero-text .lp-hero-actions {
	justify-content: flex-start;
	margin-bottom: 32px;
}
.lp-hero-text .lp-hero-proof {
	justify-content: flex-start;
}

/* iframe 컬럼 */
.lp-hero-demo {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
/* 텍스트 컬럼 없이 iframe만 노출될 때 — 중앙 정렬 풀와이드 */
.lp-hero-demo:only-child {
	grid-column: 1 / -1;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	align-items: center;
}
.lp-hero-demo:only-child .lp-hero-demo-frame {
	max-height: 820px;
}

/* ==============================================
   HERO CAROUSEL — 5개 시연을 좌우 버튼으로 전환
   ============================================== */
.lp-hero-carousel {
	position: relative;
}
.lp-hero-carousel .lp-hero-demo-frame {
	transition: opacity 0.35s ease, transform 0.35s ease;
}
.lp-hero-carousel.is-switching .lp-hero-demo-frame {
	opacity: 0.2;
	transform: scale(0.985);
}

.lp-hero-nav {
	position: absolute;
	top: 50%;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--color-gray-700);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px -6px rgba(15, 23, 42, 0.22), 0 4px 10px rgba(0, 0, 0, 0.04);
	transform: translateY(-50%);
	transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 3;
}
.lp-hero-nav:hover {
	color: var(--color-primary);
	border-color: rgba(79, 70, 229, 0.3);
	box-shadow: 0 14px 36px -6px rgba(79, 70, 229, 0.28), 0 6px 12px rgba(0, 0, 0, 0.05);
}
.lp-hero-nav:active { transform: translateY(-50%) scale(0.96); }
.lp-hero-nav--prev { left: -24px; }
.lp-hero-nav--next { right: -24px; }

.lp-hero-frame-wrap {
	position: relative;
	width: 100%;
}
.lp-hero-dots {
	display: inline-flex;
	gap: 6px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(79, 70, 229, 0.13);
	border-radius: 999px;
	padding: 4px;
	margin: 0 auto 20px;
	align-self: center;
	box-shadow: 0 3px 12px -8px rgba(79, 70, 229, 0.16);
}
.lp-hero-dots span {
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-gray-500);
	cursor: pointer;
	transition: all 0.25s;
	white-space: nowrap;
	letter-spacing: -0.01em;
}
.lp-hero-dots span:hover {
	color: #4f46e5;
}
.lp-hero-dots span.is-active {
	background: linear-gradient(135deg, #6366f1, #4f46e5);
	color: #fff;
	box-shadow: 0 4px 10px -2px rgba(79, 70, 229, 0.45);
}

@media (max-width: 1024px) {
	.lp-hero-nav--prev { left: 8px; }
	.lp-hero-nav--next { right: 8px; }
}
@media (max-width: 640px) {
	.lp-hero-nav { width: 40px; height: 40px; }
	.lp-hero-dots { flex-wrap: wrap; justify-content: center; gap: 6px; padding: 6px; }
	.lp-hero-dots span { padding: 8px 18px; font-size: 0.92rem; }
}
.lp-hero-demo-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9.5;
	max-height: min(900px, calc(100vh - 190px));
	max-width: calc((100vh - 190px) * 1.684);
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow:
		0 40px 90px -30px rgba(45, 51, 89, 0.45),
		0 14px 40px -16px rgba(79, 70, 229, 0.22),
		0 4px 12px rgba(0, 0, 0, 0.05);
}
.lp-hero-demo::before {
	content: '';
	position: absolute;
	top: 40px; left: 20px; right: -10px; bottom: 60px;
	background: radial-gradient(ellipse at 60% 50%, rgba(79, 70, 229, 0.35) 0%, rgba(6, 182, 212, 0.18) 45%, transparent 70%);
	filter: blur(40px);
	z-index: 0;
	pointer-events: none;
}
.lp-hero-demo-frame {
	position: relative;
	z-index: 1;
}
.lp-hero-demo-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.lp-hero-demo-caption {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(79, 70, 229, 0.15);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--color-gray-600);
}
.lp-hero-demo-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18);
	animation: pulse-dot 1.6s ease-in-out infinite;
}

/* 반응형 */
@media (max-width: 1200px) {
	.lp-hero-split { gap: 40px; }
	.lp-hero-text .lp-hero-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
}
@media (max-width: 1024px) {
	.lp-hero--split { padding: 100px 0 60px; }
	.lp-hero-split {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.lp-hero-text { align-items: center; text-align: center; }
	.lp-hero-text .lp-hero-title,
	.lp-hero-text .lp-hero-desc { text-align: center; }
	.lp-hero-text .lp-hero-actions { justify-content: center; }
	.lp-hero-text .lp-hero-proof { justify-content: center; }
	.lp-hero-demo {
		max-width: 780px;
		margin: 0 auto;
		width: 100%;
		align-items: center;
	}
	.lp-hero-demo-frame {
		transform: none;
		aspect-ratio: 16 / 10;
	}
	.lp-hero-demo-caption { align-self: center; }
}
@media (max-width: 768px) {
	.lp-hero--split { padding: 88px 0 40px; }
	.lp-hero-text .lp-hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
	.lp-hero-text .lp-hero-title br { display: none; }
	.lp-hero-demo-frame { aspect-ratio: 4 / 5; max-height: none; }
}

/* ── 스크롤 인디케이터 ── */
.lp-hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}
.lp-hero-scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(180deg, transparent, rgba(79,70,229,0.5) 50%, transparent);
	position: relative;
}
.lp-hero-scroll-line::after {
	content: '';
	position: absolute;
	left: -3px;
	top: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 12px rgba(79,70,229,0.6);
	animation: lpScrollDot 2.2s ease-in-out infinite;
}
@keyframes lpScrollDot {
	0% { top: 0; opacity: 1; }
	80% { top: 40px; opacity: 0; }
	100% { top: 0; opacity: 0; }
}

/* 레거시 요소 숨김 (혹시 다른 곳에서 재사용되면 대비) */
.lp-hero-visual,
.lp-hero-slider,
.lp-hero-slide,
.lp-hero-slider-dots,
.lp-slider-dot { display: none !important; }

/* 기존 Mock Card (하위 호환) */
.lp-hero-card {
	background: #fff;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-2xl);
	overflow: hidden;
}
.lp-hero-card:hover { transform: none; }
.lp-hc-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--color-gray-50);
	border-bottom: 1px solid var(--color-gray-200);
}
.lp-hc-dots { display: flex; gap: 6px; }
.lp-hc-dots span {
	width: 10px; height: 10px;
	border-radius: 50%;
}
.lp-hc-dots span:nth-child(1) { background: #ef4444; }
.lp-hc-dots span:nth-child(2) { background: #f59e0b; }
.lp-hc-dots span:nth-child(3) { background: #22c55e; }
.lp-hc-title { font-size: 0.85rem; font-weight: 600; color: var(--color-gray-600); }
.lp-hc-body { padding: 20px; }
.lp-hc-row { margin-bottom: 16px; }
.lp-hc-row:last-child { margin-bottom: 0; }
.lp-hc-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-gray-400);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}
.lp-hc-value { font-size: 0.9rem; font-weight: 500; color: var(--color-gray-800); }
.lp-hc-ai-box {
	background: linear-gradient(135deg, rgba(79,70,229,0.04), rgba(6,182,212,0.04));
	border: 1px solid rgba(79,70,229,0.12);
	border-radius: var(--radius-sm);
	padding: 12px;
}
.lp-hc-ai-badge {
	display: inline-block;
	padding: 2px 8px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: var(--radius-full);
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}
.lp-hc-ai-box p {
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--color-gray-700);
}
.lp-hc-footer {
	padding: 12px 20px;
	background: var(--color-gray-50);
	border-top: 1px solid var(--color-gray-200);
	text-align: right;
}
.lp-hc-time {
	font-size: 0.8rem;
	color: var(--color-gray-500);
}
.lp-hc-time strong { color: var(--color-success); }

/* === STATS === */
.lp-stats {
	padding: 48px 0;
	background: var(--color-gray-900);
}
.lp-stats-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}
.lp-stat {
	text-align: center;
	flex: 1;
	padding: 16px 0;
}
.lp-stat-num {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	display: inline;
	letter-spacing: -0.02em;
}
.lp-stat-unit {
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-weight: 700;
	color: var(--color-primary-light);
	display: inline;
	margin-left: 2px;
}
.lp-stat-label {
	font-size: 0.85rem;
	color: var(--color-gray-400);
	margin-top: 4px;
	font-weight: 500;
}
.lp-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255,255,255,0.1);
}

/* === SECTION HEADER (shared) === */
.lp-section-header {
	text-align: center;
	margin-bottom: 72px;
}
.lp-section-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	background: var(--color-primary-bg);
	color: var(--color-primary);
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	margin-bottom: 20px;
	border: 1px solid rgba(79,70,229,0.12);
}
.lp-section-title {
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.03em;
	color: var(--color-gray-900);
	margin-bottom: 16px;
}
.lp-title-gradient {
	background: linear-gradient(135deg, var(--color-primary) 0%, #818cf8 50%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.lp-section-desc {
	font-size: 1.08rem;
	color: var(--color-gray-500);
	max-width: 540px;
	margin: 0 auto;
	line-height: 1.7;
}
/* ==================================================
   SCROLL INTERACTIONS — Card Stack / Demo Zoom / HScroll
   ================================================== */

/* --- 공통 pin 섹션 래퍼 --- */
.lp-pin-viewport {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(180deg, #fff 0%, #f6f7fd 100%);
	overflow: hidden;
}
.lp-pin-stage {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* === CARD STACK (메인) === */
.lp-bento {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #eef1fb 100%);
	padding: 100px 0 120px;
}
.lp-bento-inner {
	width: min(1180px, 92vw);
	margin: 0 auto;
}
.lp-bento-heading {
	text-align: center;
	margin-bottom: 52px;
}
.lp-bento-heading .lp-section-tag { margin-bottom: 14px; }
.lp-bento-heading h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--color-gray-900);
	margin-bottom: 14px;
}
.lp-bento-heading p {
	font-size: 1rem;
	color: var(--color-gray-600);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.7;
}

.lp-bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 200px;
	gap: 20px;
}
.lp-bento-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px 32px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.18);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.lp-bento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 60px -28px rgba(15, 23, 42, 0.25);
	border-color: rgba(79, 70, 229, 0.2);
}

/* 레이아웃: hero + 4 서브 카드 */
.lp-bento-hero {
	grid-column: span 7;
	grid-row: span 2;
	padding: 44px 44px;
}
.lp-bento-card:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.lp-bento-card:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.lp-bento-card:nth-child(4) { grid-column: span 6; grid-row: span 1; }
.lp-bento-card:nth-child(5) { grid-column: span 6; grid-row: span 1; }

/* 컬러 토큰 */
.lp-bento-card[data-color="indigo"] { background: linear-gradient(135deg, #fff 0%, #f3f4ff 100%); }
.lp-bento-card[data-color="cyan"] { background: linear-gradient(135deg, #fff 0%, #ecfeff 100%); }
.lp-bento-card[data-color="emerald"] { background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%); }
.lp-bento-card[data-color="amber"] { background: linear-gradient(135deg, #fff 0%, #fef9c3 100%); }
.lp-bento-card[data-color="rose"] { background: linear-gradient(135deg, #fff 0%, #ffe4e6 100%); }

.lp-bento-card::before {
	content: '';
	position: absolute;
	right: -30px; top: -30px;
	width: 180px; height: 180px;
	border-radius: 50%;
	opacity: 0.08;
	pointer-events: none;
	filter: blur(10px);
}
.lp-bento-card[data-color="indigo"]::before { background: radial-gradient(circle, #4f46e5 0%, transparent 70%); }
.lp-bento-card[data-color="cyan"]::before { background: radial-gradient(circle, #0891b2 0%, transparent 70%); }
.lp-bento-card[data-color="emerald"]::before { background: radial-gradient(circle, #059669 0%, transparent 70%); }
.lp-bento-card[data-color="amber"]::before { background: radial-gradient(circle, #d97706 0%, transparent 70%); }
.lp-bento-card[data-color="rose"]::before { background: radial-gradient(circle, #e11d48 0%, transparent 70%); }

.lp-bento-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 2;
}
.lp-bento-num {
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 4px 10px;
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.06);
	color: var(--color-gray-700);
}
.lp-bento-tag {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.lp-bento-card[data-color="indigo"] .lp-bento-tag { color: #4f46e5; }
.lp-bento-card[data-color="cyan"] .lp-bento-tag { color: #0891b2; }
.lp-bento-card[data-color="emerald"] .lp-bento-tag { color: #059669; }
.lp-bento-card[data-color="amber"] .lp-bento-tag { color: #d97706; }
.lp-bento-card[data-color="rose"] .lp-bento-tag { color: #e11d48; }

.lp-bento-card h3 {
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: var(--color-gray-900);
	position: relative;
	z-index: 2;
}
.lp-bento-hero h3 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.3;
}
.lp-bento-card p {
	font-size: 0.92rem;
	color: var(--color-gray-600);
	line-height: 1.65;
	position: relative;
	z-index: 2;
}
.lp-bento-hero p {
	font-size: 1rem;
	line-height: 1.7;
	max-width: 520px;
}

.lp-bento-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	position: relative;
	z-index: 2;
}
.lp-bento-chip {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--color-gray-700);
	border: 1px solid rgba(79, 70, 229, 0.15);
}

.lp-bento-visual {
	position: absolute;
	right: 36px; bottom: 36px;
	width: 86px; height: 86px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 30px -12px rgba(15, 23, 42, 0.2);
	z-index: 2;
}
.lp-bento-visual-sm {
	width: 64px; height: 64px;
	right: 24px; bottom: 24px;
	border-radius: 16px;
}
.lp-bento-card[data-color="indigo"] .lp-bento-visual { color: #4f46e5; }
.lp-bento-card[data-color="cyan"] .lp-bento-visual { color: #0891b2; }
.lp-bento-card[data-color="emerald"] .lp-bento-visual { color: #059669; }
.lp-bento-card[data-color="amber"] .lp-bento-visual { color: #d97706; }
.lp-bento-card[data-color="rose"] .lp-bento-visual { color: #e11d48; }

.lp-bento-metric {
	margin-top: auto;
	align-self: flex-start;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(79, 70, 229, 0.1);
	color: #4f46e5;
	font-size: 0.82rem;
	font-weight: 600;
	position: relative;
	z-index: 2;
}
.lp-bento-metric strong { font-weight: 800; }

/* === DEMO ZOOM === */
.lp-demo-zoom {
	position: relative;
	background: linear-gradient(180deg, #eef1fb 0%, #0f172a 60%, #0b1224 100%);
}
.lp-demo-viewport {
	height: 140vh;
	position: relative;
}
.lp-demo-pin {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	perspective: 1400px;
	overflow: hidden;
}
.lp-demo-heading {
	position: absolute;
	top: 12vh;
	left: 0; right: 0;
	text-align: center;
	color: #fff;
	z-index: 3;
	pointer-events: none;
}
.lp-demo-heading .lp-section-tag {
	background: rgba(255,255,255,0.1);
	color: #e0e7ff;
	border-color: rgba(255,255,255,0.15);
}
.lp-demo-heading h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin-top: 10px;
	color: #fff;
}
.lp-demo-heading h2 .lp-title-gradient {
	background: linear-gradient(135deg, #c4b5fd 0%, #22d3ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.lp-demo-heading p {
	font-size: 0.95rem;
	color: rgba(226, 232, 240, 0.75);
	margin-top: 8px;
}

.lp-demo-frame-wrap {
	width: min(1100px, 90vw);
	aspect-ratio: 16 / 10;
	max-height: 78vh;
	transform-origin: 50% 50%;
	will-change: transform;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5), 0 20px 60px -20px rgba(79, 70, 229, 0.45);
	background: #fff;
}
.lp-demo-frame-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.lp-demo-glow {
	position: absolute;
	width: 80vw;
	height: 60vh;
	background: radial-gradient(ellipse at center, rgba(79,70,229,0.35) 0%, transparent 60%);
	filter: blur(50px);
	pointer-events: none;
	z-index: 1;
}

/* === HORIZONTAL SCROLL (도입효과) === */
.lp-hscroll {
	position: relative;
	background: #0b1224;
	color: #fff;
}
.lp-hscroll-viewport {
	position: relative;
}
.lp-hscroll-pin {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.lp-hscroll-header {
	padding: 80px 40px 40px;
	text-align: center;
	flex-shrink: 0;
}
.lp-hscroll-header .lp-section-tag {
	background: rgba(255,255,255,0.08);
	color: #a5f3fc;
	border-color: rgba(34,211,238,0.2);
}
.lp-hscroll-header h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	margin-top: 14px;
}
.lp-hscroll-header p {
	color: rgba(226, 232, 240, 0.65);
	margin-top: 8px;
	font-size: 1rem;
}
.lp-hscroll-track {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 36px;
	padding: 0 10vw;
	will-change: transform;
}
.lp-hscroll-card {
	flex: 0 0 420px;
	height: 440px;
	padding: 40px 36px;
	background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(148, 163, 184, 0.15);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s, border-color 0.4s;
}
.lp-hscroll-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 100% 0%, rgba(79,70,229,0.12) 0, transparent 50%);
	pointer-events: none;
}
.lp-hscroll-card-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(34, 211, 238, 0.1);
	color: #67e8f9;
	border: 1px solid rgba(34, 211, 238, 0.25);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	align-self: flex-start;
}
.lp-hscroll-card h3 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}
.lp-hscroll-card-num {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
}
.lp-hscroll-card-from {
	font-size: 1rem;
	color: rgba(148, 163, 184, 0.7);
	text-decoration: line-through;
}
.lp-hscroll-card-arrow {
	font-size: 1rem;
	color: rgba(148, 163, 184, 0.5);
}
.lp-hscroll-card-to {
	font-size: clamp(2.2rem, 3.4vw, 3rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #c4b5fd 0%, #22d3ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.lp-hscroll-card p {
	color: rgba(203, 213, 225, 0.8);
	font-size: 0.92rem;
	line-height: 1.65;
}
.lp-hscroll-progress {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: min(360px, 60vw);
	height: 3px;
	background: rgba(148, 163, 184, 0.2);
	border-radius: 999px;
	overflow: hidden;
}
.lp-hscroll-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	transition: width 0.1s linear;
}

/* ---- 모바일 폴백: pin 해제 + 카드 세로 배치 ---- */
@media (max-width: 1024px) {
	.lp-bento { padding: 72px 0 80px; }
	.lp-bento-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 16px;
	}
	.lp-bento-hero,
	.lp-bento-card:nth-child(2),
	.lp-bento-card:nth-child(3),
	.lp-bento-card:nth-child(4),
	.lp-bento-card:nth-child(5) {
		grid-column: auto;
		grid-row: auto;
	}
	.lp-bento-card { padding: 28px 24px; min-height: 180px; }
	.lp-bento-hero { padding: 32px 28px; }
	.lp-bento-visual { width: 64px; height: 64px; right: 20px; bottom: 20px; border-radius: 16px; }
	.lp-bento-visual-sm { width: 52px; height: 52px; right: 16px; bottom: 16px; }

	.lp-demo-viewport { height: auto; }
	.lp-demo-pin {
		position: static;
		height: auto;
		padding: 80px 20px;
	}
	.lp-demo-heading { position: static; margin-bottom: 24px; color: #fff; }
	.lp-demo-frame-wrap {
		width: 100%;
		aspect-ratio: 4 / 5;
		max-height: 640px;
		transform: none !important;
	}

	.lp-hscroll-viewport { height: auto; }
	.lp-hscroll-pin {
		position: static;
		height: auto;
		padding: 60px 0;
	}
	.lp-hscroll-track {
		flex-direction: column;
		gap: 20px;
		padding: 0 20px;
		transform: none !important;
	}
	.lp-hscroll-card { flex: 1 1 auto; width: 100%; height: auto; min-height: 300px; }
	.lp-hscroll-progress { display: none; }
}

/* === REVIEWS === */
.lp-reviews {
	padding: 100px 0;
	background: var(--color-gray-50);
}

/* 리뷰 슬라이더 */
.lp-reviews-slider { position: relative; }
.lp-reviews-page {
	display: none;
	animation: reviewFadeIn 0.6s ease;
}
.lp-reviews-page.active { display: block; }
@keyframes reviewFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.lp-reviews-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}
.lp-reviews-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--color-gray-300);
	cursor: pointer;
	transition: all 0.3s;
}
.lp-reviews-dot.active {
	background: var(--color-primary);
	width: 28px;
	border-radius: 5px;
}

.lp-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.lp-review-card {
	padding: 32px;
	background: #fff;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	transition: all 0.3s;
}
.lp-review-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.lp-review-stars {
	color: #f59e0b;
	font-size: 1rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}
.lp-review-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--color-gray-700);
	margin-bottom: 24px;
	font-style: italic;
}
.lp-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.lp-review-avatar {
	width: 40px; height: 40px;
	background: var(--color-primary-bg);
	color: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}
.lp-review-author strong {
	display: block;
	font-size: 0.9rem;
	color: var(--color-gray-900);
}
.lp-review-author span {
	font-size: 0.8rem;
	color: var(--color-gray-400);
}

/* === CTA === */
.lp-cta {
	padding: 100px 0;
	background: #fff;
}
.lp-cta-box {
	text-align: center;
	padding: 80px 40px;
	background: var(--color-gray-900);
	border-radius: var(--radius-xl);
	position: relative;
	overflow: hidden;
}
.lp-cta-box::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.35), transparent 60%),
		radial-gradient(ellipse at 70% 50%, rgba(251,146,60,0.22), transparent 60%);
}
.lp-cta-box > * { position: relative; z-index: 1; }
.lp-cta-box h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}
.lp-cta-box p {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 32px;
	line-height: 1.7;
}
.lp-cta-actions { margin-bottom: 16px; }
.lp-cta-sub {
	font-size: 0.85rem !important;
	color: rgba(255,255,255,0.5) !important;
	margin-bottom: 0 !important;
}

/* === FOOTER === */
/* ==============================================
   FOOTER — 미니멀 라이트 스타일 (SBT Global 레이아웃)
   ============================================== */
.lp-footer {
	background: #f5f5f5;
	color: #3f3f46;
	padding: 56px 0 24px;
	font-size: 0.88rem;
	border-top: 1px solid #e4e4e7;
}
.lp-footer .lp-container {
	max-width: 1600px;
	padding: 0 40px;
}
.lp-footer-grid {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) auto;
	gap: 56px;
	align-items: start;
}

/* 로고 */
.lp-ft-brand .lp-ft-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.35rem;
	font-weight: 800;
	color: #f97316;
	letter-spacing: -0.02em;
}
.lp-ft-brand .lp-ft-logo img { height: 30px; width: auto; }
.lp-ft-logo-accent { color: #f97316; }

/* 회사정보 dl 테이블 */
.lp-ft-info {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	column-gap: 36px;
	row-gap: 12px;
	margin: 0;
	font-size: 0.88rem;
}
.lp-ft-info dt {
	color: #71717a;
	font-weight: 500;
	white-space: nowrap;
}
.lp-ft-info dd {
	margin: 0;
	color: #27272a;
	font-weight: 500;
}

/* 우측 메뉴 (컬럼 4개) */
.lp-ft-nav {
	display: grid;
	grid-template-columns: repeat(4, auto);
	gap: 48px;
}
.lp-ft-col h4 {
	color: #f97316;
	font-size: 0.92rem;
	font-weight: 700;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}
.lp-ft-col a {
	display: block;
	color: #3f3f46;
	text-decoration: none;
	font-size: 0.86rem;
	line-height: 2.05;
	transition: color 0.2s;
}
.lp-ft-col a:hover { color: #f97316; }

/* 구분선 */
.lp-ft-divider {
	height: 1px;
	background: #d4d4d8;
	margin: 44px 0 20px;
}

/* 하단 */
.lp-ft-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}
.lp-ft-bottom-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.lp-ft-links {
	display: flex;
	gap: 18px;
}
.lp-ft-links a {
	color: #27272a;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
}
.lp-ft-links a:hover { color: #f97316; }
.lp-ft-copy {
	color: #a1a1aa;
	font-size: 0.78rem;
	margin: 0;
	letter-spacing: 0.02em;
}
.lp-ft-social {
	display: flex;
	gap: 10px;
}
.lp-ft-social a {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: #71717a;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}
.lp-ft-social a:hover {
	background: #f97316;
	transform: translateY(-1px);
}

@media (max-width: 1200px) {
	.lp-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.lp-ft-nav { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
	.lp-footer { padding: 40px 0 20px; }
	.lp-footer .lp-container { padding: 0 20px; }
	.lp-ft-info {
		grid-template-columns: max-content 1fr;
		column-gap: 20px;
		row-gap: 10px;
		font-size: 0.84rem;
	}
	.lp-ft-nav { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
	.lp-ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* === LOGIN MODAL === */
/* === LOGIN MODAL === */
.lp-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(15,23,42,0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}
.lp-modal {
	position: relative;
	width: 100%;
	max-width: 440px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 32px 64px -12px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.04);
	overflow: hidden;
	transform: translateY(24px) scale(0.96);
	opacity: 0;
	transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
	margin: 16px;
}
.lp-modal.show { transform: translateY(0) scale(1); opacity: 1; }

/* 닫기 버튼 */
.lp-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px; height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--color-gray-200);
	border-radius: 10px;
	color: var(--color-gray-400);
	cursor: pointer;
	transition: all 0.2s;
	z-index: 1;
}
.lp-modal-close:hover { background: var(--color-gray-100); color: var(--color-gray-600); border-color: var(--color-gray-300); }

/* 브랜드 영역 */
.lp-modal-brand {
	text-align: center;
	padding: 36px 32px 8px;
}
.lp-modal-brand-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	border-radius: 16px;
	box-shadow: 0 8px 24px -4px rgba(79,70,229,0.35);
	margin-bottom: 16px;
}
.lp-modal-brand-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-gray-900);
	letter-spacing: -0.02em;
}
.lp-modal-brand-desc {
	font-size: 0.88rem;
	color: var(--color-gray-400);
	margin-top: 4px;
}

/* 폼 */
.lp-login-form { padding: 24px 32px 20px; }
.lp-form-group { margin-bottom: 18px; }
.lp-form-group label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--color-gray-600);
	margin-bottom: 7px;
	letter-spacing: 0.01em;
}
.lp-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.lp-input-icon {
	position: absolute;
	left: 14px;
	color: var(--color-gray-400);
	display: flex;
	pointer-events: none;
	transition: color 0.2s;
}
.lp-input-wrap:focus-within .lp-input-icon { color: var(--color-primary); }
.lp-form-group input {
	width: 100%;
	padding: 13px 14px 13px 42px;
	border: 1.5px solid var(--color-gray-200);
	border-radius: 12px;
	font-size: 0.95rem;
	font-family: var(--font-sans);
	background: var(--color-gray-50);
	transition: all 0.2s;
	outline: none;
	color: var(--color-gray-800);
}
.lp-form-group input::placeholder { color: var(--color-gray-400); }
.lp-form-group input:focus {
	border-color: var(--color-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(79,70,229,0.08);
}

/* 비밀번호 토글 */
.lp-pw-toggle {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	color: var(--color-gray-400);
	cursor: pointer;
	padding: 4px;
	display: flex;
	transition: color 0.2s;
}
.lp-pw-toggle:hover { color: var(--color-gray-600); }

/* 체크박스 */
.lp-form-options { margin-bottom: 22px; }
.lp-checkbox-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 0.85rem;
	color: var(--color-gray-500);
	user-select: none;
}
.lp-checkbox-wrap input { display: none; }
.lp-checkbox-custom {
	width: 18px; height: 18px;
	border: 1.5px solid var(--color-gray-300);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
}
.lp-checkbox-wrap input:checked + .lp-checkbox-custom {
	background: var(--color-primary);
	border-color: var(--color-primary);
}
.lp-checkbox-wrap input:checked + .lp-checkbox-custom::after {
	content: '';
	width: 5px; height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -1px;
}

/* 로그인 버튼 */
.lp-btn-login {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font-sans);
	cursor: pointer;
	transition: all 0.25s;
	box-shadow: 0 4px 16px -2px rgba(79,70,229,0.3);
	position: relative;
	overflow: hidden;
}
.lp-btn-login::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
	opacity: 0;
	transition: opacity 0.25s;
}
.lp-btn-login:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -4px rgba(79,70,229,0.4); }
.lp-btn-login:hover::before { opacity: 1; }
.lp-btn-login:active { transform: translateY(0); }
.lp-btn-login:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.lp-btn-login .lp-btn-arrow { transition: transform 0.2s; }
.lp-btn-login:hover .lp-btn-arrow { transform: translateX(3px); }

/* 하단 */
.lp-modal-footer {
	padding: 0 32px 28px;
	text-align: center;
}
.lp-modal-divider {
	position: relative;
	margin: 4px 0 20px;
}
.lp-modal-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--color-gray-200);
}
.lp-modal-divider span {
	position: relative;
	background: #fff;
	padding: 0 14px;
	font-size: 0.8rem;
	color: var(--color-gray-400);
}
.lp-modal-footer p {
	font-size: 0.88rem;
	color: var(--color-gray-500);
}
.lp-modal-footer a {
	color: var(--color-primary);
	font-weight: 700;
	transition: color 0.2s;
}
.lp-modal-footer a:hover { color: var(--color-primary-dark); }

/* 메시지 */
.lp-login-msg {
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 0.85rem;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.lp-login-msg-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}
.lp-login-msg-success {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

/* 모달 모바일 */
@media (max-width: 480px) {
	.lp-modal { max-width: 100%; margin: 12px; border-radius: 16px; }
	.lp-modal-brand { padding: 28px 24px 4px; }
	.lp-login-form { padding: 20px 24px 16px; }
	.lp-modal-footer { padding: 0 24px 24px; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
	.lp-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
	.lp-ft-top-inner { flex-direction: column; text-align: center; }
	.lp-hero-title { font-size: clamp(2.2rem, 6vw, 3.6rem); }
}

@media (max-width: 768px) {
	.lp-hero { padding: 110px 0 80px; min-height: auto; }
	.lp-hero-title { font-size: 2.1rem; letter-spacing: -0.03em; }
	.lp-hero-desc { font-size: 1rem; }
	.lp-hero-desc br { display: none; }
	.lp-hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
	.lp-hero-actions .lp-btn-primary,
	.lp-hero-actions .lp-btn-secondary { width: 100%; justify-content: center; }
	.lp-hero-proof { justify-content: center; }
	.lp-hero-tags { margin-top: 36px; gap: 8px; }
	.lp-hero-tag { padding: 7px 14px; font-size: 0.82rem; }
	.lp-hero-blob--1 { width: 320px; height: 320px; }
	.lp-hero-blob--2 { width: 280px; height: 280px; }
	.lp-hero-blob--3 { width: 360px; height: 360px; }
	.lp-hero-scroll { display: none; }

	.lp-stats-grid { flex-wrap: wrap; gap: 0; }
	.lp-stat { flex: 0 0 50%; }
	.lp-stat-divider { display: none; }

	.lp-reviews-grid { grid-template-columns: 1fr; }
	.lp-footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.lp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
	.lp-ft-top-inner { flex-direction: column; text-align: center; gap: 20px; }
	.lp-ft-top-right { flex-direction: column; width: 100%; }
	.lp-ft-phone-btn, .lp-ft-kakao-btn { justify-content: center; width: 100%; }
	.lp-ft-company { text-align: center; }
	.lp-ft-sep { display: none; }
	.lp-ft-company span { display: block; }
	.lp-ft-badges { justify-content: center; }

	.lp-cta-box { padding: 48px 24px; }
	.lp-cta-box h2 { font-size: 1.6rem; }

	.lp-section-title { font-size: 1.6rem; }
	.lp-section-title br { display: none; }
}

@media (max-width: 480px) {
	.lp-container { padding: 0 16px; }
	.lp-hero-title { font-size: 1.7rem; }
	.lp-stat-num { font-size: 1.8rem; }
	.lp-review-card { padding: 24px; }
	.lp-hero-card { font-size: 0.9rem; }
}

/* ==============================================
   FLOATING QUICK PANEL — 우측 중앙 고정 (연결형 카드)
   ============================================== */
.lp-fab {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	width: 96px;
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow:
		0 22px 48px -18px rgba(15, 23, 42, 0.35),
		0 8px 20px -10px rgba(15, 23, 42, 0.18),
		0 0 0 1px rgba(15, 23, 42, 0.05);
}
.lp-fab__head {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: #fff;
	text-align: center;
	padding: 11px 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.lp-fab__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 6px 13px;
	text-decoration: none;
	color: #475569;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	cursor: pointer;
	transition: background 0.22s, color 0.22s;
}
.lp-fab__item:hover {
	background: linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(79, 70, 229, 0.09));
	color: #4f46e5;
}
.lp-fab__icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	transition: transform 0.22s;
}
.lp-fab__item:hover .lp-fab__icon {
	transform: translateY(-1px) scale(1.04);
}
.lp-fab__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: inherit;
}
.lp-fab__top {
	border: 0;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	height: 0;
	background: linear-gradient(135deg, #6366f1, #4f46e5);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
	font-family: inherit;
}
.lp-fab__top.is-visible {
	height: 38px;
	opacity: 1;
	pointer-events: auto;
}
.lp-fab__top:hover { filter: brightness(1.08); }

@media (max-width: 1200px) {
	.lp-fab { right: 14px; }
}
@media (max-width: 640px) {
	.lp-fab {
		right: 10px;
		width: 78px;
		border-radius: 14px;
	}
	.lp-fab__head { padding: 9px 0; font-size: 0.72rem; }
	.lp-fab__item { padding: 11px 4px 10px; gap: 6px; }
	.lp-fab__icon { width: 26px; height: 26px; }
	.lp-fab__icon svg { width: 20px; height: 20px; }
	.lp-fab__label { font-size: 0.66rem; }
}
