﻿/* ================================================
   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: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', '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: #ffffff;
	border-bottom: 1px solid rgba(226,232,240,0.8);
	transition:
		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: #2dd4bf;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.lp-logo-text-accent {
	color: #2dd4bf;
}
.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: #10b981;
	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: #059669;
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(16, 185, 129, 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: #10b981;
	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: #059669;
	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: #10b981; }
.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%;
	padding-top: 72px; /* 고정 nav 높이 보정 */
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	background: #ffffff;
}
.lp-hero0__photo {
	position: relative;
	width: 100%;
	height: calc(100vh - 72px - 160px);
	min-height: 420px;
	background: #0a0a0a;
	overflow: hidden;
}
.lp-hero0__slides {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-hero0__slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 18px;
	padding: 0 8vw;
	color: #ffffff;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.lp-hero0__slide.has-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.7) 100%);
	pointer-events: none;
	z-index: 1;
}
.lp-hero0__slide.has-bg > * {
	position: relative;
	z-index: 2;
}
/* iframe 배경 — hero-bg/{번호}/index.html 을 풀커버(16:9)로 임베드 */
.lp-hero0__iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	background: #0a0a0a;
	z-index: 0;
	pointer-events: none;
	/* 크기는 JS(fitHeroIframes)에서 cover 계산 후 주입 */
}
/* iframe 슬라이드: 기존 텍스트(스탭/헤드라인)와 어두운 오버레이 숨김 */
.lp-hero0__slide.has-iframe::before { display: none; }
.lp-hero0__slide.has-iframe .lp-hero0__stag,
.lp-hero0__slide.has-iframe .lp-hero0__sheadline { display: none; }
.lp-hero0__slide.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.lp-hero0__stag {
	margin: 0;
	font-size: clamp(0.95rem, 1.3vw, 1.15rem);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.82);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.lp-hero0__sheadline {
	margin: 0;
	font-size: clamp(2rem, 4.6vw, 4rem);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}
.lp-hero0__quicknav {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	padding: 0 15%;
	background:
		radial-gradient(120% 100% at 50% 0%, rgba(249, 115, 22, 0.22) 0%, transparent 60%),
		linear-gradient(180deg, #0c1425 0%, #050816 100%);
	color: rgba(255, 255, 255, 0.78);
	position: relative;
}
.lp-hero0__quicknav::after {
	content: '';
	position: absolute;
	left: 15%;
	right: 15%;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(251, 146, 60, 0.5) 50%,
		transparent 100%);
	pointer-events: none;
}
.lp-hero0__qitem {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 34px 10px 30px;
	text-decoration: none;
	color: inherit;
	transition: color 0.25s ease;
}
.lp-hero0__qitem::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 14px;
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	opacity: 0;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}
.lp-hero0__qitem:hover { color: #ffffff; }
.lp-hero0__qitem:hover::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 0.85;
}
.lp-hero0__qitem.is-current {
	color: #ffffff;
}
.lp-hero0__qicon {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,
		rgba(249, 115, 22, 0.08) 0%,
		rgba(251, 146, 60, 0.04) 100%);
	border: 1px solid rgba(148, 163, 184, 0.14);
	color: rgba(254, 215, 170, 0.9);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		color 0.25s ease,
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s ease;
}
.lp-hero0__qicon svg {
	width: 24px;
	height: 24px;
	stroke-width: 1.6;
}
.lp-hero0__qicon i {
	font-size: 22px;
	line-height: 1;
}
.lp-hero0__qitem:hover .lp-hero0__qicon {
	background: linear-gradient(135deg,
		rgba(249, 115, 22, 0.22) 0%,
		rgba(251, 146, 60, 0.14) 100%);
	border-color: rgba(251, 146, 60, 0.55);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 24px -10px rgba(249, 115, 22, 0.6);
}
.lp-hero0__qitem.is-current .lp-hero0__qicon {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-color: rgba(167, 243, 208, 0.5);
	color: #ffffff;
	box-shadow: 0 14px 32px -10px rgba(249, 115, 22, 0.65);
}
.lp-hero0__qdot {
	display: none;
}
.lp-hero0__qlabel {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: center;
	line-height: 1.35;
	transition: color 0.25s, letter-spacing 0.3s ease;
}
.lp-hero0__qitem.is-current .lp-hero0__qlabel {
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ==============================================
   기능 데모 (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: 1200px) {
	.lp-hero0__quicknav { grid-template-columns: repeat(4, 1fr); padding: 0 8%; }
	.lp-hero0__quicknav::after { left: 8%; right: 8%; }
	.lp-hero0__photo { height: calc(100vh - 72px - 320px); min-height: 360px; }
}
@media (max-width: 640px) {
	.lp-hero0__quicknav { grid-template-columns: repeat(2, 1fr); padding: 0 4%; }
	.lp-hero0__quicknav::after { left: 4%; right: 4%; }
	.lp-hero0__qitem { padding: 22px 8px 20px; gap: 10px; }
	.lp-hero0__qicon { width: 44px; height: 44px; border-radius: 12px; }
	.lp-hero0__qicon svg { width: 22px; height: 22px; }
	.lp-hero0__qicon i { font-size: 19px; }
	.lp-hero0__qlabel { font-size: 0.78rem; }
	.lp-hero0__qitem:hover .lp-hero0__qicon { transform: translateY(-2px); }
	.lp-hero0__photo { height: auto; min-height: 260px; aspect-ratio: 3/2; }
}

/* ==============================================
   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, #059669 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: #059669; }
.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: #059669; }
.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: #10b981;
	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 레이아웃)
   ============================================== */
/* ==========================================================
   FOOTER — AICOCOA 다크 스타일
   ========================================================== */
.lp-footer {
	position: relative;
	background: #000;
	color: #d4d4d8;
	padding: 72px 0 32px;
	font-size: 0.88rem;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-footer .lp-container {
	position: relative;
	z-index: 1;
	max-width: 1600px;
	padding: 0 40px;
}

.lp-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 56px;
	align-items: start;
}

/* ── 좌: 회사 정보 ── */
.lp-ft-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #2dd4bf;
	letter-spacing: -0.02em;
}
.lp-ft-logo img { height: 30px; width: auto; }
.lp-ft-logo em {
	font-style: normal;
	color: #2dd4bf;
}
.lp-ft-legal {
	margin: 16px 0 32px;
	font-size: 1rem;
	font-weight: 600;
	color: #e4e4e7;
	letter-spacing: -0.01em;
}

.lp-ft-info {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	column-gap: 28px;
	row-gap: 11px;
	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: #e4e4e7;
	font-weight: 500;
}

