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

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

:root {
	/* 헤더 높이 — 여기 하나만 고치면 히어로·갤러리 여백까지 따라온다.
	   종전에는 64px(헤더) 과 62px(본문 여백) 이 따로 적혀 있어 2px 씩 어긋나 있었다. */
	--lp-nav-h: 74px;
	/* 메뉴 묶음의 좌우 여백. 상단 칸과 드롭다운 열이 «같은 상자» 를 써야 열이 라벨 밑에 선다 —
	   패널은 absolute 라 부모의 padding 을 무시하므로 같은 값을 자기 padding 으로 다시 준다. */
	--lp-nav-pad: clamp(12px, 3vw, 64px);
	/* 메가 패널 여닫기 — 열림은 감속(ease-out)으로 부드럽게 내려앉고, 닫힘은 120ms 기다렸다 천천히 걷힌다 */
	--lp-ease-out: cubic-bezier(.22, .61, .36, 1);
	--lp-ease-io:  cubic-bezier(.4, 0, .2, 1);
	--lp-mega-open:  opacity .32s var(--lp-ease-out), transform .4s var(--lp-ease-out), visibility 0s;
	--lp-mega-close: opacity .28s var(--lp-ease-io) 120ms, transform .28s var(--lp-ease-io) 120ms, visibility 0s linear 400ms;
	--lp-col-open:   opacity .36s var(--lp-ease-out), transform .4s var(--lp-ease-out);
	--lp-col-close:  opacity .24s var(--lp-ease-io) 120ms, transform .24s var(--lp-ease-io) 120ms;
	--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: var(--lp-nav-h);
	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;
}
/* ── 상단 메뉴 ──────────────────────────────────────────────────────
   6칸을 «같은 폭» 으로 나눠 남는 폭을 다 쓴다(가운데 몰리지 않게).
   아래 드롭다운 패널의 열도 flex:1 1 0 이라 열이 제 라벨 바로 밑에 선다. */
.lp-nav-links {
	display: flex;
	flex: 1 1 auto;
	align-self: stretch;          /* 헤더 높이만큼 차야 패널이 헤더 바로 아래 붙는다 */
	align-items: stretch;
	position: relative;           /* 패널의 기준 */
	padding: 0 var(--lp-nav-pad);
	min-width: 0;
}
.lp-nav-item {
	flex: 1 1 0;
	display: flex;
	align-items: stretch;         /* 라벨(a)이 헤더 높이만큼 선다 → 밑줄 바가 헤더 아래끝에 닿고 호버 영역도 넓다 */
	justify-content: center;
	min-width: 0;
}
/* 호버한 라벨 밑에만 바가 가운데서 양쪽으로 퍼진다 (라벨 글 폭만큼) */
.lp-nav-item > a { position: relative; }
.lp-nav-item > a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s ease;
}
.lp-nav-item:hover > a::after,
.lp-nav-item:focus-within > a::after { transform: scaleX(1); }
.lp-nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-gray-800);
	letter-spacing: -0.01em;
	white-space: nowrap;
	transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--color-primary); }
.lp-nav-caret {
	font-size: 0.62em;
	opacity: .45;
	transition: transform .2s, opacity .2s;
}
.lp-nav-item:hover .lp-nav-caret,
.lp-nav-item:focus-within .lp-nav-caret { opacity: .7; transform: rotate(180deg); }

/* ── 호버 드롭다운(메가 패널) ───────────────────────────────────────
   여는 것은 CSS 가 한다 — 패널이 .lp-nav-links 의 «자식» 이라
   라벨 → 패널로 마우스가 내려가는 동안에도 :hover 가 끊기지 않는다. */
.lp-mega {
	position: absolute;
	top: 100%; left: 0; right: 0;
	display: flex;
	padding: 26px var(--lp-nav-pad) 34px;   /* 상단 칸과 같은 상자 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	/* 닫힘은 120ms 기다렸다가 — 라벨에서 패널로 대각선으로 내려가다 잠깐 벗어나도 깜빡이지 않는다.
	   열림은 즉시(아래 열림 규칙). visibility 는 페이드가 끝난 뒤(120+280ms) 꺼진다. */
	transition: var(--lp-mega-close);
	z-index: 5;
}
/* 배경은 화면 끝까지 — 열은 메뉴 폭에 맞추고 띠만 넓게 */
.lp-mega::before {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	left: -100vw; right: -100vw;
	background: #f3f8fd;
	border-bottom: 1px solid rgba(226,232,240,0.9);
	box-shadow: 0 14px 28px -18px rgba(15,23,42,.28);
	z-index: -1;
}
.lp-nav-links:hover .lp-mega,
.lp-nav-links:focus-within .lp-mega {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: var(--lp-mega-open);
}
/* 하위 없는 칸(ID/PW 찾기) 위에서는 패널을 열지 않는다 (:has 미지원 브라우저는 예전처럼 연다) */
.lp-nav-links:has(.lp-nav-item.is-leaf:hover) .lp-mega {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: var(--lp-mega-close);
}
.lp-mega-col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 0;
	/* 항목 상자를 열 폭보다 좁게 잡고 가운데로 모은다 — 라벨이 가운데 정렬이라
	   왼쪽 끝에 붙여 두면 라벨과 따로 노는 것처럼 보인다.
	   ★ 글자는 그대로 왼쪽 정렬이다(목록은 왼쪽으로 읽는다) — «가운데 정렬처럼 보이는» 것뿐. */
	align-items: center;
}
.lp-mega-col a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--color-gray-700);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	/* 행 전체가 알약 — 안여백만큼 음수 마진으로 당겨 글자 자리는 그대로(왼쪽 -10 / 위아래 -6).
	   오른쪽은 마진 0 → 알약 오른끝 = 열 내용 오른끝 = 카드 안쪽 4px */
	position: relative;
	width: 100%;
	max-width: 200px;          /* 열(약 250~285px)보다 좁게 — 위 라벨 아래로 모인다 */
	margin: -6px 0;
	padding: 6px 10px;
	border-radius: 8px;
	transition: background-color .15s ease, color .15s ease, padding-left .18s ease;
}
.lp-mega-col a:hover,
.lp-mega-col a:focus-visible {
	color: var(--color-primary);
	background: rgba(79, 70, 229, .08);
}
/* 넓은 화면에서만 글자가 3px 오른쪽으로 살짝 밀린다 (1400 이하는 긴 항목이 줄임표에 걸려 생략) */
@media (min-width: 1401px) {
	.lp-mega-col a:hover,
	.lp-mega-col a:focus-visible { padding-left: 13px; }
}

/* 열을 흰 카드로 띄우던 강조는 걷어냈다(2026-09-04 사장님 지시) —
   테두리가 진 상자가 메뉴 위에 겹쳐 무거웠다. 라벨 색·밑줄과 항목 호버 알약만으로 충분하다.
   (되살리려면 .lp-mega-col::before 흰 카드 + 라벨 N ~ 열 N 짝 규칙을 다시 넣으면 된다) */
