/*
	에이시티호스팅 (ACT HOSTING) - 원격 PC 24시간 구동 및 무중단 케어 전용 스타일시트
	파일 경로: www/layouts/acthosting/css/product.css
	설명: 본문 배경에 어떠한 그라데이션도 없이 백색 단색으로 처리하되, 최상단 GNB 헤더 영역 공간만 
	      더 파랗고 밝은 하늘 계열의 벌쳐 네온 스카이 블루 그라데이션으로 화사하게 색칠하여 
	      흰색 GNB 대메뉴의 가독성을 300% 이상 완전 정복한 프리미엄 CSS.
*/

/* --------------------------------------------------
   0. GNB 헤더 공간 밝은 하늘/파랑 계열 색칠 핫픽스 (Vibrant Sky Blue Header)
   설명: "짙은 파랑 말고 더 파랑 하늘 스러운 거로 넣어" 피드백을 적용하여 
         벌쳐 블루와 밝은 오션 스카이블루 그라데이션을 헤더에만 웅장하게 부여합니다.
   -------------------------------------------------- */
.act-header {
	background: linear-gradient(135deg, #007bfc 0%, #00d2ff 100%) !important; 
	border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
	backdrop-filter: blur(25px) !important;
	box-shadow: 0 10px 30px rgba(0, 123, 252, 0.15) !important;
}

/* --------------------------------------------------
   0.1 사이트 공통 테마 변수 및 헤더 Clearance 여백
   -------------------------------------------------- */
:root {
	--prod-vultr-blue: #007bfc;
	--prod-vultr-blue-hover: #0056b3;
	--prod-deep-blue: #031059;
	--prod-light-bg: #ffffff; /* 그라데이션 일절 배제한 순백색 단색 */
	--prod-text-main: #334155; /* 라이트 모드에 최적화된 차분한 딥 그레이 */
	--prod-text-muted: #64748b;
	--prod-white: #ffffff;
}

/* 라이믹스 고정 GNB 헤더 아래로 본문이 100% 안전하게 위치하도록 상단 패딩 강제 배정 (Clearance) */
.product-guide-wrapper {
	padding-top: clamp(120px, 12vw, 170px);
	padding-bottom: 90px;
	background-color: var(--prod-light-bg); /* 깔끔하고 정갈한 백색 단색 고정 */
	color: var(--prod-text-main);
	font-family: 'Inter', 'Noto Sans KR', sans-serif;
	overflow-x: hidden;
}

.product-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* --------------------------------------------------
   1. 최상단 소개 타이틀 (Main Header)
   -------------------------------------------------- */
.product-main-header {
	margin-bottom: 45px;
	text-align: left;
}

.eyebrow-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.clock-accent-icon {
	font-size: 2.2rem;
	color: var(--prod-vultr-blue); /* 세련된 벌쳐 시그니처 오션 블루로 리컬러링 완료 */
	animation: pulseClock 2s infinite ease-in-out;
	text-shadow: 0 0 10px rgba(0, 123, 252, 0.2);
}

@keyframes pulseClock {
	0%, 100% { transform: scale(1); opacity: 0.9; }
	50% { transform: scale(1.08); opacity: 1; }
}

.product-main-title {
	font-size: clamp(1.8rem, 4.5vw, 2.6rem);
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	letter-spacing: -1.2px;
}

/* (조잡하던 단조로운 디바이더 밑줄은 레이아웃 미니멀 강화를 위해 전면 철거 완료) */

/* --------------------------------------------------
   2. 본문 2단 분배 레이아웃 (Content Layout)
   -------------------------------------------------- */
.product-content-layout {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 60px;
}

.layout-side-content {
	flex: 1.1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* 시안 본문 텍스트 카드 */
.text-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	text-align: left;
}

.lead-text {
	font-size: 1.22rem;
	font-weight: 600;
	color: var(--prod-deep-blue);
	line-height: 1.5;
	letter-spacing: -0.6px;
	margin: 0;
}

.body-text {
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--prod-text-main);
	font-weight: 300 !important; /* 슬림 가독성 준수 */
	margin: 0;
	letter-spacing: -0.4px;
}

.body-text strong {
	font-weight: 600;
	color: #0f172a;
}

/* --------------------------------------------------
   2.1 무중단 실시간 전원 복구 대형 콘솔 (Uptime Console)
   -------------------------------------------------- */
.uptime-console {
	background: #0f172a; /* 신뢰감 넘치는 묵직하고 진중한 다크 인디고 슬레이트 */
	border: 1px solid rgba(0, 123, 252, 0.2);
	border-radius: 0px; /* 벌쳐 둥글기 0px 큐브 계승 */
	padding: 24px 28px;
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
	box-sizing: border-box;
	width: 100%;
}