/* ── 우: 연락 카드 2x2 그리드 ── */
.lp-ft-contacts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.lp-ft-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	overflow: hidden;
}
.lp-ft-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top right, rgba(255,255,255,0.04), transparent 60%);
	pointer-events: none;
}
.lp-ft-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,0.16);
	background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.lp-ft-card__chip {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.lp-ft-card__chip--teal   { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.lp-ft-card__chip--amber  { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.lp-ft-card__chip--kakao  { background: linear-gradient(135deg, #facc15 0%, #eab308 100%); color: #422006; padding: 6px; }
.lp-ft-card__chip--kakao img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lp-ft-card__chip--blue   { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

.lp-ft-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1;
}
.lp-ft-card__label {
	color: #a1a1aa;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}
.lp-ft-card__label em {
	font-style: normal;
	color: #71717a;
	font-size: 0.78rem;
}
.lp-ft-card__value {
	color: #fafafa;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.lp-ft-card__corner {
	position: absolute;
	top: 14px;
	right: 16px;
	color: rgba(255,255,255,0.25);
	font-size: 12px;
	transition: color 0.2s ease, transform 0.2s ease;
}
.lp-ft-card:hover .lp-ft-card__corner {
	color: rgba(255,255,255,0.55);
}

/* ── 구분선 + 하단 ── */
.lp-ft-divider {
	height: 1px;
	background: rgba(255,255,255,0.08);
	margin: 48px 0 20px;
}
.lp-ft-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.lp-ft-copy {
	color: #71717a;
	font-size: 0.82rem;
	margin: 0;
	letter-spacing: 0.02em;
}
.lp-ft-links {
	display: flex;
	gap: 24px;
}
.lp-ft-links a {
	color: #a1a1aa;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: color 0.2s;
}
.lp-ft-links a:hover { color: #ffffff; }

/* ── 반응형 ── */
@media (max-width: 1100px) {
	.lp-footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
@media (max-width: 680px) {
	.lp-footer { padding: 48px 0 24px; }
	.lp-footer .lp-container { padding: 0 20px; }
	.lp-ft-contacts { grid-template-columns: 1fr; }
	.lp-ft-info {
		column-gap: 18px;
		row-gap: 8px;
		font-size: 0.84rem;
	}
	.lp-ft-legal { font-size: 0.92rem; margin-bottom: 24px; }
	.lp-ft-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
}

/* === 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__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;
	cursor: pointer;
	transition: background 0.22s, color 0.22s;
}
.lp-fab__item + .lp-fab__item {
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.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;
}

@media (max-width: 1200px) {
	.lp-fab { right: 14px; }
}
@media (max-width: 640px) {
	.lp-fab { display: none; }
}

/* ═══════════════════════════════════════════════
   HERO SHOWCASE  (hs-)
   ─ 100vh 올인원 기능 애니메이션 쇼케이스
═══════════════════════════════════════════════ */

.hs-wrap {
	position: relative;
	display: flex;
	align-items: stretch;
	height: 100vh;
	padding-top: 62px;
	box-sizing: border-box;
	background: #0f172a;
	background-image:
		radial-gradient(ellipse at 25% 60%, var(--hs-glow, rgba(45,212,191,0.07)) 0%, transparent 55%),
		radial-gradient(ellipse at 78% 28%, rgba(99,102,241,0.05) 0%, transparent 45%),
		radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: auto, auto, 36px 36px;
	overflow: hidden;
	transition: background-image 1.4s ease;
}

/* ── Left Panel ── */
.hs-left {
	width: 34%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 5%;
}
.hs-left::after {
	content: '';
	position: absolute;
	right: 0; top: 10%; bottom: 10%;
	width: 1px;
	background: linear-gradient(to bottom,
		transparent,
		rgba(255,255,255,0.07) 30%,
		rgba(255,255,255,0.07) 70%,
		transparent);
}
.hs-left-inner { width: 100%; max-width: 480px; }

.hs-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(45,212,191,0.1);
	border: 1px solid rgba(45,212,191,0.22);
	color: #2dd4bf;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 100px;
	margin-bottom: 18px;
	width: fit-content;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.4s both;
}
.hs-badge-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #2dd4bf;
	animation: hsPulse 2.2s ease-in-out infinite;
}

.hs-title {
	font-size: clamp(2rem, 2.8vw, 3.4rem);
	font-weight: 900;
	color: #f1f5f9;
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.6s both;
}
.hs-title em { font-style: normal; color: #2dd4bf; }

.hs-sub {
	font-size: 1.05rem;
	color: #cbd5e1;
	line-height: 1.75;
	margin-bottom: 26px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.8s both;
}

.hs-cta {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.0s both;
}
.hs-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #2dd4bf;
	color: #0f172a;
	font-size: 1rem;
	font-weight: 700;
	padding: 13px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	white-space: nowrap;
}
.hs-btn-primary:hover { background: #5eead4; transform: translateY(-1px); }
.hs-btn-ghost {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #94a3b8;
	font-size: 1rem;
	font-weight: 600;
	padding: 13px 26px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}
.hs-btn-ghost:hover { background: rgba(255,255,255,0.09); color: #e2e8f0; }

/* ── Progress ── */
.hs-prog {
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.2s both;
}
.hs-prog-bar {
	width: 100%;
	height: 2px;
	background: rgba(255,255,255,0.07);
	border-radius: 1px;
	overflow: hidden;
	margin-bottom: 10px;
}
.hs-prog-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, #2dd4bf, #818cf8);
	border-radius: 1px;
}
.hs-prog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 11px;
}
.hs-prog-num {
	font-size: 0.82rem;
	color: #475569;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	min-width: 38px;
}
.hs-prog-label {
	font-size: 0.95rem;
	color: #2dd4bf;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.hs-dots { display: flex; gap: 5px; flex-wrap: wrap; }
.hs-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	transition: background 0.3s, transform 0.3s;
	flex-shrink: 0;
}
.hs-dot--active  { background: #2dd4bf; transform: scale(1.45); }
.hs-dot--done    { background: rgba(45,212,191,0.3); }

/* ── Right Panel ── */
.hs-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 5% 20px 5%;
	min-width: 0;
	min-height: 0;
}

/* ── 12 카드 그리드 ── */
.hs-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	max-height: 100%;
	overflow-y: auto;
	/* 호버 시 카드가 translateY(-2px) + box-shadow 까지 보이도록 위/아래 여백 확보 */
	padding: 8px 4px 8px 0;
}
.hs-cards::-webkit-scrollbar { width: 6px; }
.hs-cards::-webkit-scrollbar-track { background: transparent; }
.hs-cards::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 3px; }
.hs-cards::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }

.hs-fc {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	padding: 18px 16px 16px;
	text-decoration: none;
	overflow: hidden;
	backdrop-filter: blur(8px);
	min-height: 220px;
	/* 진입 시 숨김 (.is-in 추가되며 등장) */
	opacity: 0;
	translate: 0 14px;
	transition:
		opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		translate 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.18s,
		border-color 0.18s,
		background 0.18s,
		box-shadow 0.18s;
}
.hs-fc.is-in {
	opacity: 1;
	translate: 0 0;
}
.hs-fc::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 2px;
	background: var(--fc-color, #2dd4bf);
	opacity: 0.4;
}
.hs-fc:hover {
	transform: translateY(-2px);
	border-color: var(--fc-color, rgba(45,212,191,0.4));
	background: rgba(255,255,255,0.045);
	box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--fc-color, transparent) inset;
}
.hs-fc:hover::before { opacity: 0.85; }

/* 핀 배지 */
.hs-fc-pin {
	position: absolute;
	top: 12px; left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 4px 12px rgba(248,113,113,0.28);
}
.hs-fc-pin i { font-size: 0.6rem; }
.hs-fc-pin--rank1 {
	background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
	color: #422006;
	box-shadow: 0 4px 12px rgba(250,204,21,0.32);
}

/* NN/12 카운터 */
.hs-fc-counter {
	position: absolute;
	top: 12px; right: 12px;
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	padding: 4px 9px;
	border-radius: 6px;
	background: rgba(15,23,42,0.5);
	border: 1px solid rgba(255,255,255,0.07);
	font-variant-numeric: tabular-nums;
}
.hs-fc-counter-num { font-size: 0.9rem; font-weight: 800; color: #f1f5f9; }
.hs-fc-counter-sep, .hs-fc-counter-total { font-size: 0.74rem; color: rgba(148,163,184,0.65); font-weight: 600; }

/* 아이콘 */
.hs-fc-icon {
	width: 48px; height: 48px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fc-bg);
	color: var(--fc-color);
	font-size: 20px;
	margin-bottom: 14px;
}

/* 타이틀·설명 */
.hs-fc-title {
	font-size: 1.22rem;
	font-weight: 900;
	color: #f1f5f9;
	line-height: 1.34;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}
.hs-fc-desc {
	font-size: 0.88rem;
	color: rgba(226,232,240,0.82);
	line-height: 1.6;
	margin-bottom: 14px;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* meta 칩 */
.hs-fc-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: auto;
}
.hs-fc-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ── Spotlight ── */
.hs-spotlight {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	position: relative;
}
.hs-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 22px;
	padding: 38px 44px;
	text-align: center;
	width: 100%;
	max-width: 450px;
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
	/* base: invisible */
	opacity: 0;
	transform: scale(0.88) translateY(14px);
	transition: opacity 0s, transform 0s;
}
.hs-card--in {
	opacity: 1;
	transform: scale(1) translateY(0);
	transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.hs-card--out {
	opacity: 0;
	transform: scale(0.82) translateY(8px);
	transition: opacity 0.32s ease-in, transform 0.32s ease-in;
}
.hs-card--finale {
	border-color: rgba(45,212,191,0.2) !important;
	box-shadow:
		0 24px 64px rgba(0,0,0,0.5),
		0 0 60px rgba(45,212,191,0.1),
		0 0 0 1px rgba(45,212,191,0.1);
}

/* ── Spotlight 내부 요소 ── */
.hs-sl-icon {
	width: 80px; height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: background 0.3s, color 0.3s;
	font-size: 20px;
}
.hs-sl-name {
	font-size: clamp(1.4rem, 1.6vw, 1.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
	line-height: 1.2;
}
.hs-sl-desc {
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}
.hs-sl-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.77rem;
	font-weight: 700;
	opacity: 0;
	transform: scale(0.8) translateY(4px);
	transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
	pointer-events: none;
}
.hs-sl-badge.show { opacity: 1; transform: scale(1) translateY(0); }

/* ── Finale 카드 ── */
.hs-finale {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.hs-finale-star {
	width: 80px; height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(45,212,191,0.12);
	color: #2dd4bf;
	margin-bottom: 4px;
	font-size: 28px;
}
.hs-finale h3 {
	font-size: clamp(1.4rem, 1.6vw, 1.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin-bottom: 4px;
}
.hs-finale p { font-size: 0.88rem; color: #64748b; }

/* ── 기능 그리드 ── */
.hs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
	flex-shrink: 0;
	padding-top: 12px;
}
.hs-gc {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 11px;
	border-radius: 10px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	text-decoration: none;
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	overflow: hidden;
}
.hs-gc:hover {
	border-color: rgba(45,212,191,0.28);
	background: rgba(45,212,191,0.05);
	transform: translateY(-1px);
}
.hs-gc--wide { grid-column: span 2; }
/* 현재 스포트라이트가 비추는 카드 — 살짝 강조 */
.hs-gc--current {
	border-color: rgba(45,212,191,0.45);
	background: rgba(45,212,191,0.06);
	box-shadow: 0 0 16px rgba(45,212,191,0.18);
}
/* 피날레 — 12개 모두 한번에 빛남 */
.hs-gc--glow {
	border-color: rgba(45,212,191,0.55) !important;
	background: rgba(45,212,191,0.08) !important;
	box-shadow: 0 0 18px rgba(45,212,191,0.18);
	transition: box-shadow 0.4s, border-color 0.4s, background 0.4s;
}
.hs-gc-icon {
	width: 28px; height: 28px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 12px;
}
.hs-gc-name {
	font-size: 0.71rem;
	font-weight: 600;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

/* =====================================================
   엔드급 추가: 국내 최초 / 1위 컨셉
   ===================================================== */

/* 배경 떠다니는 orbs (멀티 컬러 글로우) */
.hs-bg-deco {
	position: absolute; inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}
.hs-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.32;
	animation: hsFloat 14s ease-in-out infinite;
}
.hs-bg-orb--1 {
	width: 420px; height: 420px;
	left: -120px; top: 12%;
	background: radial-gradient(circle, rgba(45,212,191,0.5) 0%, transparent 65%);
	animation-delay: 0s;
}
.hs-bg-orb--2 {
	width: 360px; height: 360px;
	right: -80px; top: 40%;
	background: radial-gradient(circle, rgba(129,140,248,0.45) 0%, transparent 65%);
	animation-delay: -4s;
}
.hs-bg-orb--3 {
	width: 280px; height: 280px;
	left: 38%; bottom: -80px;
	background: radial-gradient(circle, rgba(251,191,36,0.32) 0%, transparent 65%);
	animation-delay: -8s;
}
@keyframes hsFloat {
	0%, 100% { transform: translateY(0) translateX(0); }
	50%      { transform: translateY(-22px) translateX(14px); }
}

.hs-left-inner, .hs-right { position: relative; z-index: 1; }

/* ── badge 강화 ── */
.hs-badge {
	background: linear-gradient(120deg, rgba(45,212,191,0.18), rgba(129,140,248,0.18));
	border: 1px solid rgba(45,212,191,0.35);
	color: #5eead4;
	box-shadow: 0 8px 28px rgba(45,212,191,0.16);
	padding: 8px 18px;
	gap: 10px;
}
.hs-badge-star {
	color: #fbbf24;
	font-size: 11px;
	filter: drop-shadow(0 0 6px rgba(251,191,36,0.65));
}
.hs-badge-divider {
	width: 1px; height: 12px;
	background: rgba(255,255,255,0.16);
}
.hs-badge-tail {
	color: rgba(226,232,240,0.65);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0;
	text-transform: none;
	padding-right: 10px;
}

/* ── 헤드라인 (임팩트형: 핀 칩 + 메인 타이틀 2줄) ── */
.hs-title {
	font-size: clamp(2.4rem, 4.2vw, 4.4rem);
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 16px;
}
.hs-title-flag-row {
	display: flex;
	align-items: center;
}
.hs-title-flag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 800;
	color: #fbbf24;
	background: linear-gradient(135deg, rgba(251,191,36,0.16), rgba(248,113,113,0.16));
	border: 1px solid rgba(251,191,36,0.4);
	padding: 7px 14px;
	border-radius: 999px;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 22px rgba(251,191,36,0.22);
	white-space: nowrap;
}
.hs-title-flag i {
	font-size: 0.78rem;
	filter: drop-shadow(0 0 6px rgba(251,191,36,0.7));
}
.hs-title-main {
	display: block;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: #f1f5f9;
}
.hs-title em {
	font-style: normal;
	background: linear-gradient(120deg, #2dd4bf 0%, #5eead4 50%, #818cf8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* sub 강조 — "케어하자" 그라디언트 + 키 업 */
.hs-sub em {
	font-style: normal;
	font-weight: 900;
	font-size: 1.35em;
	letter-spacing: -0.02em;
	background: linear-gradient(120deg, #2dd4bf 0%, #5eead4 35%, #818cf8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 14px rgba(45,212,191,0.35));
	padding: 0 2px;
}

/* ── 칩 라인 ── */
.hs-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 22px;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 0.85s both;
}
.hs-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.09);
	color: #cbd5e1;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.hs-chip i { font-size: 0.78rem; color: #5eead4; }
.hs-chip--more {
	background: rgba(45,212,191,0.1);
	border-color: rgba(45,212,191,0.28);
	color: #2dd4bf;
}

/* ── trust footer ── */
.hs-trust {
	margin-top: 18px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 12px;
	font-size: 0.78rem;
	color: rgba(148,163,184,0.7);
	font-weight: 500;
	opacity: 0;
	animation: hsFadeUp 0.5s ease 1.4s both;
	flex-wrap: wrap;
}
.hs-trust-item {
	display: inline-flex; align-items: center; gap: 6px;
}
.hs-trust-item i { font-size: 0.75rem; color: rgba(94,234,212,0.55); }
.hs-trust-sep {
	width: 3px; height: 3px;
	border-radius: 50%;
	background: rgba(148,163,184,0.3);
}

/* ── 카드 핀 배지 ── */
.hs-card { position: relative; }
.hs-card-pin {
	position: absolute;
	top: 14px; left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 6px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 6px 18px rgba(248,113,113,0.34);
	z-index: 2;
}
.hs-card-pin i { font-size: 0.65rem; }
.hs-card-pin--rank1 {
	background: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
	color: #422006;
	box-shadow: 0 6px 18px rgba(250,204,21,0.4);
}

/* ── 카드 카운터 (NN / 12) ── */
.hs-card-counter {
	position: absolute;
	top: 14px; right: 14px;
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	padding: 5px 10px;
	border-radius: 6px;
	background: rgba(15,23,42,0.45);
	border: 1px solid rgba(255,255,255,0.07);
	font-variant-numeric: tabular-nums;
	z-index: 2;
}
.hs-card-counter-num {
	font-size: 0.95rem;
	font-weight: 800;
	color: #f1f5f9;
}
.hs-card-counter-sep, .hs-card-counter-total {
	font-size: 0.74rem;
	color: rgba(148,163,184,0.65);
	font-weight: 600;
}

/* ── 카드 본문 — firstClaim 헤드라인용 사이즈 조정 ── */
.hs-card { padding-top: 60px; }
.hs-sl-name {
	font-size: clamp(1.3rem, 1.55vw, 1.6rem);
	line-height: 1.3;
}
.hs-sl-icon { margin-top: 4px; }

/* ── meta 칩 (근거) ── */
.hs-sl-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 4px 0 16px;
	min-height: 22px;
}
.hs-sl-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 3px 9px;
	border-radius: 6px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ── 그리드 카드 — 순번 라벨 ── */
.hs-gc { padding: 9px 10px 9px 8px; gap: 6px; position: relative; }
.hs-gc-rank {
	width: 16px;
	font-size: 0.62rem;
	font-weight: 800;
	color: rgba(148,163,184,0.45);
	font-variant-numeric: tabular-nums;
	text-align: center;
	flex-shrink: 0;
}
.hs-gc--current .hs-gc-rank {
	color: rgba(45,212,191,0.85);
}

/* ── 피날레 핀 ── */
.hs-finale-pin {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f87171 0%, #fbbf24 100%);
	color: #1e1b00;
	font-size: 0.72rem;
	font-weight: 800;
	margin-bottom: 6px;
	box-shadow: 0 6px 18px rgba(248,113,113,0.3);
}

/* ── 키프레임 ── */
@keyframes hsFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes hsPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.45; transform: scale(0.75); }
}

/* ── 반응형 ── */
@media (max-width: 1280px) {
	.hs-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
	.hs-fc { min-height: 220px; padding: 18px 16px 16px; }
	.hs-fc-title { font-size: 1.14rem; }
}
@media (max-width: 1100px) {
	.hs-left { padding: 0 5%; }
	.hs-right { padding: 20px 5% 18px 5%; }
	.hs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hs-fc { min-height: auto; }
}
@media (max-width: 860px) {
	.hs-wrap { flex-direction: column; height: auto; min-height: 100vh; }
	.hs-left { width: 100%; padding: 28px 24px 16px; }
	.hs-left::after { display: none; }
	.hs-right { padding: 0 16px 28px; }
	.hs-title { font-size: 2.4rem; gap: 12px; }
	.hs-title-flag { font-size: 0.78rem; padding: 6px 12px; }
	.hs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; }
	.hs-bg-orb { opacity: 0.22; }
	.hs-badge-divider, .hs-badge-tail { display: none; }
}
@media (max-width: 520px) {
	.hs-title { font-size: 1.95rem; gap: 10px; margin-bottom: 12px; }
	.hs-title-flag { font-size: 0.72rem; padding: 5px 11px; }
	.hs-cards { grid-template-columns: 1fr; }
	.hs-cta { display: none; }
	.hs-chips { gap: 4px; }
	.hs-chip { padding: 5px 9px; font-size: 0.7rem; }
	.hs-fc { padding: 14px 14px 14px; }
	.hs-fc-counter { font-size: 0.62rem; padding: 3px 8px; }
	.hs-trust { font-size: 0.68rem; }
}