.lp-mega-col { position: relative; }

/* ── 모션: 열이 30ms 간격으로 차례로 떠오른다. 닫힐 때는 패널과 함께 120ms 뒤 한꺼번에 ── */
.lp-mega-col {
	opacity: 0;
	transform: translateY(-6px);
	transition: var(--lp-col-close);
}
.lp-nav-links:hover .lp-mega-col,
.lp-nav-links:focus-within .lp-mega-col {
	opacity: 1;
	transform: none;
	transition: var(--lp-col-open);
}
.lp-nav-links:hover .lp-mega-col:nth-child(2),
.lp-nav-links:focus-within .lp-mega-col:nth-child(2) { transition-delay: 35ms; }
.lp-nav-links:hover .lp-mega-col:nth-child(3),
.lp-nav-links:focus-within .lp-mega-col:nth-child(3) { transition-delay: 70ms; }
.lp-nav-links:hover .lp-mega-col:nth-child(4),
.lp-nav-links:focus-within .lp-mega-col:nth-child(4) { transition-delay: 105ms; }
.lp-nav-links:hover .lp-mega-col:nth-child(5),
.lp-nav-links:focus-within .lp-mega-col:nth-child(5) { transition-delay: 140ms; }
.lp-nav-links:hover .lp-mega-col:nth-child(6),
.lp-nav-links:focus-within .lp-mega-col:nth-child(6) { transition-delay: 175ms; }
.lp-nav-links:has(.lp-nav-item.is-leaf:hover) .lp-mega-col {
	opacity: 0;
	transform: translateY(-6px);
	transition: var(--lp-col-close);
}
@media (prefers-reduced-motion: reduce) {
	.lp-mega, .lp-mega-col { transition-duration: 0s; }
}
/* 반대 방향: 열 N 에 들어가 있는 동안 라벨 N 의 색·바·캐럿을 유지 (:has 미지원 브라우저는 이 부분만 건너뜀) */
.lp-nav-links:has(.lp-mega-col:nth-child(1):hover) .lp-nav-item:nth-child(1) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(1):hover) .lp-nav-item:nth-child(1) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(1):hover) .lp-nav-item:nth-child(1) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }
.lp-nav-links:has(.lp-mega-col:nth-child(2):hover) .lp-nav-item:nth-child(2) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(2):hover) .lp-nav-item:nth-child(2) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(2):hover) .lp-nav-item:nth-child(2) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }
.lp-nav-links:has(.lp-mega-col:nth-child(3):hover) .lp-nav-item:nth-child(3) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(3):hover) .lp-nav-item:nth-child(3) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(3):hover) .lp-nav-item:nth-child(3) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }
.lp-nav-links:has(.lp-mega-col:nth-child(4):hover) .lp-nav-item:nth-child(4) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(4):hover) .lp-nav-item:nth-child(4) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(4):hover) .lp-nav-item:nth-child(4) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }
.lp-nav-links:has(.lp-mega-col:nth-child(5):hover) .lp-nav-item:nth-child(5) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(5):hover) .lp-nav-item:nth-child(5) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(5):hover) .lp-nav-item:nth-child(5) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }
.lp-nav-links:has(.lp-mega-col:nth-child(6):hover) .lp-nav-item:nth-child(6) > a { color: var(--color-primary); }
.lp-nav-links:has(.lp-mega-col:nth-child(6):hover) .lp-nav-item:nth-child(6) > a::after { transform: scaleX(1); }
.lp-nav-links:has(.lp-mega-col:nth-child(6):hover) .lp-nav-item:nth-child(6) .lp-nav-caret { opacity: .7; transform: rotate(180deg); }

/* 굵고 큰 6개라 폭이 줄면 한 단씩 낮춘다 (≤900px 부터는 햄버거) */
@media (max-width: 1400px) {
	.lp-nav-links a { font-size: 1rem; }
	.lp-mega-col a { font-size: 0.9rem; }
}
@media (max-width: 1150px) {
	:root { --lp-nav-pad: 12px; }
	.lp-nav-links a { font-size: 0.9375rem; }
	.lp-mega-col { padding: 0 2px 0 12px; gap: 10px; }
	/* 좁은 폭에서는 줄임표 대신 두 줄로 — «업무수행일지 자동 작성» 이 900~1050px 에서 잘리던 것 */
	.lp-mega-col a { margin-left: -8px; padding-left: 8px; white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.35; }
	.lp-mega-col a { font-size: 0.85rem; }
}
@media (max-width: 1000px) {
	.lp-nav-links a { font-size: 0.875rem; }
}

.lp-nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.lp-btn-nav {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border: 1.5px solid transparent;   /* 옆의 «로그인» 테두리 버튼과 높이를 맞춘다 */
	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: 600;
	color: #047857;
	background: #ffffff;
	border: 1.5px solid #a7f3d0;
	border-radius: var(--radius-full);
	transition: all 0.2s;
}
.lp-btn-nav-ghost:hover {
	color: #047857;
	background: #ecfdf5;
	border-color: #6ee7b7;
}
.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: var(--lp-nav-h); left: 0; right: 0;
	max-height: calc(100vh - var(--lp-nav-h));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	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: 13px 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-gray-700);
	border-bottom: 1px solid var(--color-gray-100);
}
/* 모바일 접이식 — <details>/<summary> 라 여는 스크립트가 없다 */
.lp-mm-acc { border-bottom: 1px solid var(--color-gray-100); }
.lp-mm-acc > summary {
	list-style: none;
	cursor: pointer;
	padding: 13px 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-gray-800);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.lp-mm-acc > summary::-webkit-details-marker { display: none; }
/* 접힘을 브라우저 기본 동작에만 맡기지 않는다 — 실측에서 닫힌 채로도 하위가 그려졌다.
   (Chrome 의 ::details-content 처리와 이 페이지의 플렉스 레이아웃이 겹치는 자리) */
.lp-mm-acc:not([open]) > .lp-mm-sub { display: none; }
.lp-mm-acc > summary i { font-size: .72em; opacity: .45; transition: transform .2s; }
.lp-mm-acc[open] > summary i { transform: rotate(180deg); }
.lp-mm-sub {
	display: block;
	padding: 10px 0 10px 14px;
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	border-left: 2px solid var(--color-gray-200);
	margin-left: 4px;
}
.lp-mm-sub:last-of-type { padding-bottom: 14px; }
.lp-mm-sub:hover { color: var(--color-primary); }
.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; }

/* 메뉴를 크고 굵게 두면 6개가 900px 아래에서 로고·버튼과 부딪친다 —
   억지로 줄이는 대신 그 아래는 햄버거로 넘긴다(종전 768px → 900px). */
