/* Index Dashboard CSS - Premium Modern Design */

/* Full Width Layout System */
.full-width-section {
	width: 100% !important;
	max-width: none !important;
}

.full-width-container {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-left: 5% !important;
	padding-right: 5% !important;
}

/* Responsive container padding */
@media (max-width: 1200px) {
	.full-width-container {
		padding-left: 4% !important;
		padding-right: 4% !important;
	}
}

@media (max-width: 768px) {
	.full-width-container {
		padding-left: 3% !important;
		padding-right: 3% !important;
	}
}

@media (max-width: 480px) {
	.full-width-container {
		padding-left: 2% !important;
		padding-right: 2% !important;
	}
}

/* Specific container overrides */
.features-container.full-width-container,
.results-container.full-width-container,
.stats-container.full-width-container,
.testimonials-container.full-width-container,
.footer-container.full-width-container {
	padding-left: 5% !important;
	padding-right: 5% !important;
	max-width: none !important;
}

@media (max-width: 1200px) {
	.features-container.full-width-container,
	.results-container.full-width-container,
	.stats-container.full-width-container,
	.testimonials-container.full-width-container,
	.footer-container.full-width-container {
		padding-left: 4% !important;
		padding-right: 4% !important;
	}
}

@media (max-width: 768px) {
	.features-container.full-width-container,
	.results-container.full-width-container,
	.stats-container.full-width-container,
	.testimonials-container.full-width-container,
	.footer-container.full-width-container {
		padding-left: 3% !important;
		padding-right: 3% !important;
	}
}

@media (max-width: 480px) {
	.features-container.full-width-container,
	.results-container.full-width-container,
	.stats-container.full-width-container,
	.testimonials-container.full-width-container,
	.footer-container.full-width-container {
		padding-left: 2% !important;
		padding-right: 2% !important;
	}
}

/* CSS Variables */
:root {
	--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--premium-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	--card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	--hover-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
}

/* ============================
   First Section (Hello World)
   ============================ */

.first-section {
	width: 100%;
	min-height: 100vh;
	background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
	radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
	linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	position: relative;
	overflow: hidden;
	padding: 2rem;
}

.first-container {
	width: 100%;
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	align-items: center;
	z-index: 2;
}

/* 좌측 영역 */
.first-left {
	padding-left: 2rem;
}

.welcome-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.welcome-badge i {
	color: #fbbf24;
}

.welcome-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -0.03em;
}

.welcome-title .highlight {
	background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.welcome-description {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.6;
	color: #cbd5e0;
	margin-bottom: 3rem;
	opacity: 0.9;
}

/* 데모 체험하기 버튼 */
.demo-button-container {
	margin-top: 2rem;
	position: relative;
	z-index: 10;
}

.demo-button {
	display: inline-flex !important;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: white !important;
	text-decoration: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 10;
	min-width: 180px;
	justify-content: center;
}

.demo-button:hover {
	background: rgba(255, 255, 255, 0.25) !important;
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.demo-button i {
	transition: transform 0.3s ease;
	animation: bounce-arrow 2s ease-in-out infinite;
}

.demo-button:hover i {
	transform: translateY(2px);
}

@keyframes bounce-arrow {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(3px);
	}
}


/* 우측 영역 - 메인 액션 카드 */
.first-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-action-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 3rem 2.5rem;
	text-align: center;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
	inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	width: 100%;
	max-width: 380px;
}

.main-action-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3),
	0 20px 60px rgba(0, 0, 0, 0.4),
	inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
	rgba(99, 102, 241, 0.1) 0%,
	rgba(139, 92, 246, 0.05) 50%,
	rgba(167, 139, 250, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: inherit;
}

.main-action-card:hover .card-glow {
	opacity: 1;
}

.main-action-card .card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 1;
	box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
	transition: all 0.4s ease;
}

.main-action-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 16px 50px rgba(102, 126, 234, 0.6);
}

.main-action-card .card-icon i {
	font-size: 2rem;
	color: white;
}

.main-action-card .card-title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.main-action-card .card-description {
	color: #cbd5e0;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.main-cta-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	cursor: pointer;
	text-decoration: none;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	width: 100%;
	font-family: inherit;
	outline: none;
}

.main-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.main-cta-button i {
	transition: transform 0.3s ease;
}

.main-cta-button:hover i {
	transform: translateX(3px);
}


/* 떨어지는 버블 효과 */
.falling-bubble {
	position: absolute;
	top: -100px; /* 초기 위치를 화면 위쪽으로 숨김 */
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	z-index: 1;
	opacity: 0; /* 초기에는 완전히 투명 */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.falling-bubble i {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
}

/* 각 버블의 개별 애니메이션 - 랜덤한 시작 위치와 속도 */
.bubble-1 {
	left: 5%;
	animation: fallDown 12s linear infinite;
	animation-delay: 0s;
}

.bubble-2 {
	left: 15%;
	animation: fallDown 15s linear infinite;
	animation-delay: 2s;
}

.bubble-3 {
	left: 25%;
	animation: fallDown 18s linear infinite;
	animation-delay: 4s;
}

.bubble-4 {
	left: 35%;
	animation: fallDown 14s linear infinite;
	animation-delay: 1s;
}

.bubble-5 {
	left: 45%;
	animation: fallDown 16s linear infinite;
	animation-delay: 6s;
}

.bubble-6 {
	left: 55%;
	animation: fallDown 13s linear infinite;
	animation-delay: 3s;
}

.bubble-7 {
	left: 65%;
	animation: fallDown 17s linear infinite;
	animation-delay: 5s;
}

.bubble-8 {
	left: 75%;
	animation: fallDown 11s linear infinite;
	animation-delay: 7s;
}

.bubble-9 {
	left: 85%;
	animation: fallDown 19s linear infinite;
	animation-delay: 1.5s;
}

.bubble-10 {
	left: 90%;
	animation: fallDown 14.5s linear infinite;
	animation-delay: 8s;
}

.bubble-11 {
	left: 10%;
	animation: fallDown 20s linear infinite;
	animation-delay: 9s;
}

.bubble-12 {
	left: 80%;
	animation: fallDown 12.5s linear infinite;
	animation-delay: 4.5s;
}

.bubble-13 {
	left: 20%;
	animation: fallDown 13.8s linear infinite;
	animation-delay: 10s;
}

.bubble-14 {
	left: 92%;
	animation: fallDown 16.2s linear infinite;
	animation-delay: 2.5s;
}

.bubble-15 {
	left: 60%;
	animation: fallDown 14.7s linear infinite;
	animation-delay: 7.5s;
}

.bubble-16 {
	left: 3%;
	animation: fallDown 18.3s linear infinite;
	animation-delay: 5.8s;
}

/* 배경 장식 요소들 */
.bg-decoration {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.3;
	z-index: 0;
}

.decoration-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #60a5fa, transparent 70%);
	top: -150px;
	right: -150px;
	animation: pulse 8s ease-in-out infinite;
}