/* =====================================================
   Section 2 — 차별점 (Why 케어하자)
   ===================================================== */
.s2-wrap {
	position: relative;
	background: #0b1224;
	background-image:
		radial-gradient(ellipse at 80% 20%, rgba(129,140,248,0.06) 0%, transparent 55%),
		radial-gradient(ellipse at 15% 85%, rgba(45,212,191,0.05) 0%, transparent 50%),
		radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: auto, auto, 36px 36px;
	padding: 120px 4% 140px;
	overflow: hidden;
}
.s2-inner {
	max-width: 1240px;
	margin: 0 auto;
}
.s2-head {
	text-align: center;
	margin-bottom: 72px;
}
.s2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(129,140,248,0.1);
	border: 1px solid rgba(129,140,248,0.2);
	color: #a5b4fc;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 22px;
}
.s2-eyebrow::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #818cf8;
	box-shadow: 0 0 10px #818cf8;
}
.s2-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 18px;
}
.s2-title em {
	font-style: normal;
	background: linear-gradient(135deg, #818cf8, #2dd4bf);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.s2-sub {
	font-size: 1.1rem;
	color: #94a3b8;
	line-height: 1.6;
	max-width: 620px;
	margin: 0 auto;
}
.s2-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.s2-card {
	position: relative;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 22px;
	padding: 40px 38px;
	backdrop-filter: blur(12px);
	transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
	overflow: hidden;
}
.s2-card::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(135deg, var(--s2-color, #818cf8) 0%, transparent 50%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.35s;
	pointer-events: none;
}
.s2-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255,255,255,0.12);
	box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 80px var(--s2-glow, rgba(129,140,248,0.15));
}
.s2-card:hover::before { opacity: 0.6; }