@media (max-width: 900px) {
	.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);
	/* 로그인 창은 늘 맨 위 — 앱 다운로드 FAB(.apf, 800)·설치 안내(.apf-modal, 9500)보다 위에 선다.
	   종전 2000 이라 FAB 이 로그인 창을 덮었다(2026-09-04). */
	z-index: 9800;
	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;
}

/* 폼 — 브랜드 영역을 걷어내 폼이 모달 맨 위다. 닫기 버튼(top:16 · 36px)과 겹치지 않게 위를 비운다. */
.lp-login-form { padding: 58px 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;
	display: flex;
	align-items: center;
	justify-content: space-between;   /* 왼쪽 «기억» 체크 / 오른쪽 «찾기» 링크 */
	gap: 12px;
}
.lp-forgot {
	font-size: 0.85rem;
	color: var(--color-gray-500);
	white-space: nowrap;
	transition: color .15s;
}
.lp-forgot:hover { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.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); }

/* 간편로그인 — .env 에 키가 있는 제공자만 서버가 렌더한다(없으면 블록 자체가 없음) */
.lp-soc {
	padding: 0 32px;
	text-align: center;
}
/* 2×2 격자 — 1행 네이버·구글(사용 가능) / 2행 카카오·페이스북(잠금).
   순서는 include/social_login.php 의 soc_providers() 가 정한다. */
.lp-soc__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.lp-soc__btn {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 46px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
	transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
}
.lp-soc__ico { display: flex; align-items: center; flex: 0 0 auto; }
/* 「최근 로그인」 배지 — 마지막으로 «성공한» 제공자 버튼 위에만.
   서버가 ch_last_social 쿠키를 보고 그 버튼에만 심는다(index.php). */