.decoration-2 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, #a78bfa, transparent 70%);
	bottom: -125px;
	left: -125px;
	animation: pulse 10s ease-in-out infinite reverse;
}

.decoration-3 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, #f472b6, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 12s ease-in-out infinite;
}

/* 버블 떨어지는 애니메이션 */
@keyframes fallDown {
	0% {
		top: -60px;
		opacity: 0;
		transform: translateX(0px) rotate(0deg) scale(0.8);
	}
	5% {
		opacity: 0.7;
		transform: translateX(10px) rotate(30deg) scale(1);
	}
	25% {
		transform: translateX(-15px) rotate(-20deg) scale(1.1);
	}
	50% {
		transform: translateX(20px) rotate(45deg) scale(0.9);
		opacity: 0.8;
	}
	75% {
		transform: translateX(-10px) rotate(-30deg) scale(1.05);
		opacity: 0.6;
	}
	95% {
		opacity: 0.3;
		transform: translateX(5px) rotate(15deg) scale(0.8);
	}
	100% {
		top: calc(100vh + 60px);
		opacity: 0;
		transform: translateX(0px) rotate(60deg) scale(0.7);
	}
}

/* 기존 float 애니메이션도 유지 (다른 섹션에서 사용될 수 있음) */
@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(10deg);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.5;
	}
}