.s2-icon {
	width: 64px; height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 22px;
	background: var(--s2-bg, rgba(129,140,248,0.15));
	color: var(--s2-color, #818cf8);
}
.s2-card-title {
	font-size: 1.45rem;
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.01em;
	margin: 0 0 12px;
	line-height: 1.3;
}
.s2-card-desc {
	font-size: 0.98rem;
	color: #94a3b8;
	line-height: 1.65;
	margin: 0 0 20px;
}
.s2-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 8px;
	background: var(--s2-bg, rgba(129,140,248,0.12));
	color: var(--s2-color, #a5b4fc);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.s2-tag i { font-size: 0.75rem; }

/* =====================================================
   Section 2 — 비교 그래프 (도입 후 변화) — A 고도화
   ===================================================== */
.cmp-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 32px;
}

/* ── 카드: Glow 테두리 + 그라데이션 메쉬 배경 ───────────── */
.cmp-card {
	position: relative;
	background:
		radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--cmp-color) 14%, transparent), transparent 55%),
		radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--cmp-color) 7%, transparent), transparent 60%),
		linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	padding: 26px 22px;
	overflow: hidden;
	backdrop-filter: blur(10px);

	/* 스프링 등장 — Section 2 카드 진입 */
	opacity: 0;
	transform: translateY(36px) scale(0.96);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
		border-color 0.3s,
		box-shadow 0.4s;
}
.cmp-card.is-in {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Glow 테두리 (gradient border via mask) — 항상 isolated layer, hover 시 강해짐 */
.cmp-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg,
		color-mix(in srgb, var(--cmp-color) 70%, transparent) 0%,
		color-mix(in srgb, var(--cmp-color) 10%, transparent) 30%,
		transparent 70%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.4s;
}
.cmp-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%,
			color-mix(in srgb, var(--cmp-color) 12%, transparent),
			transparent 70%);
	opacity: 0;
	transition: opacity 0.45s;
	pointer-events: none;
}
.cmp-card:hover {
	border-color: rgba(255,255,255,0.13);
	box-shadow:
		0 24px 56px rgba(0,0,0,0.45),
		0 0 60px color-mix(in srgb, var(--cmp-color) 18%, transparent);
}
.cmp-card:hover::before { opacity: 0.85; }
.cmp-card:hover::after  { opacity: 1; }