.lp-soc__btn { position: relative; }
.lp-soc__last {
	position: absolute;
	/* 버튼 윗변에 «절반만» 걸친다 — 위 절반은 밖, 아래 절반은 버튼 안.
	   배지 높이를 몰라도 되도록 top:0 + translateY(-50%) 로 잡는다. */
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 3px 9px;
	border-radius: 999px;
	background: #1f2937;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.6;
	white-space: nowrap;
	pointer-events: none;
	/* 첫 그림자는 모달 배경색(#fff)과 같은 링 — 버튼 색 위에 얹혀도
	   테두리가 살아 «버튼에 박아 넣은» 모양으로 읽힌다. 브랜드색 4종 모두에서 통한다. */
	box-shadow: 0 0 0 2px #fff, 0 3px 8px -2px rgba(17,24,39,0.4);
	animation: lpSocLastIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes lpSocLastIn {
	from { opacity: 0; transform: translate(-50%, calc(-50% + 4px)); }
	to   { opacity: 1; transform: translate(-50%, -50%); }
}
/* 배지가 버튼 위로 반쯤 솟으므로 첫 줄 위를 비워 둔다(구분선과 겹치지 않게). */
.lp-soc__row { padding-top: 4px; }
.lp-soc__lb { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-soc__btn:hover { filter: brightness(0.97); transform: translateY(-1px); box-shadow: 0 6px 16px -6px rgba(17,24,39,0.28); }
.lp-soc__btn:active { transform: translateY(0); box-shadow: none; }
/* 브랜드 색 — 각 사 가이드라인 지정색. 임의로 바꾸면 심사에서 걸린다. */
.lp-soc__btn--kakao    { background: #FEE500; color: #191600; }
.lp-soc__btn--naver    { background: #03C75A; color: #ffffff; }
.lp-soc__btn--facebook { background: #1877F2; color: #ffffff; }
/* 구글만 흰 배경이라 테두리로 형태를 잡아 준다 */
.lp-soc__btn--google { background: #ffffff; color: #1f2937; box-shadow: inset 0 0 0 1px #dadce0; }
.lp-soc__btn--google:hover { box-shadow: inset 0 0 0 1px #dadce0, 0 6px 16px -6px rgba(17,24,39,0.28); }

/* 잠금(심사 대기 등) — 브랜드색을 빼고 눌리지 않게. 왜 못 쓰는지는 title 툴팁에 있다. */
.lp-soc__btn.is-locked {
	background: var(--color-gray-100);
	color: var(--color-gray-400);
	box-shadow: inset 0 0 0 1px var(--color-gray-200);
	cursor: default;
	pointer-events: none;
}
.lp-soc__btn.is-locked:hover { filter: none; transform: none; }
.lp-soc__btn.is-locked .lp-soc__ico { opacity: 0.45; filter: grayscale(1); }
.lp-soc__btn.is-locked em {
	display: block;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 700;
	color: var(--color-gray-400);
	margin-top: 1px;
}
.lp-soc__btn.is-locked .lp-soc__lb { line-height: 1.15; }
.lp-soc__note {
	margin: 12px 0 0;
	font-size: 0.78rem;
	color: var(--color-gray-400);
	line-height: 1.6;
}
.lp-soc__note b { color: var(--color-gray-500); font-weight: 700; }

/* 하단 */
.lp-modal-footer {
	padding: 0 32px 28px;
	text-align: center;
}
/* 간편로그인 블록이 있으면 그 아래 '또는' 구분선은 여백만 조금 준다 */
.lp-soc + .lp-modal-footer { padding-top: 20px; }
.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;
}

/* ── 폰에서는 «전체화면» 로그인 (2026-09-04) ──
   카드로 띄우면 화면이 좁아 아래가 잘리고(회원가입 줄이 화면 끝에 걸림) 떠 있는 버튼과도 겹친다.
   ≤768px 에서는 화면을 통째로 쓰고 내용이 길면 모달 안에서 스크롤한다. */
@media (max-width: 768px) {
	.lp-modal-overlay { align-items: stretch; justify-content: stretch; }
	.lp-modal {
		width: 100%;
		max-width: none;
		margin: 0;
		border-radius: 0;
		min-height: 100vh;
		min-height: 100dvh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: env(safe-area-inset-bottom, 0px);
		transform: translateY(22px);   /* 아래에서 올라오는 시트 */
		/* 내용이 화면보다 짧으면 가운데로 모은다 — auto 여백은 남는 자리가 없으면 0 이 되므로
		   내용이 길 때는 그대로 위에서부터 스크롤된다(잘림 없음). */
		display: flex;
		flex-direction: column;
	}
	.lp-modal .lp-login-form  { margin-top: auto; }
	.lp-modal .lp-modal-footer { margin-bottom: auto; }
	.lp-modal.show { transform: none; }
	/* 스크롤을 내려도 닫기 단추는 그 자리에 — 전체화면이라 «나가는 길» 이 늘 보여야 한다 */
	.lp-modal-close {
		position: fixed;
		top: calc(12px + env(safe-area-inset-top, 0px));
		right: 12px;
		background: rgba(255, 255, 255, .92);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}
}

/* 모달 모바일 */
@media (max-width: 480px) {
	.lp-modal { max-width: 100%; margin: 0; border-radius: 0; }
	.lp-login-form { padding: 54px 24px 16px; }
	.lp-soc, .lp-modal-footer { padding-left: 24px; padding-right: 24px; }
	.lp-soc__btn { font-size: 0.82rem; gap: 5px; }
	.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: var(--lp-nav-h);
	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;
	}
}

/* ── PWA 로 «설치된» 뒤에는 우측으로 ───────────────────────────────
   설치 전 우측 하단은 «앱으로 설치» 버튼 자리라 가입상담을 좌측에 뒀다.
   설치되면 그 버튼이 아예 나오지 않으므로(index.php 의 isStandalone 분기)
   비는 우측으로 옮긴다.
     display-mode 쿼리 = 첫 페인트부터 적용되어 위치가 튀지 않는다.
     html.is-standalone = 이 쿼리를 모르는 구형 iOS 용 대비책.
                          index.php 가 navigator.standalone 을 보고 붙인다.       */
@media (display-mode: standalone) {
	.consult-call-fab { left: auto; right: 22px; }
}
@media (display-mode: standalone) and (max-width: 540px) {
	.consult-call-fab { right: 16px; }
}
html.is-standalone .consult-call-fab { left: auto; right: 22px; }
@media (max-width: 540px) {
	html.is-standalone .consult-call-fab { right: 16px; }
}

/* 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; }
}

/* =====================================================
   영상 갤러리 (유튜브형) — test.php 의 .ytc-* 전용
   renew/www/index.php 의 .yt-* 를 옮겨 오되, 랜딩 헤더가 흰 배경이라 라이트로 맞췄다.
   카드 = 썸네일 / 프로필 + 제목 / 설명. 조회수·업로드일은 두지 않는다.

   열 수 — «1440px 짜리 풀스크린은 3열» 이 기준이다.
     ~640px    1열 (썸네일 좌우 풀블리드)
     ~1024px   2열
     ~1440px   3열   ← 1440 노트북 풀스크린
     1441px~   4열   ← 그보다 넓은 모니터
   ===================================================== */
/* 옛 히어로(.lph- : 좌 글 / 우 자동 시연 iframe)는 **폐기했다**(2026-09-04).
   이 페이지의 첫 섹션은 index.php 와 같은 히어로 쇼케이스로 바뀌었다 —
   마크업·스크립트 layouts/lp-hero-cards.php · 모양 layouts/lp-hero-cards.css. */

.ytc-wrap {
	padding: 64px 3% 88px;
	/* 위 히어로 쇼케이스(#0f172a)에서 그대로 이어지는 어두운 결 — 아래로 갈수록 살짝 깊어진다.
	   흰 바탕이면 히어로와 맞닿는 자리가 툭 끊겨 보였다(2026-09-04 사장님 지시). */
	background:
		radial-gradient(ellipse at 18% 0%,  rgba(45,212,191,.07) 0%, transparent 55%),
		radial-gradient(ellipse at 86% 14%, rgba(99,102,241,.08) 0%, transparent 50%),
		linear-gradient(180deg, #0f172a 0%, #111a2e 52%, #0b1224 100%);
	scroll-margin-top: calc(var(--lp-nav-h) + 12px);   /* 히어로 «체험 둘러보기» 가 여기로 온다 */
}

/* ── 갤러리 머리: 큰 제목 + 설명 한 문단, 가운데 정렬 ── */
.ytc-intro { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.ytc-intro-title {
	margin: 0 0 14px;
	font-size: clamp(1.7rem, 2.7vw, 2.4rem); font-weight: 900; line-height: 1.25;
	letter-spacing: -.03em; color: #f1f5f9;
}
.ytc-intro-desc { margin: 0; font-size: 1.05rem; font-weight: 500; line-height: 1.75; color: #a9b6ca; }   /* 카드 설명(.ytc-desc)과 같은 톤(2026-09-05) */
.ytc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 24px;
}
/* 넓은 화면에서도 3열을 유지한다 — 12장이 3×4 로 떨어지고, 카드가 잘아지지 않는다 */
@media (max-width: 1024px) { .ytc-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }

.ytc-card {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
}
/* 카드 뒤에 깔리는 호버 판 — 유튜브처럼 카드보다 살짝 넓게 */
.ytc-card::before {
	content: '';
	position: absolute;
	inset: -8px -8px -12px -8px;
	border-radius: 16px;
	background: transparent;
	transition: background .15s ease;
	z-index: 0;
	pointer-events: none;
}
/* 어두운 바탕이라 호버 판도 «밝게 한 겹» — 흰 판을 깔면 카드가 도려낸 것처럼 보인다 */
.ytc-card:hover::before { background: rgba(255, 255, 255, .06); }
.ytc-card > * { position: relative; z-index: 1; }

/* ── 썸네일 ── */
.ytc-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: clip;           /* iframe 미리보기가 이 상자를 스크롤시키지 못하게 (hidden 은 프로그램 스크롤이 먹는다) */
	/* 이미지가 아직 없을 때 자리를 채우는 그라데이션 (카드마다 --ytc-g1/g2 로 색을 준다) */
	background: linear-gradient(135deg, var(--ytc-g1, #334155), var(--ytc-g2, #0f172a));
	transition: transform .18s ease;
}
.ytc-thumb img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
/* 재생 아이콘 + «체험하기» 글자를 한 알약에 담는다 — 아이콘만 있으면 영상으로 오해한다 */
.ytc-play {
	position: absolute; left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex; align-items: center; gap: 10px;
	padding: 9px 18px 9px 9px;
	border-radius: 999px;
	background: rgba(15, 23, 42, .5);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1.5px solid rgba(255, 255, 255, .85);
	opacity: .94;
	transition: opacity .18s ease, transform .18s ease;
	white-space: nowrap;
}
.ytc-play__ico {
	flex: 0 0 auto;
	width: 34px; height: 34px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
}
.ytc-play svg { width: 17px; height: 17px; fill: #fff; margin-left: 2px; }
.ytc-play__t { color: #fff; font-size: 14.5px; font-weight: 800; letter-spacing: -.02em; }
.ytc-card:hover .ytc-play { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }

/* ── 호버 미리보기 — 썸네일 자리에 «자동 재생» 체험판을 얹는다 ──
   1600×900 으로 띄우고 JS 가 썸네일 폭에 맞춰 scale() 을 준다.
   클릭은 받지 않는다 — 카드를 누르면 종전처럼 체험 페이지가 열린다.
   ⚠ 이 크기는 썸네일 사진(img/demo-thumb-*.jpg)을 찍은 화면 폭과 같아야 한다 —
     다르면 호버 순간 그림이 다른 레이아웃으로 «튄다». 바꾸면 12장 다시 찍을 것(2026-09-05: 1440→1600). */
.ytc-frame {
	position: absolute;
	top: 0; left: 0;
	width: 1600px; height: 900px;    /* 논리 화면 — 1280 은 목록 표·문서 편집이 가로로 넘쳐 스크롤바가 보였다 */
	border: 0;
	transform-origin: top left;
	pointer-events: none;
	opacity: 0;
	transition: opacity .35s ease;
}
.ytc-thumb.is-live .ytc-frame { opacity: 1; }
/* 재생 버튼은 화면이 뜨면 비켜 준다 (:hover 규칙보다 뒤에 와야 이긴다) */
.ytc-card:hover .ytc-thumb.is-live .ytc-play { opacity: 0; }

/* ── 프로필 + 제목 + 설명 ── */
.ytc-meta { display: flex; gap: 13px; margin-top: 14px; }
.ytc-ava {
	width: 38px; height: 38px;
	border-radius: 50%;
	flex: 0 0 auto;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-size: 11px; font-weight: 800; letter-spacing: -.02em;
}
.ytc-info { min-width: 0; flex: 1; }
.ytc-title {
	font-size: 17px; font-weight: 700; line-height: 1.35;
	color: #e8edf6; letter-spacing: -.02em;
	display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
	-webkit-box-orient: vertical; overflow: hidden;
}
.ytc-desc {
	font-size: 15px; font-weight: 500; line-height: 1.5;
	color: #a9b6ca; margin-top: 6px;   /* 어두운 바탕에서 한 톤 더 밝게(2026-09-04) */
	display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
	-webkit-box-orient: vertical; overflow: hidden;
}

/* ══ 체험 시작 모달 (.ytd-) — 카드를 누르면 «PC / 모바일» 을 먼저 고른다 ══
   한 덮개 안에 장면이 둘이다: ① 고르기 상자  ② 휴대폰 틀.
   폰 틀의 안쪽(.ytd__screen)은 «언제나 375×812» 다 — 창이 낮으면 통째로 축소(JS transform)만 하고
   폭·높이 자체는 건드리지 않는다. 그래야 «375px 기준» 이 어떤 화면에서도 같은 그림을 준다. */
.ytd { position: fixed; inset: 0; z-index: 9600; display: flex; align-items: center; justify-content: center; }
.ytd[hidden] { display: none; }
.ytd__dim { position: absolute; inset: 0; background: rgba(6, 10, 18, .78); backdrop-filter: blur(3px); }

/* ── ① 고르기 ────────────────────────────────────────────── */
.ytd__box {
	position: relative; width: min(560px, calc(100vw - 32px));
	padding: 30px 28px 26px; border-radius: 18px;
	background: #131a26; border: 1px solid rgba(255, 255, 255, .09);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .55); text-align: center;
}
.ytd__t { font-size: 19px; font-weight: 800; color: #e8edf6; letter-spacing: -.02em; line-height: 1.35; }
.ytd__s { margin-top: 7px; font-size: 14px; font-weight: 500; color: #9fb0c6; }
.ytd__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.ytd__btn {
	display: flex; flex-direction: column; align-items: center; gap: 5px;
	padding: 20px 12px 16px; border-radius: 14px; cursor: pointer;
	background: #1a2431; border: 1px solid rgba(255, 255, 255, .09); color: #e8edf6;
	font: inherit; transition: background .15s, border-color .15s, transform .15s;
}
.ytd__btn:hover { background: #21304180; border-color: rgba(52, 211, 153, .55); transform: translateY(-2px); }
.ytd__btn i { font-size: 26px; color: #34d399; margin-bottom: 3px; }
.ytd__btn b { font-size: 15.5px; font-weight: 700; }
.ytd__btn small { font-size: 12.5px; font-weight: 500; color: #8fa1b8; }
.ytd__x {
	position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
	display: flex; align-items: center; justify-content: center;
	border: 0; border-radius: 9px; background: transparent; color: #8fa1b8;
	font-size: 16px; cursor: pointer; transition: background .15s, color .15s;
}
.ytd__x:hover { background: rgba(255, 255, 255, .08); color: #e8edf6; }

/* ── ② 휴대폰 틀 ─────────────────────────────────────────── */
.ytd__phone { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ytd__phone[hidden] { display: none; }
/* 막대 = 폰 몸통과 «같은 폭»(JS 가 .ytd__phone 의 width 를 정해 준다).
   제목·PC 로 보기는 왼쪽 끝, 닫기는 margin-left:auto 로 오른쪽 끝. */
.ytd__bar { display: flex; align-items: center; gap: 8px; width: 100%; cursor: grab; }
.ytd__bar-t {
	flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
	font-size: 14px; font-weight: 700; color: #e8edf6;
}
.ytd__bar-b {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px;
	border-radius: 9px; cursor: pointer; white-space: nowrap;
	background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .12);
	color: #e8edf6; font: inherit; font-size: 13px; font-weight: 600;
}
.ytd__bar-b:hover { background: rgba(255, 255, 255, .16); }
.ytd__bar-b.is-x { margin-left: auto; padding: 0; width: 32px; justify-content: center; }

/* 폰 몸통(테두리) — padding 이 곧 베젤 두께다. 위(이마)·아래(턱)를 옆보다 두껍게 둬야 «폰» 으로 읽힌다.
   ★ box-sizing 을 content-box 로 못 박는다 — JS 가 정하는 width/height 는 «화면» 크기이고,
     베젤은 그 바깥에 더해져야 한다. border-box 면 베젤이 화면을 파먹어 375×812 가 깨진다.
   ★ 노치는 두지 않는다 — 화면 위를 덮어 체험 화면 일부를 가리게 된다. 대신 이마에 스피커 홈만. */
.ytd__stage {
	box-sizing: content-box;
	cursor: grab;                     /* 테두리를 잡아 끌 수 있다는 신호 */
	position: relative; padding: 22px 10px 26px; border-radius: 36px;
	background: #05070c; border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.ytd__stage::before {   /* 이마 — 스피커 홈 */
	content: ''; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
	width: 34%; max-width: 70px; height: 5px; border-radius: 99px; background: rgba(255, 255, 255, .16);
}
.ytd__stage::after {    /* 턱 — 홈 인디케이터 */
	content: ''; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
	width: 38%; max-width: 110px; height: 4px; border-radius: 99px; background: rgba(255, 255, 255, .22);
}
/* 화면 — 언제나 375×812 로 그리고 배율만 바뀐다(JS). 모서리는 살짝만 둥글린다. */
.ytd__screen { width: 375px; height: 812px; transform-origin: 0 0; overflow: hidden; border-radius: 4px; background: #fff; }
.ytd__if { width: 375px; height: 812px; border: 0; display: block; background: #fff; }

/* ── 끌어서 옮기기 ──────────────────────────────────────────
   잡는 곳은 «테두리(베젤)와 위 막대» 다. 화면 안쪽(iframe)은 체험을 하는 곳이라 건드리면 안 된다.
   ★ 끄는 동안 프레임의 pointer-events 를 끈다 — 안 그러면 커서가 화면 위를 지나는 순간
     iframe 이 이벤트를 삼켜 «끌기가 뚝 끊긴다». (제자리 문서라 부모가 못 받는다)
   ★ 끄는 동안 글자 선택도 막는다 — 드래그가 텍스트 선택으로 새면 화면이 파랗게 물든다. */
.ytd__phone { will-change: transform; }
.ytd__phone.is-drag { user-select: none; }
.ytd__phone.is-drag,
.ytd__phone.is-drag .ytd__stage,
.ytd__phone.is-drag .ytd__bar { cursor: grabbing; }
.ytd__phone.is-drag .ytd__if { pointer-events: none; }
.ytd__bar-t, .ytd__bar-b { cursor: pointer; }
.ytd__bar-t { cursor: grab; }

@media (max-width: 640px) {
	.ytd__btns { grid-template-columns: 1fr; }
	.ytd__box { padding: 26px 20px 22px; }
	.ytd__bar-t { max-width: 150px; }
}

/* ── 모바일: 썸네일을 좌우 끝까지 (유튜브 앱과 같은 모양) ── */
@media (max-width: 1024px) { .ytc-intro-br { display: none; } }
@media (max-width: 640px) {
	.ytc-wrap { padding: 40px 0 56px; }
	.ytc-intro { padding: 0 16px; margin-bottom: 26px; }
	.ytc-intro-title { font-size: 1.5rem; }
	.ytc-intro-desc { font-size: .95rem; }
	.ytc-grid { grid-template-columns: 1fr; gap: 30px 0; }
	/* 카드가 화면 끝까지 닿는 구간 — 호버 판(::before)의 «좌우 8px 삐져나옴» 을 거둔다.
	   .ytc-wrap 의 좌우 여백이 0 이라 그 8px 이 그대로 문서 밖으로 나가 «미세한 가로 스크롤»
	   (390 화면에서 scrollWidth 398)을 만들었다. 손가락 화면엔 호버도 없으니 위아래만 남긴다. */
	.ytc-card::before { inset: -8px 0 -12px 0; }
	.ytc-thumb { border-radius: 0; }
	.ytc-meta { margin-top: 12px; padding: 0 16px; gap: 11px; }
	.ytc-ava { width: 34px; height: 34px; font-size: 10.5px; }
	.ytc-ava i { font-size: 14.5px; }
	.ytc-title { font-size: 16.5px; }
	.ytc-desc { font-size: 14.5px; -webkit-line-clamp: 2; line-clamp: 2; }
	.ytc-play { padding: 8px 16px 8px 8px; gap: 9px; }
	.ytc-play__ico { width: 30px; height: 30px; }
	.ytc-play svg { width: 15px; height: 15px; }
	.ytc-play__t { font-size: 13.5px; }
}

/* ══════ 비교 매트릭스 — 흰 바탕 판 (.s3-wrap--light) ══════
   index 의 어두운 «케어하자는 어떻게 다른가» 구간을 test 페이지의 흰 갤러리 아래에 옮기며
   팔레트만 바꾼다. 구조·간격은 위 s3·cm 규칙을 그대로 쓰고 색만 덮는다. (주석 안에 별표+슬래시 조합을 쓰면 첫 규칙이 통째로 죽는다)
   강조색은 이 페이지의 보라(primary) + 초록(버튼)로 맞춘다. */
.s3-wrap--light {
	background: #fff;
	background-image: none;
	padding: 96px 4% 104px;
	border-top: 1px solid #eef2f7;
	overflow: clip;
}
.s3-wrap--light .s3-head { margin-bottom: 48px; }
.s3-wrap--light .s3-title { color: var(--color-gray-900); font-weight: 900; letter-spacing: -.03em; }
.s3-wrap--light .s3-title em {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.s3-wrap--light .s3-sub { color: var(--color-gray-500); font-weight: 500; }

/* 승률 막대 */
.s3-wrap--light .cm-scorebar { background: #f8fafc; border: 1px solid #e5e7eb; }
.s3-wrap--light .cm-scorebar-name { color: var(--color-gray-600); }
.s3-wrap--light .cm-scorebar-row--us .cm-scorebar-name { color: var(--color-primary); }
.s3-wrap--light .cm-scorebar-track { background: #e9edf3; }
.s3-wrap--light .cm-scorebar-fill { background: linear-gradient(90deg, #6366f1, var(--color-primary) 55%, #10b981); box-shadow: none; }
.s3-wrap--light .cm-scorebar-fill--gray { background: linear-gradient(90deg, #cbd5e1, #b6c0cf); }
.s3-wrap--light .cm-scorebar-val { color: var(--color-gray-900); }
.s3-wrap--light .cm-scorebar-val small { color: var(--color-gray-400); }
.s3-wrap--light .cm-scorebar-row--us .cm-scorebar-val { color: var(--color-primary); }
.s3-wrap--light .cm-scorebar-row--us .cm-scorebar-val small { color: rgba(79,70,229,.7); }

/* 매트릭스 본체 */
.s3-wrap--light .cm-matrix { background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 10px 30px -22px rgba(15,23,42,.25);
	overflow: clip; }   /* hidden 이면 매트릭스 자체가 sticky 의 기준이 되어 표머리가 74px 내려앉아 첫 행을 가린다. clip 은 기준이 안 된다 → 창 기준으로 헤더 밑에 붙는다 */
.s3-wrap--light .cm-row { border-bottom: 1px solid #eef2f7; }
.s3-wrap--light .cm-row:not(.cm-row--head):hover { background: #f8fafc; }
.s3-wrap--light .cm-row--head { background: #f8fafc; border-bottom: 1px solid #e5e7eb; top: var(--lp-nav-h); }   /* 고정 헤더 밑에 붙는다 */
.s3-wrap--light .cm-cell { color: var(--color-gray-700); border-left: 1px solid #f1f5f9; }
.s3-wrap--light .cm-row--head .cm-cell { color: var(--color-gray-500); }
.s3-wrap--light .cm-feat-icon { color: var(--color-primary); opacity: .9; }
.s3-wrap--light .cm-cell--feat strong { color: var(--color-gray-900); }
.s3-wrap--light .cm-cell--feat span,
.s3-wrap--light .cm-cell em { color: var(--color-gray-500); }
.s3-wrap--light .cm-c { color: #10b981; }
.s3-wrap--light .cm-w { color: #f59e0b; }
.s3-wrap--light .cm-x { color: #cbd5e1; }
.s3-wrap--light .cm-cell:not(.cm-cell--us):has(.cm-x) { opacity: .7; }
.s3-wrap--light .cm-cell:not(.cm-cell--us):has(.cm-x) .cm-x,
.s3-wrap--light .cm-cell:not(.cm-cell--us):has(.cm-x) em { color: #b6c0cf; }
.s3-wrap--light .cm-row:not(.cm-row--head):hover .cm-cell:not(.cm-cell--us):has(.cm-x) { opacity: .5; }

/* 케어하자 열 — 연보라 띠 */
.s3-wrap--light .cm-cell--us,
.s3-wrap--light .cm-row:not(.cm-row--head):first-of-type .cm-cell--us {
	background: linear-gradient(180deg, rgba(79,70,229,.09), rgba(79,70,229,.04));
	border-left: 1px solid rgba(79,70,229,.22);
	border-right: 1px solid rgba(79,70,229,.22);
	box-shadow: none;
}
.s3-wrap--light .cm-row--head .cm-cell--us {
	background: linear-gradient(180deg, rgba(79,70,229,.16), rgba(79,70,229,.08));
	border-top: 2px solid var(--color-primary);
	box-shadow: none;
}
.s3-wrap--light .cm-row:not(.cm-row--head):last-child .cm-cell--us { border-bottom: 1px solid rgba(79,70,229,.22); box-shadow: none; }
.s3-wrap--light .cm-cell--us em { color: var(--color-gray-900); font-weight: 700; }
.s3-wrap--light .cm-cell--us .cm-c { filter: none; }
.s3-wrap--light .cm-row:not(.cm-row--head):hover .cm-cell--us .cm-c { animation: cmPulseLight .7s cubic-bezier(.22,1,.36,1); }
@keyframes cmPulseLight { 0% { transform: scale(1); } 45% { transform: scale(1.3); } 100% { transform: scale(1); } }
.s3-wrap--light .cm-us-chip { background: linear-gradient(135deg, var(--color-primary), #818cf8); color: #fff; }

/* 범례 · 인사이트 카드 */
.s3-wrap--light .cm-legend { color: var(--color-gray-500); margin-bottom: 40px; }
.s3-wrap--light .cm-legend-note { color: var(--color-gray-400); }
.s3-wrap--light .cm-insight { margin-bottom: 0; }   /* CTA 박스는 뺐다 — 인사이트 카드가 마지막 */
.s3-wrap--light .cm-insight-card { background: #fff; border: 1px solid #e5e7eb; }
.s3-wrap--light .cm-insight-card::before { display: none; }
.s3-wrap--light .cm-insight-val { color: var(--color-gray-900); }
.s3-wrap--light .cm-insight-val small,
.s3-wrap--light .cm-insight-label { color: var(--color-gray-500); }
.s3-wrap--light .cm-insight-card--us { background: linear-gradient(180deg, rgba(79,70,229,.10), rgba(79,70,229,.03)); border-color: rgba(79,70,229,.28); }
.s3-wrap--light .cm-insight-card--us .cm-insight-val { color: var(--color-primary); filter: none; }
.s3-wrap--light .cm-insight-card--us .cm-insight-val small { color: rgba(79,70,229,.7); }
.s3-wrap--light .cm-insight-card--gold { background: linear-gradient(180deg, rgba(245,158,11,.12), rgba(245,158,11,.03)); border-color: rgba(245,158,11,.32); }
.s3-wrap--light .cm-insight-card--gold .cm-insight-val { color: #d97706; filter: none; }
.s3-wrap--light .cm-insight-card--gold .cm-insight-val small { color: rgba(217,119,6,.75); }

/* 좁은 화면(≤960) — 위 어두운 모바일 규칙의 색만 되돌린다 */
@media (max-width: 960px) {
	.s3-wrap--light { padding: 64px 5% 72px; }
	.s3-wrap--light .cm-row { border-bottom: 1px solid #eef2f7; }
	.s3-wrap--light .cm-cell { background: #f8fafc; }
	.s3-wrap--light .cm-cell--feat { background: transparent; }
	.s3-wrap--light .cm-cell--us { background: linear-gradient(180deg, rgba(79,70,229,.10), rgba(79,70,229,.04)); }
	.s3-wrap--light .cm-cell--us[data-label]::before { color: var(--color-primary); }
}

/* ── 뒤로가기로 돌아왔을 때 패널 잠금 — 다음 실제 조작(마우스 이동·터치·키)까지. test.php 의 «NAV 드롭다운 닫기» JS 가 붙였다 뗀다 ── */
.lp-nav-links.is-suspended .lp-mega {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-10px) !important;
	transition: none !important;
}
.lp-nav-links.is-suspended .lp-nav-item > a::after { transform: scaleX(0) !important; }
.lp-nav-links.is-suspended .lp-nav-caret { transform: none !important; }

/* ── 아직 없는 메뉴(주야간보호요양 세부) — 회색·클릭 불가 + «준비 중» 배지 ── */
.lp-mega-col a.is-disabled {
	color: var(--color-gray-400, #9ca3af);
	pointer-events: none;
	cursor: default;
}
.lp-mega-col a.is-disabled:hover { background: none; color: var(--color-gray-400, #9ca3af); }
.lp-mega-soon {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 7px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #94a3b8;
	background: #eef2f7;
	vertical-align: 1px;
}

/* ── 카드 아바타 = 그 메뉴가 실제로 쓰는 사이드바 아이콘(layouts/sidebar-care.php 와 같은 이름).
      원의 색은 카드마다 정해 둔 썸네일 색(--ytc-g1/g2)을 그대로 쓴다. ── */
.ytc-ava {
	background: linear-gradient(140deg, var(--ytc-g1, #475569), var(--ytc-g2, #1e293b));
	border: 0;
	overflow: hidden;
	box-shadow: 0 3px 10px -2px rgba(15, 23, 42, 0.28);
}
.ytc-ava i {
	font-size: 16px;
	line-height: 1;
	color: #fff;
}

/* ── 새창으로 열리는 항목(템플릿 체험) 표시 + 모바일 접이식의 «준비 중» 항목 ── */
.lp-mega-ext {
	font-size: .68em;
	opacity: .45;
	margin-left: 7px;
	vertical-align: 1px;
}
.lp-mm-sub.is-disabled {
	color: var(--color-gray-400, #9ca3af);
	cursor: default;
}

/* ══════════════════════════════════════════════════════════════
 *  앱 다운로드 FAB (.apf-) — 우측 하단 «유리질» 알약 + 설치 안내 모달
 *  마크업·동작은 layouts/pwa-fab.php.
 *
 *  유리 느낌은 셋이 겹쳐서 난다:
 *    ① backdrop-filter 로 뒤를 흐리고 채도를 올린다
 *    ② 반투명 어두운 밑색 — 흰 페이지 위에서 흰 유리는 안 보인다(대비를 위해 어둡게)
 *    ③ 위쪽 1px 하이라이트(::before)와 얇은 흰 테두리 = 유리 모서리에 빛 걸린 느낌
 *  backdrop-filter 를 모르는 브라우저에서도 밑색이 충분히 진해 글씨는 늘 읽힌다.
 * ══════════════════════════════════════════════════════════════ */
.apf {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 800;   /* 떠 있는 «권유» 일 뿐이다 — 메뉴(999)·모달(9800) 아래로 내려 둔다 */
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 10px 20px 10px 11px;
	border: 1px solid rgba(255, 255, 255, .20);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(15, 23, 42, .66), rgba(30, 41, 59, .33));   /* 유리 밑색 — 사장님 지정 0.66 → 0.33 */
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	backdrop-filter: blur(20px) saturate(180%);
	box-shadow:
		0 18px 38px -14px rgba(15, 23, 42, .55),
		0 30px 60px -34px rgba(16, 185, 129, .85),
		inset 0 1px 0 rgba(255, 255, 255, .14);
	color: #fff;
	font-family: inherit;
	cursor: pointer;
	/* 등장 — 아래에서 살짝 떠오른다 */
	opacity: 0;
	transform: translateY(16px) scale(.94);
	pointer-events: none;
	transition: opacity .42s ease, transform .42s cubic-bezier(.2, .7, .2, 1.25), box-shadow .25s ease;
}
.apf.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.apf[hidden] { display: none; }
/* 위쪽 유리 하이라이트 */
.apf::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 46%);
	pointer-events: none;
}
.apf:hover {
	transform: translateY(-3px);
	box-shadow:
		0 24px 46px -14px rgba(15, 23, 42, .6),
		0 34px 70px -30px rgba(16, 185, 129, 1),
		inset 0 1px 0 rgba(255, 255, 255, .2);
}
.apf:active { transform: translateY(-1px) scale(.985); }
.apf:focus-visible { outline: 2px solid #6ee7b7; outline-offset: 3px; }

.apf__ico {
	position: relative;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(135deg, #34d399, #0d9488);
	box-shadow: 0 8px 18px -8px rgba(16, 185, 129, .95);
	font-size: 15px;
	color: #fff;
}
/* 아이콘 둘레에 잔잔한 파동 — «누를 것» 이라는 신호. 움직임을 싫어하는 설정이면 끈다. */
.apf__ico::after {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 15px;
	border: 1px solid rgba(52, 211, 153, .55);
	animation: apf-pulse 2.8s cubic-bezier(.3, 0, .2, 1) infinite;
	pointer-events: none;
}
@keyframes apf-pulse {
	0%   { opacity: .8; transform: scale(.92); }
	70%  { opacity: 0;  transform: scale(1.25); }
	100% { opacity: 0;  transform: scale(1.25); }
}
.apf__txt { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.15; }
.apf__t1 { font-size: 14.5px; font-weight: 800; letter-spacing: -.02em; }
.apf__t2 { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, .66); letter-spacing: -.01em; }

@media (max-width: 640px) {
	.apf {
		right: 14px;
		bottom: calc(14px + env(safe-area-inset-bottom, 0px));
		padding: 9px 17px 9px 10px;
		gap: 9px;
	}
	.apf__ico { width: 32px; height: 32px; border-radius: 11px; font-size: 14px; }
	.apf__t1 { font-size: 13.5px; }
	.apf__t2 { font-size: 10.5px; }
}
@media (prefers-reduced-motion: reduce) {
	.apf { transition: opacity .2s ease; transform: none; }
	.apf__ico::after { animation: none; opacity: 0; }
}
@media print { .apf, .apf-modal { display: none !important; } }

/* ── 설치 안내 모달 (자동 설치가 없는 브라우저) ── */
.apf-modal {
	position: fixed;
	inset: 0;
	z-index: 9500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.apf-modal.is-open { display: flex; }
.apf-modal__scrim {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .5);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: apf-fade .22s ease both;
}
.apf-modal__card {
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 30px 26px 24px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 22px;
	background: linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92));
	-webkit-backdrop-filter: blur(22px) saturate(180%);
	backdrop-filter: blur(22px) saturate(180%);
	box-shadow: 0 30px 70px -24px rgba(15, 23, 42, .5);
	text-align: center;
	animation: apf-rise .3s cubic-bezier(.2, .7, .2, 1.15) both;
}
@keyframes apf-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apf-rise { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.apf-modal__x {
	position: absolute;
	top: 12px; right: 12px;
	width: 32px; height: 32px;
	display: grid; place-items: center;
	border: none; border-radius: 10px;
	background: rgba(15, 23, 42, .06);
	color: #64748b; font-size: 15px; cursor: pointer;
}
.apf-modal__x:hover { background: rgba(15, 23, 42, .1); color: #0f172a; }
.apf-modal__ico {
	width: 54px; height: 54px;
	margin: 0 auto 16px;
	display: grid; place-items: center;
	border-radius: 17px;
	background: linear-gradient(135deg, #34d399, #0d9488);
	color: #fff; font-size: 21px;
	box-shadow: 0 14px 28px -12px rgba(16, 185, 129, .9);
}
.apf-modal__title { margin: 0 0 6px; font-size: 19px; font-weight: 800; color: #0f172a; letter-spacing: -.02em; }
.apf-modal__sub { margin: 0 0 20px; font-size: 13.5px; font-weight: 500; color: #64748b; line-height: 1.6; }
.apf-modal__steps { margin: 0 0 22px; padding: 0; list-style: none; text-align: left; }
.apf-modal__steps li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 11px 13px;
	margin-bottom: 8px;
	border: 1px solid #e8edf4;
	border-radius: 13px;
	background: #fff;
	font-size: 13.5px;
	line-height: 1.55;
	color: #334155;
}
.apf-modal__steps li:last-child { margin-bottom: 0; }
.apf-modal__steps b { color: #0f172a; font-weight: 800; }
.apf-modal__steps i { color: #0d9488; }
.apf-modal__num {
	flex: 0 0 auto;
	width: 21px; height: 21px;
	display: grid; place-items: center;
	border-radius: 7px;
	background: linear-gradient(135deg, #34d399, #0d9488);
	color: #fff; font-size: 11.5px; font-weight: 800;
}
.apf-modal__ok {
	width: 100%;
	padding: 13px;
	border: none;
	border-radius: 13px;
	background: linear-gradient(135deg, #10b981, #0d9488);
	color: #fff; font-size: 14.5px; font-weight: 800; font-family: inherit;
	cursor: pointer;
	box-shadow: 0 14px 26px -14px rgba(16, 185, 129, .95);
}
.apf-modal__ok:hover { filter: brightness(1.06); }