/* 반응형 */
@media (max-width: 1024px) {
	.first-container {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.first-left {
		padding-left: 0;
	}
}

@media (max-width: 768px) {
	.first-section {
		padding: 1rem;
		padding-top: calc(1rem + 60px); /* 탑바 높이(60px) + 기본 패딩 */
	}

	.welcome-title {
		font-size: clamp(1.8rem, 4vw, 2.5rem); /* 모바일에서 폰트 크기 축소 */
	}

	.main-action-card {
		padding: 2rem 1.5rem;
	}

	.falling-bubble {
		width: 40px;
		height: 40px;
		opacity: 0.5;
	}

	.falling-bubble i {
		font-size: 1rem;
	}

	/* 모바일에서는 버블 수 줄이기 */
	.bubble-9, .bubble-10, .bubble-11, .bubble-12, .bubble-13, .bubble-14, .bubble-15, .bubble-16 {
		display: none;
	}

}

/* ============================
   Hero Section (modern, animated)
   ============================ */

/* 컨테이너 */
.hero-section {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e5e7eb;
	padding: 72px 2rem 2rem;
	background: radial-gradient(1200px 600px at 70% -10%, rgba(99, 102, 241, .25), transparent 60%),
	radial-gradient(1000px 500px at 10% 110%, rgba(34, 211, 238, .18), transparent 55%),
	linear-gradient(180deg, #0f172a, #020617);
	isolation: isolate;
}

/* 부드러운 그리드 라인 */
.hero-section::before {
	content: "";
	position: absolute;
	inset: -10%;
	background: linear-gradient(to right, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0/40px 40px,
	linear-gradient(to bottom, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0/40px 40px;
	mask: linear-gradient(0deg, transparent 0%, black 20% 80%, transparent 100%);
	pointer-events: none;
	z-index: -1;
	animation: subtle-pan 40s linear infinite;
}

/* 노이즈 필름 */
.hero-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .15 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	opacity: .25;
	mix-blend-mode: overlay;
	pointer-events: none;
	z-index: -1;
}

/* 떠다니는 글로우 블랍 */
.hero-fx, .hero-fx2 {
	position: absolute;
	inset: auto;
	width: 48vmax;
	height: 48vmax;
	border-radius: 50%;
	filter: blur(60px);
	opacity: .35;
	z-index: -2;
}

.hero-fx {
	background: radial-gradient(circle at 30% 30%, #22d3ee, transparent 65%),
	radial-gradient(circle at 70% 70%, #6366f1, transparent 60%);
	top: -15%;
	right: -10%;
	animation: float-blob 22s ease-in-out infinite;
}

.hero-fx2 {
	background: radial-gradient(circle at 50% 50%, #a78bfa, transparent 60%);
	bottom: -20%;
	left: -12%;
	animation: float-blob 28s ease-in-out infinite reverse;
}

/* 콘텐츠 래퍼 */
.hero-content {
	width: min(1600px, 100%);
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 2rem 0;
}

/* 배지 */
.hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	padding: .75rem 1.2rem;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .3px;
	color: #e0e7ff;
	background: linear-gradient(135deg, rgba(99, 102, 241, .22), rgba(139, 92, 246, .18), rgba(99, 102, 241, .15));
	border: 1px solid rgba(139, 92, 246, .4);
	border-radius: 999px;
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(99, 102, 241, .2), inset 0 1px 0 rgba(255, 255, 255, .1);
	position: relative;
	overflow: hidden;
	text-align: center;
	margin: 0 auto;
}

.hero-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
	animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
	0% {
		left: -100%;
	}
	50%, 100% {
		left: 100%;
	}
}

/* 타이틀 */
.hero-title {
	margin: clamp(25px, 4vh, 50px) auto clamp(20px, 2.5vh, 35px);
	font-size: clamp(36px, 6vw, 80px);
	line-height: 1.1;
	font-weight: 900;
	letter-spacing: -.03em;
	background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 30%, #c7d2fe 60%, #a5b4fc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
	position: relative;
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
	border-radius: 2px;
}

/* 설명 */
.hero-description {
	margin: clamp(40px, 5vh, 60px) auto clamp(40px, 5vh, 60px);
	max-width: 65ch;
	color: #cbd5e0;
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.8;
	font-weight: 400;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	opacity: 0.95;
	text-align: center;
	padding: 0 20px;
}

/* 카드형 버튼 그룹 */
.hero-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
	max-width: 1600px;
	width: 100%;
	flex: 1;
	align-content: center;
	padding: 0 20px;
}

.hero-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 32px 24px;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
	inset 0 1px 0 rgba(255, 255, 255, 0.1),
	0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
	rgba(139, 92, 246, 0.15) 0%,
	rgba(99, 102, 241, 0.08) 30%,
	rgba(167, 139, 250, 0.12) 70%,
	rgba(196, 181, 253, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: inherit;
}

.hero-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
	transparent,
	rgba(255, 255, 255, 0.1),
	transparent);
	transition: left 0.6s ease;
}

.hero-card:hover::before {
	opacity: 1;
}

.hero-card:hover::after {
	left: 100%;
}

.hero-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25),
	0 8px 32px rgba(0, 0, 0, 0.4),
	inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	position: relative;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3),
	inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%, rgba(255, 255, 255, 0.1));
	border-radius: inherit;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.card-icon.secondary {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-icon.tertiary {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon.quaternary {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hero-card:hover .card-icon {
	transform: scale(1.15) rotate(8deg);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4),
	inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-card:hover .card-icon::before {
	opacity: 1;
}

.card-icon i {
	font-size: 28px;
	color: white;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-title {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 5px;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.card-description {
	font-size: 15px;
	color: #e2e8f0;
	line-height: 1.6;
	/*margin-top: -24px;*/
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	font-weight: 400;
}

.card-features {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.feature-tag {
	background: rgba(255, 255, 255, 0.08);
	color: #f1f5f9;
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.4s ease;
	backdrop-filter: blur(8px);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.02em;
}

.hero-card:hover .feature-tag {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 16px;
	font-weight: 700;
	font-size: 15px;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3),
	inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.01em;
}

.card-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
	rgba(255, 255, 255, 0.2) 0%,
	rgba(255, 255, 255, 0.1) 50%,
	rgba(255, 255, 255, 0.2) 100%);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.card-btn:hover::before {
	transform: translateX(100%);
}

.card-btn.secondary {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-btn.tertiary {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-btn.quaternary {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4),
	inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-btn.secondary:hover {
	box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.card-btn.tertiary:hover {
	box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.card-btn.quaternary:hover {
	box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.card-btn i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.card-btn:hover i {
	transform: translateX(3px);
}


/* 스크롤 표시기 */
.scroll-indicator {
	position: absolute;
	bottom: clamp(30px, 5vh, 60px);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	animation: scroll-bounce 2s ease-in-out infinite;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
	opacity: 0.8;
}

.scroll-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
}

.scroll-arrow i {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	animation: arrow-bounce 2s ease-in-out infinite;
}

.scroll-text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.5px;
}

@keyframes scroll-bounce {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-10px);
	}
}

@keyframes arrow-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(3px);
	}
}

/* 반응형 */
@media (max-width: 1024px) {
	.hero-section {
		height: auto;
		min-height: calc(100vh - 72px);
	}

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

@media (max-width: 720px) {
	.hero-section {
		padding: 90px 1rem 1rem;
		height: auto;
		min-height: auto;
	}

	.hero-content {
		padding: 2rem 0;
		gap: 1.5rem;
		height: auto;
		min-height: auto;
	}

	.scroll-indicator {
		bottom: clamp(20px, 3vh, 40px);
	}

	.scroll-text {
		font-size: 12px;
	}

	.hero-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hero-card {
		padding: 20px 16px;
	}

	.card-icon {
		width: 56px;
		height: 56px;
	}

	.card-icon i {
		font-size: 20px;
	}

	.card-title {
		font-size: 16px;
	}

	.card-description {
		font-size: 13px;
	}
}

@media (max-width: 420px) {
	.hero-section {
		padding: 80px 1rem 1rem;
		height: auto;
		min-height: auto;
	}

	.hero-content {
		padding: 1.5rem 0 1rem;
		height: auto;
		min-height: auto;
	}
}

/* 애니메이션 */
@keyframes float-blob {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	33% {
		transform: translate3d(-4%, 6%, 0) rotate(20deg) scale(1.05);
	}
	66% {
		transform: translate3d(3%, -6%, 0) rotate(-12deg) scale(0.98);
	}
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
}

@keyframes subtle-pan {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-80px, -80px, 0);
	}
}


/* ============================================*/
/* Features Section - Modern Cards */
.features-section {
	padding: 100px 20px;
	background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
	width: 100%;
}

.features-container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	font-size: 2.8em;
	margin-bottom: 20px;
	background: var(--primary-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
}

.section-subtitle {
	text-align: center;
	font-size: 1.3em;
	color: #666;
	margin-bottom: 60px;
	font-weight: 300;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: none;
	width: 100%;
	margin: 0;
}

.feature-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--primary-gradient);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--hover-shadow);
}

.feature-card.feature-highlight {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	position: relative;
}

.feature-card.feature-highlight .feature-title,
.feature-card.feature-highlight .feature-description {
	color: white;
}

.feature-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #ff6b6b;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: white;
	position: relative;
}

/* Feature Icon Hover Animations */
.feature-icon {
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
}

/* Trophy bounce animation on hover */
.feature-card:hover .fa-trophy {
	animation: trophy-bounce 0.6s ease-in-out;
}