.cmp-card-head {
	position: relative; z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}
.cmp-card-icon {
	width: 36px; height: 36px;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	background: var(--cmp-bg);
	color: var(--cmp-color);
	font-size: 15px;
	flex-shrink: 0;
	box-shadow: 0 0 16px color-mix(in srgb, var(--cmp-color) 25%, transparent);
}
.cmp-card-title {
	font-size: 0.95rem;
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

/* ── 델타 큰 숫자 (Manrope + 오도미터 릴) ───────────────── */
.cmp-delta {
	position: relative; z-index: 1;
	display: flex;
	align-items: baseline;
	gap: 2px;
	font-family: 'Manrope', 'Pretendard Variable', Pretendard, sans-serif;
	font-weight: 800;
	color: var(--cmp-color);
	letter-spacing: -0.04em;
	margin-bottom: 22px;
	line-height: 1;
	filter: drop-shadow(0 0 22px color-mix(in srgb, var(--cmp-color) 35%, transparent));
}
.cmp-delta-sign { font-size: 2.1rem; }
.cmp-delta-num  {
	font-size: 3.2rem;
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: baseline;
}
.cmp-delta-unit {
	font-size: 1.2rem;
	margin-left: 4px;
	color: rgba(241,245,249,0.7);
	font-weight: 700;
	font-family: 'Manrope', 'Pretendard Variable', Pretendard, sans-serif;
}

/* 오도미터 릴 — 각 자리수를 회전 가능한 컬럼으로 */
.cmp-num-digit {
	display: inline-block;
	height: 1em;
	width: 0.62em;
	overflow: hidden;
	vertical-align: top;
	line-height: 1;
	position: relative;
}
.cmp-num-strip {
	display: block;
	transform: translateY(0);
	will-change: transform;
	transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cmp-num-strip > span {
	display: block;
	height: 1em;
	line-height: 1;
	text-align: center;
}

/* ── 막대 비교 (2-row, 기존 / 케어하자) ─────────────────── */
.cmp-bars {
	position: relative; z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px;
}
.cmp-bar-row {
	display: grid;
	grid-template-columns: 56px 1fr 44px;
	align-items: center;
	gap: 10px;
}
.cmp-bar-label {
	font-size: 0.72rem;
	color: rgba(148,163,184,0.85);
	font-weight: 600;
	letter-spacing: -0.01em;
}
.cmp-bar-track {
	height: 8px;
	background: rgba(255,255,255,0.05);
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}
.cmp-bar-fill {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg,
		color-mix(in srgb, var(--cmp-color) 55%, white),
		var(--cmp-color));
	border-radius: 999px;
	transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow:
		inset 0 0 8px color-mix(in srgb, var(--cmp-color) 55%, transparent),
		0 0 12px color-mix(in srgb, var(--cmp-color) 45%, transparent);
	position: relative;
	overflow: hidden;
}
.cmp-bar-fill--gray {
	background: linear-gradient(90deg, rgba(148,163,184,0.32), rgba(148,163,184,0.52));
	box-shadow: none;
}
.cmp-bar-fill--red {
	background: linear-gradient(90deg, #f87171, #fb923c);
}
/* 등장 직후 컬러 막대에 1회 shimmer 패스 */
.cmp-bar-fill:not(.cmp-bar-fill--gray)::after {
	content: '';
	position: absolute;
	top: 0; left: -40%;
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
	opacity: 0;
}
.cmp-card.is-in .cmp-bar-fill:not(.cmp-bar-fill--gray)::after {
	animation: cmpShimmer 1.4s ease-out 1.0s 1 forwards;
}
@keyframes cmpShimmer {
	0%   { transform: translateX(0);    opacity: 0; }
	30%  { opacity: 1; }
	100% { transform: translateX(350%); opacity: 0; }
}
.cmp-bar-val {
	font-family: 'Manrope', 'Pretendard Variable', Pretendard, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	color: #e2e8f0;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.cmp-card-foot {
	position: relative; z-index: 1;
	font-size: 0.72rem;
	color: rgba(148,163,184,0.6);
	letter-spacing: -0.01em;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 12px;
}

.cmp-disclaimer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.78rem;
	color: rgba(148,163,184,0.65);
	letter-spacing: -0.01em;
	padding-top: 14px;
}
.cmp-disclaimer i { color: rgba(94,234,212,0.6); }

/* 반응형 */
@media (max-width: 1100px) {
	.cmp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
	.cmp-grid { grid-template-columns: 1fr; }
	.cmp-delta-num { font-size: 2.6rem; }
	.cmp-delta-sign { font-size: 1.7rem; }
}

/* =====================================================
   Section 3 — 사용 흐름 + 무료 체험 CTA
   ===================================================== */
.s3-wrap {
	position: relative;
	background: #0a0f1f;
	background-image:
		radial-gradient(ellipse at 50% 0%, rgba(45,212,191,0.08) 0%, transparent 60%),
		radial-gradient(ellipse at 100% 100%, rgba(129,140,248,0.06) 0%, transparent 50%);
	padding: 120px 4% 140px;
	overflow: hidden;
}
.s3-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.s3-head {
	text-align: center;
	margin-bottom: 72px;
}
.s3-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(45,212,191,0.1);
	border: 1px solid rgba(45,212,191,0.2);
	color: #5eead4;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 22px;
}
.s3-eyebrow::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #2dd4bf;
	box-shadow: 0 0 10px #2dd4bf;
}
.s3-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}
.s3-title em {
	font-style: normal;
	background: linear-gradient(135deg, #2dd4bf, #818cf8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.s3-sub {
	font-size: 1.1rem;
	color: #94a3b8;
	line-height: 1.6;
	max-width: 580px;
	margin: 0 auto;
}
.s3-flow {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	gap: 0;
	align-items: stretch;
	margin-bottom: 80px;
}
.s3-step {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	padding: 36px 30px;
	text-align: center;
	transition: transform 0.3s, border-color 0.3s;
	position: relative;
}
.s3-step:hover {
	transform: translateY(-4px);
	border-color: rgba(45,212,191,0.25);
}
.s3-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #2dd4bf, #818cf8);
	color: #0a0f1f;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
.s3-step-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #f1f5f9;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.s3-step-desc {
	font-size: 0.95rem;
	color: #94a3b8;
	line-height: 1.6;
	margin: 0;
}
.s3-step-meta {
	margin-top: 16px;
	font-size: 0.82rem;
	color: #5eead4;
	font-weight: 700;
}
.s3-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	font-size: 1.2rem;
	padding: 0 8px;
}