.console-header {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 12px;
	margin-bottom: 18px;
}

.pulse-led {
	width: 8px;
	height: 8px;
	background-color: #00f2fe; /* 기본 상태 영롱한 네온 블루 */
	border-radius: 50%;
	box-shadow: 0 0 10px #00f2fe;
	transition: all 0.3s ease;
}

/* 긴급 오프라인 경고용 깜빡이 */
.pulse-led.warning {
	background-color: #ef4444 !important;
	box-shadow: 0 0 15px #ef4444 !important;
	animation: blinkWarning 0.5s infinite alternate !important;
}

@keyframes blinkWarning {
	0% { opacity: 0.3; }
	100% { opacity: 1; }
}

.status-text {
	font-size: 0.8rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.status-text.warning {
	color: #ef4444 !important;
}

.console-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 22px;
}

.console-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
	gap: 12px; /* 라벨과 값 사이의 동적 간격 사수 */
}

.console-row .label {
	color: #94a3b8;
	font-weight: 400;
	letter-spacing: -0.3px;
}

.console-row .value {
	color: #f8fafc;
	font-weight: 500;
	white-space: nowrap; /* 어떤 가로폭에서도 강제 2줄 줄바꿈 원천 차단 */
	text-align: right;
	margin-left: 10px;
	font-size: 0.86rem; /* 텍스트 폭을 아주 은밀하게 단축 */
	letter-spacing: -0.2px;
}

.console-row .font-mono {
	font-family: 'Courier New', monospace;
	font-weight: 600;
}

/* Uptime 형광 네온 스카이블루 */
.console-row .text-neon {
	color: #00f2fe;
	text-shadow: 0 0 5px rgba(0, 242, 254, 0.4);
	font-size: 1.05rem;
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

.console-row .text-neon.warning {
	color: #ef4444 !important;
	text-shadow: 0 0 5px rgba(239, 68, 68, 0.4) !important;
}

.console-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 18px;
}

/* 실시간 시뮬레이션 복구 체험 버튼 (둥글기 0px 플랫) */
.btn-console-simulation {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0px;
	color: #ffffff;
	padding: 14px;
	font-size: 0.9rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.25s ease;
	box-sizing: border-box;
}

.btn-console-simulation i {
	font-size: 1.1rem;
	color: #00f2fe;
	transition: color 0.3s ease;
}

.btn-console-simulation:hover {
	background-color: var(--prod-vultr-blue);
	border-color: var(--prod-vultr-blue);
}

.btn-console-simulation:hover i {
	color: #ffffff;
}

.btn-console-simulation:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.sim-notice {
	font-size: 0.75rem;
	color: #64748b;
	margin: 10px 0 0;
	text-align: center;
	letter-spacing: -0.3px;
}

/* --------------------------------------------------
   2.2 우측 웅장한 데이터 센터 비주얼 프레임 (Visual Side)
   -------------------------------------------------- */
.layout-side-visual {
	flex: 0.9;
	width: 100%;
}

.data-center-visual-frame {
	position: relative;
	width: 100%;
	border: 1px solid rgba(0, 123, 252, 0.15);
	border-radius: 0px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	background-color: #070913;
	display: flex;
}

.datacenter-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	opacity: 0.88;
	transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.data-center-visual-frame:hover .datacenter-img {
	transform: scale(1.03); /* 호버 시 아주 묵직하게 줌인 */
}

/* 비상 상황 경보 붉은 사이렌 필터 레이어 (짜치는 개별 LED 점 완벽 퇴출) */
.emergency-filter-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.48) 100%);
	mix-blend-mode: multiply; /* 이미지의 어두운 영역과 자연스럽게 겹치며 깊이감 있는 붉은 광선 부여 */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
	z-index: 5;
}

/* 비상 상황 활성화 시 실감 나게 숨쉬듯 깜빡이는 붉은 사이렌 애니메이션 */
.emergency-filter-layer.active {
	opacity: 1;
	animation: emergencySirenPulse 1.6s infinite alternate ease-in-out;
}

@keyframes emergencySirenPulse {
	0% {
		background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.4) 100%);
		box-shadow: inset 0 0 40px rgba(239, 68, 68, 0.3);
	}
	100% {
		background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, rgba(239, 68, 68, 0.65) 100%);
		box-shadow: inset 0 0 80px rgba(239, 68, 68, 0.6);
	}
}

/* 코너 데코 */
.visual-corner {
	position: absolute;
	width: 12px;
	height: 12px;
	border-color: var(--prod-vultr-blue);
	border-style: solid;
	z-index: 3;
	pointer-events: none;
}