@keyframes trophy-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Clock tick animation on hover */
.feature-card:hover .fa-clock {
	animation: clock-tick 1s ease-in-out;
}

@keyframes clock-tick {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-10deg);
	}
	75% {
		transform: rotate(10deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

/* Database pulse animation on hover */
.feature-card:hover .fa-database {
	animation: database-pulse 0.8s ease-in-out;
}

@keyframes database-pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
}

/* PDF shake animation on hover */
.feature-card:hover .fa-file-pdf {
	animation: pdf-shake 0.5s ease-in-out;
}

@keyframes pdf-shake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-3px);
	}
	75% {
		transform: translateX(3px);
	}
}

/* Headset nod animation on hover */
.feature-card:hover .fa-headset {
	animation: headset-nod 0.8s ease-in-out;
}

@keyframes headset-nod {
	0%, 100% {
		transform: rotateX(0deg);
	}
	50% {
		transform: rotateX(-15deg);
	}
}

/* Shield bounce animation on hover */
.feature-card:hover .fa-shield-alt {
	animation: shield-bounce 0.7s ease-in-out;
}

@keyframes shield-bounce {
	0%, 100% {
		transform: scale(1) rotate(0deg);
	}
	25% {
		transform: scale(1.1) rotate(-5deg);
	}
	75% {
		transform: scale(1.1) rotate(5deg);
	}
}

/* Mobile wiggle animation on hover */
.feature-card:hover .fa-mobile-alt {
	animation: mobile-wiggle 0.6s ease-in-out;
}

@keyframes mobile-wiggle {
	0%, 100% {
		transform: translateX(0) rotate(0deg);
	}
	25% {
		transform: translateX(-3px) rotate(-2deg);
	}
	75% {
		transform: translateX(3px) rotate(2deg);
	}
}

.spinning-pen {
	transform-origin: bottom center;
	transition: transform 0.3s ease;
}

.feature-card:hover .spinning-pen {
	animation: spin-pen 0.8s ease-in-out;
}

@keyframes spin-pen {
	0% {
		transform: rotate(-15deg);
	}
	25% {
		transform: rotate(15deg);
	}
	50% {
		transform: rotate(-10deg);
	}
	75% {
		transform: rotate(10deg);
	}
	100% {
		transform: rotate(-15deg);
	}
}

.feature-title {
	font-size: 1.6em;
	margin-bottom: 15px;
	color: #333;
	font-weight: 700;
}

.feature-description {
	color: #666;
	line-height: 1.7;
	font-size: 1.05em;
}


/* ============================================*/
/* Results Section - Before & After */
.results-section {
	padding: 120px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
	width: 100%;
	position: relative;
}

.results-container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
}

.results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 60px;
}

.result-card {
	background: white;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.result-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
	border-radius: 24px 24px 0 0;
}

.result-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.result-header {
	margin-bottom: 30px;
}

.facility-info h4 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 8px;
}

.facility-type {
	color: #667eea;
	font-size: 14px;
	font-weight: 600;
	background: rgba(102, 126, 234, 0.1);
	padding: 4px 12px;
	border-radius: 12px;
	display: inline-block;
}

.before-after {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 30px;
	align-items: start;
}

.before, .after {
	background: #f8f9fa;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.before {
	border-left: 4px solid #dc3545;
}

.after {
	border-left: 4px solid #28a745;
}

.ba-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.ba-header i {
	font-size: 20px;
}

.before .ba-header i {
	color: #dc3545;
}

.after .ba-header i {
	color: #28a745;
}

.ba-header h4 {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.ba-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ba-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ba-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.ba-value {
	font-size: 14px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 8px;
}

.ba-value.bad {
	background: #fee2e2;
	color: #dc2626;
}

.ba-value.good {
	background: #d1fae5;
	color: #059669;
}

.vs-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 200px;
}

.vs-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	font-weight: 900;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	animation: vs-pulse 2s ease-in-out infinite;
}

@keyframes vs-pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.results-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 80px;
	padding: 60px 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 24px;
	color: white;
}

.summary-item {
	display: flex;
	align-items: center;
	gap: 20px;
	text-align: left;
}

.summary-icon {
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.summary-icon i {
	font-size: 24px;
	color: white;
}

.summary-content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	color: white;
}

.summary-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