/* CTA 박스 */
.s3-cta {
	background: linear-gradient(135deg,
		rgba(45,212,191,0.1) 0%,
		rgba(129,140,248,0.1) 100%);
	border: 1px solid rgba(45,212,191,0.25);
	border-radius: 28px;
	padding: 60px 48px;
	text-align: center;
	backdrop-filter: blur(16px);
	box-shadow: 0 32px 80px rgba(0,0,0,0.4),
		0 0 80px rgba(45,212,191,0.08);
	position: relative;
	overflow: hidden;
}
.s3-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(45,212,191,0.18) 0%, transparent 60%);
	pointer-events: none;
}
.s3-cta-content { position: relative; z-index: 1; }
.s3-cta-title {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	font-weight: 800;
	color: #f1f5f9;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	line-height: 1.3;
	word-break: keep-all;
}
.s3-cta-title em {
	font-style: normal;
	color: #2dd4bf;
}
.s3-cta-sub {
	font-size: 1.05rem;
	color: #cbd5e1;
	line-height: 1.6;
	margin: 0 0 32px;
	word-break: keep-all;
}
.s3-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #2dd4bf, #818cf8);
	color: #0a0f1f;
	font-size: 1.1rem;
	font-weight: 800;
	padding: 18px 38px;
	border-radius: 14px;
	text-decoration: none;
	letter-spacing: -0.01em;
	box-shadow: 0 12px 32px rgba(45,212,191,0.3);
	transition: transform 0.2s, box-shadow 0.2s;
}
.s3-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(45,212,191,0.45);
}
.s3-cta-btn i { font-size: 0.95rem; }
.s3-cta-note {
	margin-top: 22px;
	font-size: 0.88rem;
	color: #94a3b8;
	word-break: keep-all;
}
.s3-cta-note i {
	color: #2dd4bf;
	margin-right: 5px;
}

/* ─── 반응형 ─── */
@media (max-width: 980px) {
	.s2-wrap, .s3-wrap { padding: 80px 4% 100px; }
	.s2-grid { gap: 20px; }
	.s2-card { padding: 32px 28px; }
	.s3-flow {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.s3-arrow {
		transform: rotate(90deg);
		padding: 4px 0;
	}
	.s3-cta { padding: 48px 28px; }
}
@media (max-width: 640px) {
	.s2-wrap, .s3-wrap { padding: 64px 5% 80px; }
	.s2-head, .s3-head { margin-bottom: 48px; }
	.s2-grid { grid-template-columns: 1fr; }
	.s2-card { padding: 28px 24px; }
	.s2-icon { width: 56px; height: 56px; font-size: 20px; }
	.s2-card-title { font-size: 1.25rem; }
	.s3-step { padding: 28px 22px; }
	.s3-cta { padding: 36px 20px; border-radius: 22px; }
	.s3-cta-title { font-size: 1.45rem; line-height: 1.35; margin-bottom: 12px; }
	.s3-cta-sub { font-size: 0.95rem; margin-bottom: 24px; }
	.s3-cta-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 18px;
		font-size: 0.98rem;
		gap: 8px;
		white-space: nowrap;
	}
	.s3-cta-btn i { font-size: 0.9rem; }
	.s3-cta-note { font-size: 0.8rem; margin-top: 18px; line-height: 1.5; }
}

/* =====================================================
   PWA 설치 플로팅 버튼 — 모바일(≤640px) 전용
   데스크탑은 우측 .lp-fab 사이드 패널에 "앱으로 설치" 항목으로 제공.
   ===================================================== */