.corner-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.corner-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* --------------------------------------------------
   3. 고객센터 즉각 상담 전화 바로가기 배너 (Action Footer)
   -------------------------------------------------- */
.product-footer-action {
	border-top: 1px solid #e2e8f0;
	padding-top: 50px;
	text-align: center;
	width: 100%;
}

.btn-product-call {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background-color: #1e293b; /* 세련되고 정적인 슬레이트 다크 */
	color: var(--prod-white) !important;
	padding: 20px 40px;
	font-size: 1.05rem;
	font-weight: 400;
	text-decoration: none;
	border-radius: 0px; /* 사각화 계승 */
	box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
}

.btn-product-call span {
	font-weight: 300;
	letter-spacing: -0.3px;
}

.btn-product-call i:first-child {
	font-size: 1.4rem;
	color: #f59e0b; /* 노란 전화/헤드셋 아이콘 포인트 */
}

.btn-product-call i:last-child {
	font-size: 1.25rem;
	color: var(--prod-vultr-blue);
	transition: transform 0.3s ease;
}

.btn-product-call:hover {
	background-color: var(--prod-vultr-blue); /* 호버 시 벌쳐 블루 대량 반전 */
	box-shadow: 0 12px 30px rgba(0, 123, 252, 0.25);
}

.btn-product-call:hover i:first-child {
	color: #ffffff;
}

.btn-product-call:hover i:last-child {
	color: #ffffff;
	transform: translateX(6px);
}

/* --------------------------------------------------
   4. 모바일 반응형 완벽 보정 (767px 이하)
   -------------------------------------------------- */
@media (max-width: 991px) {
	.product-content-layout {
		flex-direction: column;
		gap: 40px;
	}

	.layout-side-content {
		width: 100%;
	}

	.layout-side-visual {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.product-container {
		padding: 0 16px !important; /* 모바일 실질 가로 영역 최대 확보 */
	}

	.product-guide-wrapper {
		padding-top: 100px;
		padding-bottom: 60px;
	}

	.product-main-header {
		margin-bottom: 30px;
	}

	.clock-accent-icon {
		font-size: 1.8rem;
	}

	.product-main-title {
		font-size: 1.85rem !important;
		letter-spacing: -0.8px !important;
	}

	.text-card {
		gap: 12px !important; /* 모바일 문단 간의 횅한 여백을 오밀조밀하게 압축 */
	}

	.lead-text {
		font-size: 1.08rem !important;
		line-height: 1.5 !important;
		letter-spacing: -0.6px !important;
		word-break: keep-all; /* 단어 단위 띄어쓰기 유지로 한국어 문자 레이아웃 수려화 */
		margin-bottom: 2px !important;
	}

	.body-text {
		font-size: 0.92rem !important;
		line-height: 1.65 !important;
		letter-spacing: -0.4px !important;
		word-break: keep-all; /* 한국어 띄어쓰기 줄바꿈 정제 */
		color: #475569 !important; /* 모바일 화면에서 눈이 덜 아픈 다크 세컨더리 그레이 */
	}

	.uptime-console {
		padding: 20px 18px !important; /* 내부 패딩 최적화 */
	}

	/* 모바일 가로폭 협소로 인해 글씨가 찌그러지는 현상을 방지하기 위해 세로 적층형(Flex Column)으로 전면 교체 */
	.console-row {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 6px !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
		padding-bottom: 12px !important;
		margin-bottom: 4px !important;
	}

	.console-row:last-child {
		border-bottom: none !important;
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
	}

	.console-row .label {
		font-size: 0.78rem !important;
		color: #94a3b8 !important;
		width: 100% !important;
		text-align: left !important;
	}

	.console-row .value {
		font-size: 0.85rem !important;
		margin-left: 0 !important;
		width: 100% !important;
		text-align: left !important;
		white-space: normal !important; /* 텍스트 삐져나감 방지 */
		word-break: break-all !important;
	}

	.console-row .text-neon {
		font-size: 1.05rem !important;
	}

	.btn-console-simulation {
		font-size: 0.85rem !important;
		padding: 12px !important;
	}

	.sim-notice {
		font-size: 0.72rem !important;
	}

	.btn-product-call {
		padding: 16px 20px !important;
		font-size: 0.9rem !important;
		width: 100%;
	}

	.btn-product-call span {
		font-size: 0.82rem !important;
		letter-spacing: -0.5px !important;
	}

	.btn-product-call i:first-child {
		font-size: 1.2rem !important;
	}
}

@media (max-width: 480px) {
	.product-main-title {
		font-size: 1.6rem !important;
	}
}