/* 반응형 */
@media (max-width: 1024px) {
	.before-after {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vs-divider {
		min-height: auto;
		padding: 20px 0;
	}

	.vs-icon {
		transform: rotate(90deg);
	}
}

@media (max-width: 768px) {
	.results-section {
		padding: 80px 20px;
	}

	.result-card {
		padding: 24px 20px;
	}

	.results-summary {
		grid-template-columns: 1fr;
		padding: 40px 24px;
		margin-top: 60px;
	}

	.summary-item {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.summary-icon {
		width: 56px;
		height: 56px;
	}
}

@media (max-width: 480px) {
	.before-after {
		gap: 16px;
	}

	.before, .after {
		padding: 20px 16px;
	}

	.ba-item {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.facility-info h4 {
		font-size: 20px;
	}
}

/* Benefits Section */
.benefits-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
	width: 100%;
}

.benefits-container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.benefit-card {
	text-align: center;
	padding: 40px 30px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);
}

.benefit-icon {
	font-size: 3em;
	margin-bottom: 20px;
	background: var(--primary-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.benefit-card h3 {
	font-size: 1.4em;
	margin-bottom: 10px;
	color: #333;
	font-weight: 700;
}

.benefit-card p {
	color: #666;
	font-size: 1.05em;
	line-height: 1.6;
}

.benefit-card strong {
	color: #667eea;
	font-weight: 800;
}

/* Testimonials Section */
.testimonials-section {
	padding: 100px 20px;
	background: white;
	width: 100%;
}

.testimonials-container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.testimonial-card {
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(102, 126, 234, 0.1);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.stars {
	color: #fbbf24;
	margin-bottom: 20px;
	font-size: 1.2em;
}

.testimonial-text {
	font-size: 1.1em;
	line-height: 1.7;
	color: #555;
	margin-bottom: 25px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.testimonial-author strong {
	color: #333;
	font-size: 1.1em;
}

.testimonial-author span {
	color: #888;
	font-size: 0.9em;
}

/* Stats Section - Animated Numbers */
.stats-section {
	padding: 100px 20px;
	background: var(--primary-gradient);
	color: white;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="white" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
	background-size: cover;
}

.stats-container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 50px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3.5em;
	font-weight: 900;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.counter {
	display: inline-block;
}

.stat-label {
	font-size: 1.3em;
	opacity: 0.95;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* CTA Section - Premium Call to Action */
.cta-section {
	padding: 120px 20px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
	animation: rotate-slow 20s linear infinite;
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 20px;
}

.cta-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
	color: white;
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 30px;
	animation: pulse-badge 2s infinite;
}

.cta-title {
	font-size: 3em;
	margin-bottom: 20px;
	background: var(--primary-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
}

.cta-subtitle {
	font-size: 1.5em;
	color: #333;
	margin-bottom: 15px;
	font-weight: 600;
}

.cta-description {
	font-size: 1.1em;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.cta-btn {
	padding: 20px 50px;
	font-size: 1.1em;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.cta-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
	width: 400px;
	height: 400px;
}

.cta-btn-primary {
	background: var(--primary-gradient);
	color: white;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-btn-secondary {
	background: white;
	color: #667eea;
	border: 2px solid #667eea;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-btn-secondary:hover {
	background: #667eea;
	color: white;
	transform: translateY(-3px) scale(1.02);
}

.cta-trust {
	font-size: 0.9em;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.cta-trust i {
	color: #667eea;
}


/* Responsive Design */
@media (max-width: 768px) {

	.hero-title {
		font-size: 2.2em;
	}

	.hero-subtitle {
		font-size: 1.3em;
	}

	.hero-stats {
		gap: 30px;
	}

	.hero-stats .stat-value {
		font-size: 2em;
	}

	.section-title {
		font-size: 2em;
	}

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

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.hero-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 1.8em;
	}

	.hero-subtitle {
		font-size: 1.1em;
	}

	.hero-description {
		font-size: 0.95em;
	}

	.section-title {
		font-size: 1.6em;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stats-container {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 2.5em;
	}

	.cta-title {
		font-size: 2em;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content > * {
	animation: fadeInUp 0.8s ease backwards;
}

.hero-badge {
	animation-delay: 0.1s;
}

.hero-title {
	animation-delay: 0.2s;
}

.hero-subtitle {
	animation-delay: 0.3s;
}

.hero-description {
	animation-delay: 0.4s;
}

.hero-buttons {
	animation-delay: 0.5s;
}

.hero-stats {
	animation-delay: 0.6s;
}

/* Scroll animations */
[data-aos] {
	opacity: 0;
	transition: all 0.8s ease;
}

[data-aos].aos-animate {
	opacity: 1;
}

/* Footer Styles */
.footer {
	background: linear-gradient(135deg, #1c2129 0%, #333942 100%);
	color: white;
	padding: 30px 0 20px 0;
	margin: 0;
	position: relative;
	width: 100%;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer a {
	color: inherit;
	text-decoration: none;
}

.footer-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-main {
	display: grid;
	grid-template-columns: 0.5fr 1.25fr 1.25fr 1fr;
	gap: 60px;
	margin-bottom: 10px;
}

.footer-section h3,
.footer-section h4 {
	color: white;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-section h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.footer-section h4 {
	font-size: 18px;
	border-bottom: 2px solid #667eea;
	padding-bottom: 8px;
	margin-bottom: 20px;
}

.footer-logo h3 {
	background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea);
	background-size: 400% 400%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient-shift 8s ease-in-out infinite;
	font-weight: 700;
	color: #ddd;
	font-size: 28px;
	text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.footer-logo p {
	color: #a0aec0;
	font-size: 14px;
	margin-bottom: 15px;
}

.footer-description {
	color: #cbd5e0;
	line-height: 1.6;
	font-size: 14px;
	margin-bottom: 25px;
}

/*.footer-social {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*}*/

/*.social-link {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-radius: 50%;*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.social-link:hover {*/
/*    background: #667eea;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);*/
/*}*/
/*.social-link img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*}*/

/*.footer-links {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.footer-links li {*/
/*    margin-bottom: 12px;*/
/*}*/

/*.footer-links a {*/
/*    color: #cbd5e0;*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*    font-size: 14px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*}*/

/*.footer-links a:hover {*/
/*    color: #667eea;*/
/*    padding-left: 5px;*/
/*}*/


.company-info {
	font-size: 0.95rem;
	color: #fff;
	padding-top: 8px;
}

.company-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.company-info ul li {
	margin-bottom: 5px;
}
.company-info ul label {
	display: inline-block;
	white-space: nowrap;
	text-align: left;
	width: 90px;
	font-weight: 500;
}
.company-info ul .val {
	font-weight: 400;
	white-space: nowrap;
}

.company-info .f-row {
	margin-bottom: 4px;
}


.ft-cs-title {
	font-size: 0.95rem;
}
.footer .cs-number {
	font-size: 1.1rem;
	font-weight: 600;
}
.footer .cs-email {
	font-size: 1.1rem;
	font-weight: 600;
}

.footer .cs-desc {
	font-size: 0.9rem;
	color: #eee;
	margin-top: 5px;
}

.ft-email {
	margin-top: 15px;
}


.ft-openchat a {
	display: block;
	margin: 10px 0;
}
.ft-openchat a img {
	width: 30px;
	height: 30px;
	vertical-align: middle;
}
.ft-openchat .chat-label {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 110%;
	color: #fff000;
}
.ft-openchat .chat-arrow {
	display: inline-flex;
	vertical-align: middle;
	font-size: 1.2rem;
	color: gold;
}


.ft-openchat .chat-desc {
	font-size: 0.9rem;
	color: #ddd;
	line-height: 130%;
}

/*.f-row label {*/
/*    color: #aaa;*/
/*}*/
/*.f-row.multi label {*/
/*    color: inherit;*/
/*}*/


.f-row .text {

}

.f-row .vbar {
	color: #929292;
}

.company-info a {
	color: inherit;
	text-decoration: none;
}

.for-mobile {
	display: none;
}


.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 25px;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-copyright p {
	color: #a0aec0;
	font-size: 14px;
	margin: 0;
}

.footer-policies {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-policies a {
	color: #cbd5e0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-policies a:hover {
	color: #667eea;
}

.footer-policies .separator {
	color: #4a5568;
}

.footer-policies a strong {
	font-weight: 600;
}

/* Footer Responsive */
@media (max-width: 768px) {
	.footer {
		padding: 20px 0 20px 0;
	}

	.footer-container {
		padding: 0 20px;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin-bottom: 30px;
	}

	.footer-section h3 {
		font-size: 20px;
	}

	.footer-section h4 {
		font-size: 16px;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.footer-policies {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 0px;
	}

	.footer-section {
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}

	.company-info {
		text-align: left;
		padding-top: 10px;
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	.footer-main {
		margin-bottom: 10px;
	}
}

/* 멤버 권한 안내 모달 스타일 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.modal-container {
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 28px;
	border-bottom: 1px solid #e5e7eb;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.modal-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
}

.modal-close {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.modal-body {
	padding: 32px 28px;
}

.notice-content {
	text-align: center;
}

.notice-icon {
	font-size: 48px;
	color: #667eea;
	margin-bottom: 20px;
}

.notice-message {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 32px;
	line-height: 1.5;
}

.notice-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.trial-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 16px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	color: #374151;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
}

.trial-link:hover {
	border-color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
	color: #667eea;
}

.trial-link i {
	font-size: 24px;
	color: #667eea;
}

.modal-footer {
	padding: 20px 28px;
	border-top: 1px solid #e5e7eb;
	background: #f8f9fa;
	display: flex;
	justify-content: center;
}

.btn-close {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-close:hover {
	background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.modal-container {
		width: 95%;
		margin: 20px;
	}

	.modal-header,
	.modal-body,
	.modal-footer {
		padding: 20px;
	}

	.notice-links {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.trial-link {
		padding: 16px 12px;
		font-size: 13px;
	}

	.trial-link i {
		font-size: 20px;
	}

	.notice-message {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.notice-icon {
		font-size: 40px;
		margin-bottom: 16px;
	}
}

/* 회원가입 안내 모달 추가 스타일 */
.signup-modal .notice-icon {
	color: #28a745;
}

.signup-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
	text-align: left;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
}

.benefit-item i {
	color: #28a745;
	font-size: 16px;
	width: 16px;
	flex-shrink: 0;
}

.benefit-item span {
	font-size: 14px;
	color: #374151;
	font-weight: 500;
}

.btn-signup {
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
	display: flex;
	align-items: center;
	gap: 6px;
}

.btn-signup:hover {
	background: linear-gradient(135deg, #218838 0%, #1fa081 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
	background: #f8f9fa;
	color: #6c757d;
	border: 2px solid #e9ecef;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn-secondary:hover {
	background: #e9ecef;
	color: #495057;
	border-color: #dee2e6;
	transform: translateY(-1px);
}

.signup-modal .modal-footer {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}


.line-wrap {
	white-space: nowrap;
}

/* 모바일에서 회원가입 모달 */
@media (max-width: 768px) {
	.signup-modal .modal-footer {
		flex-direction: column-reverse;
		gap: 10px;
	}

	.signup-modal .btn-secondary,
	.signup-modal .btn-signup {
		width: 100%;
		justify-content: center;
	}

	.signup-benefits {
		gap: 10px;
		margin-top: 20px;
	}

	.benefit-item {
		padding: 6px 0;
	}

	.benefit-item span {
		font-size: 13px;
	}

	.first-left {
		padding-top: 30px;
	}

	.welcome-title {
		line-height: 150%;
	}

	.hero-title {
		line-height: 150%;
	}


}

/* Print styles */
@media print {
	.mobile-topbar,
	.sidebar,
	.hero-section::before,
	.hero-section::after,
	.footer,
	.modal-overlay {
		display: none !important;
	}

	.hero-section {
		background: none;
		color: black;
		padding: 20px;
	}

	.section-title,
	.hero-title {
		-webkit-text-fill-color: black;
	}
}


/* alert, confirm box */
.msgbox-wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 10000;
	backdrop-filter: blur(3px);
}

.msg-box {
	min-width: 300px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.msg-box .msg-head {
	position: relative;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 22px;
}

.msg-box .msg-head .logo {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: url(/img/logo-symbol-backlight.png) no-repeat center;
	background-size: 30px;
}

.msg-box .msg-content-box {
	text-align: center;
	padding: 50px 40px;
	/*padding-top: 30px;*/
}

.msg-box .msg-content {
	display: inline-block;
	font-size: 18px;
	line-height: 160%;
	white-space: nowrap;
	text-align: left;
}

.msg-box .msgbox-buttons {
	padding: 20px 20px;
	text-align: center;
	background-color: #f1f1f1;
	border-top: 1px #ddd solid;
	border-radius: 0 0 10px 10px;
}

.msg-box .msgbox-buttons input[type=button] {
	height: 50px;
	padding: 0 20px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-width: 100px;
	font-weight: bold;
	color: #fff;
	font-size: 16px;
}

.msg-box .msgbox-buttons .btn-no {
	margin-left: 20px;
}

@media (max-width: 600px) {

	.feature-title {
		font-size: 1.5rem;
	}


	.msg-box {
		min-width: 250px;
		max-width: calc(100% - 40px);
	}

	.msg-box .msg-content {
		font-size: 15px;
		line-height: 160%;
		white-space: normal;
		text-align: center;
	}

	.msg-box .msg-content-box {
		text-align: center;
		padding: 20px;

	}

	.msg-box .wrap {
		white-space: nowrap;
	}

}

@media (max-width: 340px) {
	.welcome-title {
		font-size: 1.6rem;
	}

	.welcome-description {
		font-size: 1.0rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.hero-section {
		padding-top: 40px;
	}

	.features-section {
		padding-top: 40px;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 1.7rem;
	}

	.feature-title {
		font-size: 1.4rem;
	}

	.feature-description {
		font-size: 0.95rem;
	}

	.feature-card {
		padding: 40px 30px;
	}

	.results-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.testimonial-card {
		padding: 25px;
	}


	.msg-box .msg-content {
		font-size: 13px;
		line-height: 160%;
		white-space: normal;
		text-align: center;
	}
}


/* 섹션 1 새로운 디자인 */

:root {
	--topbar-h: 90px;
}

@media (max-width: 768px) {
	:root {
		--topbar-h: 60px;
	}
}

/* === Hero 섹션 (전체 레이아웃) === */
.fc-hero-light {
	position: relative;
	margin-top: var(--topbar-h);
	min-height: calc(100svh - var(--topbar-h));
	display: flex;
	align-items: flex-start; /* 상단 기준으로 정렬 */
	justify-content: center;
	background: transparent;
	overflow: hidden;
	isolation: isolate;
}

/* 배경 네트워크망 */
#network-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

/* 내부 컨테이너 */
.fc-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 1120px;
	text-align: center;
	padding-top: clamp(40px, 7vh, 70px);
	padding-bottom: clamp(50px, 9vh, 90px);
	padding-inline: 24px;
}

/* === 상단 안내문구 === */
.fc-hero-top {
	margin-top: 10px;
	margin-bottom: clamp(20px, 4vh, 40px);
}

.fc-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(102, 126, 234, 0.12);
	color: #4f46e5;
	font-weight: 700;
	font-size: 16px;
}

.fc-hero-title {
	margin: 18px 0 10px;
	font-size: clamp(18px, 7vw, 40px);
	line-height: 1.6;
	font-weight: 800;
	color: #444;
}

.fc-hero-title em {
	font-style: normal;
	/*background: linear-gradient(135deg, #667eea, #764ba2);*/
	background-color: #2eb151;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fc-hero-sub {
	color: #475569;
	/*font-size: clamp(18px, 2vw, 26px);*/
	line-height: 1.6;
	font-size: 28px;
	font-weight: 600;
}

.fc-hero-sub strong {
	color: #764ba2;
}


/* === 중단 체험 영역 === */
.fc-hero-middle {
	margin-top: clamp(20px, 3vh, 40px);
	margin-bottom: clamp(20px, 3vh, 50px);
}

.fc-cta-row {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

/* 체험하기 버튼 (강조, 넓은 폭) */
.fc-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 48px; /* 👉 가로폭 확대 */
	min-width: 260px; /* 👉 최소 가로크기 고정 */
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(135deg, #667eea, #764ba2);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.05rem;
	box-shadow: 0 10px 24px rgba(102, 126, 234, 0.25);
	transition: all 0.25s ease;
}

.fc-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(102, 126, 234, 0.32);
}

.fc-hero-trial {
	margin-top: 40px;
	font-size: 28px;
	font-weight: 600;
	/*display: none;*/
}

.fc-hero-trial strong {
	/*color: #f60;*/
}

.fc-hero-info {
	margin-top: 20px;
	font-size: clamp(18px, 7vw, 40px);
	font-weight: 800;
	color: #475569;
	line-height: 1.6;
}

/* === 하단 가이드 3개 카드 === */
.fc-hero-bottom {
	padding-top: 20px;
}

.fc-benefits-wrap {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	flex-wrap: nowrap;
	max-width: 1080px;
	margin: 0 auto;
}

.fc-benefit {
	flex: 1 1 0;
	min-width: 240px;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	padding: 24px 16px 26px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-benefit:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fc-benefit i {
	font-size: 22px;
	color: #6366f1;
	opacity: 0.6;
	margin-bottom: 8px;
}

.fc-benefit h4 {
	font-size: 16px;
	font-weight: 700;
	color: #202c3b;
	margin-bottom: 6px;
}

.fc-benefit p {
	font-size: 13px;
	color: #495970;
	line-height: 1.5;
}

/* === 반응형 조정 === */

/* =========================================
   ▶ 1921px 이상(WQHD~) 전용 오버라이드
   ========================================= */
@media (min-width: 1921px) {
	/* 전체 요소가 균형 있게 커지도록 */
	.fc-hero-inner {
		max-width: 1600px;
		padding-top: 90px;
		padding-bottom: 96px;
	}

	.fc-hero-top {
		margin-top: 20px;
	}

	.fc-badge {
		font-size: 18px;
		padding: 10px 16px;
	}

	/* 제목/본문: FHD보다 약간만 확대(과하지 않게) */
	.fc-hero-title {
		margin: 30px 0 10px;
		font-size: 48px; /* WQHD에서 과대해 보이지 않는 상한 */
		line-height: 1.8;
	}

	.fc-hero-sub {
		font-size: 30px;
	}

	/* CTA 더 커지도록 */
	.fc-btn-primary {
		padding: 18px 72px;
		min-width: 320px;
		font-size: 1.15rem;
		border-radius: 16px;
		box-shadow: 0 16px 38px rgba(102, 126, 234, .26);
	}

	.fc-hero-middle {
		margin-top: 56px;
		margin-bottom: 56px;
	}

	.fc-btn-primary {
		padding: 20px 55px; /* 👉 가로폭 확대 */
		min-width: 300px; /* 👉 최소 가로크기 고정 */
		font-size: 1.6rem;
	}


	.fc-hero-info {
		margin-top: 100px;
		/*font-size: 17px;*/
	}

	.fc-hero-trial {
		margin-top: 80px;
		margin-bottom: 20px;
		font-size: 38px;
		font-weight: 500;
		/*display: none;*/
	}


	.fc-hero-bottom {
		padding-top: 40px;
	}

	/* 하단 베네핏도 같이 업스케일 */

	.fc-benefits-wrap {
		max-width: 1600px;
		gap: 28px;
	}

	.fc-benefit {
		min-width: 400px;
		padding: 28px 18px 30px;
	}

	.fc-benefit i {
		font-size: 32px;
	}

	.fc-benefit h4 {
		font-size: 20px;
	}

	.fc-benefit p {
		font-size: 16px;
	}
}


@media (min-width: 1024px) {
	.fc-hero-inner {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	#network-bg {
		opacity: .7;
	}

	.fc-hero-top {
		/*margin-bottom: 30px;*/
	}

	.fc-hero-title {
		margin-top: 30px;
		line-height: 150%;
	}


	.fc-hero-sub {
		/*background-color: rgba(255, 255, 255, .5);*/
		/*padding: 15px;*/
		/*border-radius: 10px;*/
		/*box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);*/
		font-size: 16px;
		font-weight: 600;
	}

	.fc-hero-trial {
		/*background-color: rgba(255, 255, 255, .5);*/
		/*padding: 15px;*/
		/*border-radius: 10px;*/
		/*box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);*/
		margin-bottom: 20px;
	}

	.fc-hero-info {
		font-weight: 600;
		color: #334;
	}


	.fc-badge {
		font-size: 13px;
	}

	.fc-hero-light {
		margin-top: 20px;
	}

	.fc-hero-inner {
		margin-top: 0;
		/*padding-top: 32px;*/
		/*padding-bottom: 60px;*/
		padding-inline: unset;
		padding: 24px 0;
	}

	.fc-hero-title {
		font-size: 21px;
		line-height: 1.8;
	}

	.fc-hero-sub {
		/*font-size: 14px;*/
	}

	.fc-cta-row {
		flex-direction: column;
		align-items: center;
		margin-top: 15px;
	}

	.fc-hero-middle {
		margin-top: 0;
	}

	.fc-hero-trial {
		margin-top: 35px;
		font-size: 18px;
	}

	.fc-hero-trial span {
		white-space: nowrap;
	}

	.fc-hero-info {
		font-size: 18px;
		font-weight: 800;
	}

	.fc-hero-info span {
		white-space: nowrap;
	}

	.fc-btn-primary {
		width: 85%;
		font-size: 1rem;
		padding: 15px 0;
	}

	.fc-benefits-wrap {
		flex-direction: column;
		align-items: center;
		gap: 14px;
		max-width: 100%;
	}

	.fc-benefit {
		width: 90%;
	}


	.features-section {
		padding-top: 24px;
		padding-bottom: 30px;
	}

	.section-title {
		margin-bottom: 0;
	}

	.section-subtitle {
		margin-bottom: 20px;
		line-height: 130%;
	}


	.results-section {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	.results-grid {
		margin-top: 30px;
	}

	.results-summary {
		margin-top: 30px;
	}

	.testimonials-section {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	.testimonials-grid {
		margin-top: 24px;
	}

	.company-info {
		padding-left: 10px;
		font-size: 13px;
		color: #eee;
	}

	.company-info li {
		white-space: nowrap;
	}

	.fs-cs .company-info {
		border-top: none;
		padding-top: 0;
	}

	.company-info ul label {
		width: 90px;
		letter-spacing: -1px;
	}

	.company-info ul .val.addr {
		white-space: nowrap;
		overflow-x: hidden;
		letter-spacing: -1px;
	}

	.fs-cs {
		margin-top: 5px;
		padding: 15px 0;
		border-top: 1px solid rgba(255,255,255,.1);
		border-bottom: 1px solid rgba(255,255,255,.1);
	}

	.fs-chat {
		padding-top: 15px;
	}

	.ft-cs-title {
		margin-top: 0;
		font-size: 0.85rem;
	}

	.footer .cs-number {
		font-size: 1.05rem;
	}
	.footer .cs-email {
		font-size: 1.05rem;
	}

	.footer .cs-desc {
		font-size: 0.85rem;
	}

	.ft-openchat .chat-desc {
		font-size: 0.8rem;
	}



	.f-row .text {
		display: block;
		margin-top: 5px;
	}

	.f-row:first-child .text {
		margin-top: 0;
	}

	.f-row label {
		white-space: pre-wrap;
	}

	.f-row .vbar {
		display: none;
	}

	.footer-copyright p {
		font-size: 12px;
	}

	.for-desktop {
		display: none !important;
	}

	.for-mobile {
		display: block;
	}

}

@media (max-width: 420px) {
	/*.fc-hero-title {*/
	/*    font-size: 24px;*/
	/*}*/
	/*.fc-btn-primary {*/
	/*    width: 90%;*/
	/*}*/
}


@media (max-width: 380px) {

	.fc-benefit {
		min-width: 280px;
		width: 100%;
		background: rgba(255, 255, 255, 0.9);
	}


	.hero-cards {
		padding: 0 5px;
	}


	.stats-section {
		padding: 40px 10px;
		background: var(--primary-gradient);
		color: white;
		width: 100%;
		position: relative;
		overflow: hidden;
	}

	.result-card {
		background: transparent !important;
		border: 0;
		box-shadow: none;
		padding: 24px 0;
		overflow: visible;
	}

	.result-card::before {
		width: 80%;
		left: 50%;
		height: 6px;
		transform: translateX(-50%);
		border-radius: 10px 10px 0 0;
	}

	.result-header {
		text-align: center;
	}

	.before, .after {
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
		border: 1px solid rgba(0, 0, 0, 0.05);
	}


	.before {
		border-left: 4px solid #dc3545;
	}

	.after {
		border-left: 4px solid #28a745;
	}

	.features-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.testimonials-section {
		padding-left: 10px;
		padding-right: 10px;
	}


	.footer-section ul {
		padding-left: 0;
	}

	.f-row .addr {
		letter-spacing: -1px;
	}


}