.pwa-install-fab {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 9000;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px 12px 16px;
	background: linear-gradient(135deg, #2dd4bf 0%, #10b981 100%);
	color: #042f2e;
	border: 0;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	cursor: pointer;
	box-shadow:
		0 12px 28px rgba(45,212,191,0.36),
		0 0 0 1px rgba(255,255,255,0.18) inset;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s;
	pointer-events: none;
}
.pwa-install-fab.is-shown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.pwa-install-fab:hover {
	box-shadow:
		0 14px 32px rgba(45,212,191,0.46),
		0 0 0 1px rgba(255,255,255,0.22) inset;
}
.pwa-install-fab > i { font-size: 0.95rem; }
.pwa-install-fab__text { white-space: nowrap; }

/* 데스크탑(>640px)에선 모바일 플로팅 버튼 숨김 */
@media (min-width: 641px) {
	.pwa-install-fab { display: none !important; }
}
@media (max-width: 540px) {
	.pwa-install-fab {
		bottom: 16px;
		right: 16px;
		padding: 11px 16px 11px 14px;
		font-size: 0.85rem;
	}
}

/* =====================================================
   가입상담 플로팅 버튼 — 모바일(≤640px) 전용
   데스크탑은 우측 .lp-fab 사이드 패널에 "가입상담" 항목으로 제공.
   ===================================================== */
.consult-call-fab {
	position: fixed;
	bottom: 22px;
	left: 22px;
	z-index: 9000;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px 12px 16px;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #fff;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	box-shadow:
		0 12px 28px rgba(37,99,235,0.36),
		0 0 0 1px rgba(255,255,255,0.18) inset;
	transition: box-shadow 0.2s, transform 0.2s;
}
.consult-call-fab:hover {
	transform: translateY(-1px);
	box-shadow:
		0 14px 32px rgba(37,99,235,0.46),
		0 0 0 1px rgba(255,255,255,0.22) inset;
}
.consult-call-fab > i { font-size: 0.95rem; }
.consult-call-fab__text { white-space: nowrap; }

@media (min-width: 641px) {
	.consult-call-fab { display: none !important; }
}
@media (max-width: 540px) {
	.consult-call-fab {
		bottom: 16px;
		left: 16px;
		padding: 11px 16px 11px 14px;
		font-size: 0.85rem;
	}
}

/* iOS 안내 모달 */
.pwa-ios-modal {
	position: fixed;
	inset: 0;
	z-index: 9500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.pwa-ios-modal.is-open { display: flex; }
.pwa-ios-modal__scrim {
	position: absolute;
	inset: 0;
	background: rgba(15,23,42,0.6);
	backdrop-filter: blur(3px);
}
.pwa-ios-modal__card {
	position: relative;
	background: #fff;
	border-radius: 18px;
	padding: 32px 26px 24px;
	width: 100%;
	max-width: 380px;
	box-shadow: 0 24px 60px rgba(0,0,0,0.4);
	animation: pwaIosIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pwaIosIn {
	from { opacity: 0; transform: translateY(12px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pwa-ios-modal__close {
	position: absolute;
	top: 12px; right: 12px;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: #64748b;
	cursor: pointer;
	font-size: 1rem;
}
.pwa-ios-modal__close:hover { background: #f1f5f9; }
.pwa-ios-modal__icon {
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
	border-radius: 16px;
	color: #0f172a;
	font-size: 26px;
	margin: 0 auto 14px;
}
.pwa-ios-modal__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	text-align: center;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}
.pwa-ios-modal__sub {
	font-size: 0.88rem;
	color: #64748b;
	text-align: center;
	margin-bottom: 22px;
}
.pwa-ios-modal__steps {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.pwa-ios-modal__steps li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #334155;
	line-height: 1.45;
}
.pwa-ios-modal__steps li:last-child { margin-bottom: 0; }
.pwa-ios-modal__steps i {
	color: #0ea5e9;
	margin: 0 2px;
}
.pwa-ios-modal__steps b { color: #0f172a; font-weight: 700; }
.pwa-ios-step-num {
	flex-shrink: 0;
	width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #0f172a;
	color: #fff;
	border-radius: 50%;
	font-size: 0.72rem;
	font-weight: 800;
}
.pwa-ios-modal__ok {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #2dd4bf 0%, #10b981 100%);
	border: 0;
	border-radius: 10px;
	color: #042f2e;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	cursor: pointer;
	transition: filter 0.15s;
}
.pwa-ios-modal__ok:hover { filter: brightness(1.06); }

/* =====================================================
   비교 매트릭스 (s3-wrap 내부)
   ===================================================== */
.cm-matrix {
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 32px;
}
.cm-row {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	align-items: stretch;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cm-row:last-child { border-bottom: none; }
.cm-row:not(.cm-row--head):hover {
	background: rgba(45,212,191,0.03);
}
.cm-row--head {
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	position: sticky;
	top: 0;
	z-index: 2;
}
.cm-cell {
	padding: 18px 18px;
	color: #cbd5e1;
	font-size: 0.92rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	border-left: 1px solid rgba(255,255,255,0.04);
}
.cm-cell:first-child { border-left: none; }
.cm-row--head .cm-cell {
	color: #94a3b8;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 16px 18px;
}
.cm-cell--feat {
	text-align: left;
	align-items: flex-start;
	gap: 2px;
	position: relative;
	padding-left: 22px;
}
.cm-row--head .cm-cell--feat {
	text-transform: none;
	letter-spacing: 0;
}
.cm-feat-icon {
	position: absolute;
	left: 22px;
	top: 18px;
	color: #5eead4;
	font-size: 1.05rem;
	opacity: 0.85;
}
.cm-cell--feat strong {
	display: block;
	color: #f1f5f9;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding-left: 32px;
}
.cm-cell--feat span {
	display: block;
	color: #94a3b8;
	font-size: 0.82rem;
	font-weight: 500;
	padding-left: 32px;
}
.cm-cell em {
	font-style: normal;
	font-size: 0.82rem;
	color: #94a3b8;
	font-weight: 500;
}
.cm-cell i {
	font-size: 1.15rem;
	margin-bottom: 2px;
}
.cm-c { color: #2dd4bf; }
.cm-w { color: #facc15; }
.cm-x { color: #ef4444; transition: color 0.3s; }

/* 미제공 셀 톤다운 — 케어하자가 상대적으로 더 빛나게 */
.cm-cell:not(.cm-cell--us):has(.cm-x) {
	opacity: 0.52;
	transition: opacity 0.3s;
}
.cm-cell:not(.cm-cell--us):has(.cm-x) .cm-x { color: rgba(148,163,184,0.7); }
.cm-cell:not(.cm-cell--us):has(.cm-x) em { color: rgba(148,163,184,0.7); }

/* 케어하자 컬럼 — Aura (메쉬 + glow border) */
.cm-cell--us {
	position: relative;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(45,212,191,0.16), transparent 70%),
		radial-gradient(ellipse at 50% 100%, rgba(129,140,248,0.10), transparent 75%),
		linear-gradient(180deg, rgba(45,212,191,0.10) 0%, rgba(45,212,191,0.05) 100%);
	border-left: 1px solid rgba(45,212,191,0.25);
	border-right: 1px solid rgba(45,212,191,0.25);
	box-shadow:
		inset 1px 0 0 rgba(94,234,212,0.18),
		inset -1px 0 0 rgba(94,234,212,0.18);
}
.cm-row--head .cm-cell--us {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(45,212,191,0.35), transparent 70%),
		linear-gradient(180deg, rgba(45,212,191,0.22) 0%, rgba(45,212,191,0.10) 100%);
	border-top: 2px solid rgba(45,212,191,0.6);
	box-shadow:
		inset 1px 0 0 rgba(94,234,212,0.3),
		inset -1px 0 0 rgba(94,234,212,0.3),
		0 -2px 18px rgba(45,212,191,0.25);
}
.cm-row:not(.cm-row--head):first-of-type .cm-cell--us {
	background:
		radial-gradient(ellipse at 50% -40%, rgba(45,212,191,0.22), transparent 70%),
		linear-gradient(180deg, rgba(45,212,191,0.13) 0%, rgba(45,212,191,0.05) 100%);
}
.cm-row:not(.cm-row--head):last-child .cm-cell--us {
	border-bottom: 1px solid rgba(45,212,191,0.28);
	box-shadow:
		inset 1px 0 0 rgba(94,234,212,0.18),
		inset -1px 0 0 rgba(94,234,212,0.18),
		0 8px 24px -8px rgba(45,212,191,0.25);
}
.cm-cell--us em {
	color: #f0fdfa;
	font-weight: 600;
}
.cm-cell--us .cm-c {
	filter: drop-shadow(0 0 8px rgba(45,212,191,0.55));
}

/* 행 호버 — 케어하자 셀의 ✓ 펄스 */
.cm-row:not(.cm-row--head):hover {
	background: rgba(45,212,191,0.04);
}
.cm-row:not(.cm-row--head):hover .cm-cell--us .cm-c {
	animation: cmPulse 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cm-row:not(.cm-row--head):hover .cm-cell:not(.cm-cell--us):has(.cm-x) {
	opacity: 0.38;
}
@keyframes cmPulse {
	0%   { transform: scale(1);    filter: drop-shadow(0 0 8px rgba(45,212,191,0.55)); }
	45%  { transform: scale(1.32); filter: drop-shadow(0 0 16px rgba(45,212,191,0.85)); }
	100% { transform: scale(1);    filter: drop-shadow(0 0 8px rgba(45,212,191,0.55)); }
}

/* ── 승률 요약 진행막대 (매트릭스 위) ─────────────────────── */
.cm-scorebar {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0 0 24px;
	padding: 20px 22px;
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 16px;
}
.cm-scorebar-row {
	display: grid;
	grid-template-columns: 90px 1fr 72px;
	align-items: center;
	gap: 14px;
}
.cm-scorebar-name {
	font-size: 0.86rem;
	font-weight: 700;
	color: rgba(203,213,225,0.75);
	letter-spacing: -0.01em;
}
.cm-scorebar-row--us .cm-scorebar-name {
	color: #5eead4;
	font-weight: 800;
}
.cm-scorebar-track {
	position: relative;
	height: 10px;
	background: rgba(255,255,255,0.05);
	border-radius: 999px;
	overflow: hidden;
}
.cm-scorebar-fill {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg,
		color-mix(in srgb, #2dd4bf 55%, white),
		#2dd4bf 60%,
		#818cf8 100%);
	box-shadow:
		inset 0 0 8px rgba(45,212,191,0.45),
		0 0 14px rgba(45,212,191,0.4);
	border-radius: 999px;
	transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cm-scorebar-fill--gray {
	background: linear-gradient(90deg, rgba(148,163,184,0.32), rgba(148,163,184,0.55));
	box-shadow: none;
}
.cm-scorebar-val {
	display: inline-flex;
	align-items: baseline;
	justify-content: flex-end;
	font-family: 'Manrope', 'Pretendard Variable', Pretendard, sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: #e2e8f0;
	font-variant-numeric: tabular-nums;
}
.cm-scorebar-val small {
	font-size: 0.78rem;
	color: rgba(148,163,184,0.7);
	font-weight: 700;
	margin-left: 2px;
}
.cm-scorebar-row--us .cm-scorebar-val { color: #f0fdfa; }
.cm-scorebar-row--us .cm-scorebar-val small { color: rgba(94,234,212,0.85); }

/* ── 하단 인사이트 카드 3장 ─────────────────────────────── */
.cm-insight {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 8px 0 64px;
}
.cm-insight-card {
	position: relative;
	padding: 22px 24px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	text-align: center;
	overflow: hidden;
}
.cm-insight-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg, rgba(255,255,255,0.12), transparent 50%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0.5;
}
.cm-insight-val {
	font-family: 'Manrope', 'Pretendard Variable', Pretendard, sans-serif;
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #f1f5f9;
	line-height: 1.1;
	margin-bottom: 6px;
	font-variant-numeric: tabular-nums;
}
.cm-insight-val small {
	font-size: 0.95rem;
	color: rgba(148,163,184,0.85);
	font-weight: 700;
}
.cm-insight-label {
	font-size: 0.86rem;
	color: rgba(148,163,184,0.85);
	letter-spacing: -0.01em;
}
.cm-insight-card--us {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(45,212,191,0.20), transparent 70%),
		linear-gradient(180deg, rgba(45,212,191,0.08), rgba(45,212,191,0.025));
	border-color: rgba(45,212,191,0.3);
}
.cm-insight-card--us .cm-insight-val { color: #5eead4; filter: drop-shadow(0 0 14px rgba(45,212,191,0.45)); }
.cm-insight-card--us .cm-insight-val small { color: rgba(94,234,212,0.8); }
.cm-insight-card--gold {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(251,191,36,0.18), transparent 70%),
		linear-gradient(180deg, rgba(251,191,36,0.07), rgba(251,191,36,0.02));
	border-color: rgba(251,191,36,0.28);
}
.cm-insight-card--gold .cm-insight-val { color: #fbbf24; filter: drop-shadow(0 0 14px rgba(251,191,36,0.4)); }
.cm-insight-card--gold .cm-insight-val small { color: rgba(252,211,77,0.85); }

@media (max-width: 720px) {
	.cm-scorebar { padding: 16px 14px; }
	.cm-scorebar-row { grid-template-columns: 64px 1fr 64px; gap: 10px; }
	.cm-scorebar-name { font-size: 0.78rem; }
	.cm-scorebar-val { font-size: 1rem; }
	.cm-insight { grid-template-columns: 1fr; gap: 10px; }
	.cm-insight-card { padding: 18px 16px; }
	.cm-insight-val { font-size: 2rem; }
}
.cm-us-chip {
	display: inline-block;
	padding: 5px 14px;
	background: linear-gradient(135deg, #2dd4bf, #818cf8);
	color: #0a0f1f;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: none;
}

/* 범례 */
.cm-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	justify-content: center;
	padding: 14px 16px;
	color: #94a3b8;
	font-size: 0.85rem;
	margin-bottom: 64px;
}
.cm-legend span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.cm-legend i {
	font-size: 0.95rem;
}
.cm-legend-note {
	flex-basis: 100%;
	text-align: center;
	color: #64748b;
	font-size: 0.78rem;
	margin-top: 4px;
}

/* 반응형 */
@media (max-width: 960px) {
	.cm-matrix {
		border-radius: 14px;
	}
	.cm-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2px;
		padding: 18px 16px;
		border-bottom: 1px solid rgba(255,255,255,0.07);
	}
	.cm-row--head { display: none; }
	.cm-cell {
		padding: 8px 10px;
		text-align: center;
		border-left: none;
		border-radius: 10px;
		background: rgba(255,255,255,0.025);
	}
	.cm-cell--feat {
		grid-column: 1 / -1;
		text-align: left;
		background: transparent;
		padding: 0 0 6px;
	}
	.cm-cell--feat strong {
		padding-left: 30px;
		font-size: 1.05rem;
	}
	.cm-cell--feat span { padding-left: 30px; }
	.cm-feat-icon {
		position: absolute;
		left: 0;
		top: 2px;
		font-size: 1.1rem;
	}
	.cm-cell[data-label]::before {
		content: attr(data-label);
		display: block;
		font-size: 0.7rem;
		font-weight: 700;
		color: #64748b;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		margin-bottom: 4px;
	}
	.cm-cell--us[data-label]::before { color: #5eead4; }
}

