/* KENTC corporate layout — inspired by typical Korean B2B sites (e.g. phoenixelect.co.kr structure) */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap");

:root {
	--kentc-navy: #0a2342;
	--kentc-navy-dark: #06152a;
	--kentc-accent: #c9a227;
	--kentc-accent-hover: #e0b82e;
	--kentc-text: #1a1a1a;
	--kentc-muted: #5c6570;
	--kentc-line: #e2e6ea;
	--kentc-bg: #f5f7fa;
	--kentc-white: #fff;
	--header-h: 72px;
	/* Mobile slide-out nav uses this as its top offset */
	--header-sticky-total: var(--header-h);
	--maxw: 1200px;
	/* Anchor scroll: sticky header (logo + nav) */
	--kentc-scroll-offset: 88px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--kentc-scroll-offset);
}

body.kentc-site {
	margin: 0;
	font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--kentc-text);
	background: var(--kentc-white);
}

body.kentc-site a {
	color: var(--kentc-navy);
	text-decoration: none;
	border-bottom: none;
	transition: color 0.2s, background 0.2s;
}

body.kentc-site a:hover {
	color: var(--kentc-accent);
}

body.kentc-site a.kentc-btn {
	border-bottom: none;
}

body.kentc-site a.kentc-btn-primary,
body.kentc-site a.kentc-btn-primary:hover {
	color: var(--kentc-navy-dark);
}

body.kentc-site a.kentc-btn-outline,
body.kentc-site a.kentc-btn-outline:hover {
	color: var(--kentc-white);
}

/* 본문 링크의 border-bottom: none 이 윤곽 버튼 사각형의 아랫변까지 지우는 것 방지 */
body.kentc-site a.kentc-btn-outline {
	border: 2px solid rgba(255, 255, 255, 0.5);
}

body.kentc-site a.kentc-btn-outline:hover {
	border-color: var(--kentc-white);
}

.kentc-skip {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.kentc-skip:focus {
	position: fixed;
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	background: var(--kentc-navy);
	color: var(--kentc-white);
	z-index: 10000;
}

/* Header */
.kentc-header {
	position: sticky;
	top: 0;
	z-index: 1100;
	overflow: visible;
	background: var(--kentc-white);
	box-shadow: 0 1px 0 var(--kentc-line), 0 4px 20px rgba(10, 35, 66, 0.06);
}

.kentc-header-inner {
	position: relative;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	overflow: visible;
}

.kentc-logo {
	display: flex;
	align-items: center;
	line-height: 0;
	flex-shrink: 0;
}

.kentc-logo:hover {
	opacity: 0.92;
}

.kentc-logo-img {
	display: block;
	height: 52px;
	width: auto;
	max-width: min(300px, 52vw);
	object-fit: contain;
	object-position: left center;
	border-radius: 12px;
}

@media (max-width: 480px) {
	.kentc-logo-img {
		height: 40px;
		max-width: min(220px, 48vw);
	}
}

.kentc-logo--footer .kentc-logo-img {
	height: 44px;
	max-width: min(260px, 70vw);
	object-position: left center;
}

@media (max-width: 480px) {
	.kentc-logo--footer .kentc-logo-img {
		height: 36px;
	}
}

/* Nav */
.kentc-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
}

.kentc-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--kentc-navy);
}

.kentc-nav {
	position: relative;
	z-index: 1;
	overflow: visible;
}

.kentc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
	align-items: stretch;
	overflow: visible;
}

.kentc-nav > ul > li {
	position: relative;
	overflow: visible;
}

.kentc-nav > ul > li > a {
	display: block;
	padding: 26px 14px;
	font-size: 15px;
	font-weight: 500;
	color: var(--kentc-text);
}

.kentc-nav > ul > li > a:hover,
.kentc-nav > ul > li:focus-within > a {
	color: var(--kentc-navy);
}

.kentc-submenu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 200px;
	background: var(--kentc-white);
	border-radius: 2px;
	border: 1px solid var(--kentc-line);
	box-shadow: 0 8px 28px rgba(10, 35, 66, 0.12);
	padding: 8px 0;
	z-index: 2000;
}

/* 마지막 메뉴(고객센터) 드롭다운이 뷰포트 밖으로 잘리지 않도록 우측 정렬 */
@media (min-width: 1025px) {
	.kentc-nav > ul > li:last-child .kentc-submenu {
		left: auto;
		right: 0;
	}
}

.kentc-nav li:hover .kentc-submenu,
.kentc-nav li:focus-within .kentc-submenu {
	display: block;
}

@media (min-width: 1025px) {
	.kentc-submenu::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 100%;
		height: 14px;
	}
}

.kentc-submenu a {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 400;
	color: var(--kentc-muted);
}

.kentc-submenu a:hover {
	background: var(--kentc-bg);
	color: var(--kentc-navy);
}

/* Hero */
.kentc-hero {
	position: relative;
	min-height: 440px;
	background: linear-gradient(135deg, var(--kentc-navy) 0%, #153a5c 45%, #0a2342 100%);
	color: var(--kentc-white);
	padding: 56px 20px 72px;
	overflow: hidden;
}

/* 메인: 도시 야경 ↔ 산업 현장 전기 배경 교차 */
.kentc-hero--bg-rotate {
	min-height: min(72vh, 680px);
	background-color: var(--kentc-navy-dark);
}

.kentc-hero-bgs {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kentc-hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
}

.kentc-hero-slide-bg.is-visible {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.kentc-hero-slide-bg {
		transition: none;
	}
}

.kentc-hero-slide-bg--city {
	background-image: url("../images/kentc-city-night-electric.png");
	background-position: center bottom;
}

.kentc-hero-slide-bg--industrial {
	background-image: url("../images/kentc-industrial-electric.png");
	background-position: center center;
}

.kentc-hero-slide-bg--aerial {
	background-image: url("../images/kentc-city-aerial-night.png");
	background-position: center 42%;
	transform: scale(1.14);
	transform-origin: center center;
}

.kentc-hero-grad {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 95% 65% at 50% 100%, rgba(201, 162, 39, 0.05), transparent 55%),
		linear-gradient(180deg, rgba(10, 35, 66, 0.38) 0%, rgba(10, 35, 66, 0.12) 45%, rgba(6, 21, 42, 0.42) 100%);
}

.kentc-hero-layout {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.kentc-hero-inner {
	width: 100%;
	text-align: center;
	text-shadow:
		0 0 1px rgba(0, 0, 0, 0.9),
		0 1px 3px rgba(0, 0, 0, 0.85),
		0 2px 14px rgba(0, 0, 0, 0.65),
		0 4px 28px rgba(0, 0, 0, 0.45);
}

.kentc-hero-theme {
	margin: 0 0 14px;
	font-size: clamp(0.95rem, 2.2vw, 1.05rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.45;
}

.kentc-hero-theme em {
	font-style: normal;
	font-weight: 700;
	color: var(--kentc-accent);
}

.kentc-hero-scene {
	margin: 0 0 16px;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.kentc-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.35;
	color: var(--kentc-white);
}

.kentc-hero .kentc-hero-lead {
	font-size: 1.05rem;
	opacity: 0.92;
	margin: 0 0 28px;
	font-weight: 300;
}

.kentc-hero-slides {
	min-height: 3.2em;
	margin-bottom: 8px;
}

.kentc-hero-slides .slide {
	display: none;
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 500;
	color: var(--kentc-accent);
}

.kentc-hero-slides .slide.active {
	display: block;
	animation: kentcFade 0.6s ease;
}

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

.kentc-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.kentc-btn {
	display: inline-block;
	padding: 12px 26px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	border-radius: 4px;
	cursor: pointer;
	border: none;
	font-family: inherit;
	box-sizing: border-box;
	vertical-align: middle;
}

.kentc-btn-primary {
	background: var(--kentc-accent);
	color: var(--kentc-navy-dark);
}

.kentc-btn-primary:hover {
	background: var(--kentc-accent-hover);
	color: var(--kentc-navy-dark);
}

.kentc-btn-outline {
	background: transparent;
	color: var(--kentc-white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.kentc-btn-outline:hover {
	border-color: var(--kentc-white);
	color: var(--kentc-white);
}

/* Section common */
.kentc-section {
	padding: 64px 20px;
}

/* 제품 블록 다음(사업분야 등)이 화면에서 끊겨 보이지 않도록 하단 여백 확보 */
#products.kentc-section {
	padding-bottom: 88px;
}

/* 상세 흰 박스 직후 구간이 잘리거나 붙어 보이는 현상 완화 */
#business.kentc-section {
	padding-top: 72px;
	border-top: 1px solid var(--kentc-line);
}

.kentc-section.alt {
	background: var(--kentc-bg);
}

.kentc-section-inner {
	max-width: var(--maxw);
	margin: 0 auto;
}

/* 내부 페이지 */
.kentc-inner-page {
	position: relative;
	z-index: 0;
	padding-top: 8px;
}

.kentc-inner-page .kentc-page-title {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: var(--kentc-navy);
	margin: 0 0 0.75em;
	font-weight: 700;
	line-height: 1.35;
}

.kentc-inner-page .kentc-prose {
	color: var(--kentc-muted);
	font-size: 16px;
	line-height: 1.75;
	max-width: 52em;
}

.kentc-inner-page .kentc-prose p {
	margin: 0 0 1em;
}

.kentc-reference-section-title {
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	color: var(--kentc-navy);
	margin: 1.25em 0 0.65em;
	font-weight: 700;
	line-height: 1.35;
}

.kentc-reference-landing-title {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: var(--kentc-navy);
	margin: 0 0 0.65em;
	font-weight: 700;
	line-height: 1.35;
}

.kentc-reference-pdf-card {
	max-width: 52em;
	margin-bottom: 0.5rem;
	padding: 22px 24px;
	background: var(--kentc-white);
	border: 1px solid var(--kentc-line);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(10, 35, 66, 0.06);
}

.kentc-reference-pdf-card + .kentc-reference-pdf-card {
	margin-top: 20px;
}

.kentc-reference-pdf-card-title {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--kentc-navy);
}

.kentc-reference-pdf-desc {
	margin: 0 0 16px !important;
	font-size: 15px;
}

.kentc-reference-pdf-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 0 !important;
}

a.kentc-reference-dl {
	font-weight: 600;
	color: var(--kentc-navy);
	text-decoration: underline;
	text-underline-offset: 3px;
	border-bottom: none;
}

a.kentc-reference-dl:hover {
	color: var(--kentc-accent-hover);
}

#kentc-reference-archive {
	scroll-margin-top: var(--kentc-scroll-offset);
}

.kentc-hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 24px;
	list-style: none;
	padding: 0;
}

.kentc-hub-grid a {
	display: block;
	padding: 22px 20px;
	background: var(--kentc-white);
	border: none;
	border-radius: 6px;
	/* Frame: inset shadow avoids global link border-bottom reset eating the box edge */
	box-shadow: inset 0 0 0 1px var(--kentc-line);
	font-weight: 600;
	color: var(--kentc-navy);
	text-align: center;
	transition: box-shadow 0.2s, color 0.2s;
}

.kentc-hub-grid a:hover {
	box-shadow:
		inset 0 0 0 1px var(--kentc-navy),
		0 6px 20px rgba(10, 35, 66, 0.08);
	color: var(--kentc-navy);
}

.kentc-section.alt .kentc-hub-grid a {
	background: var(--kentc-white);
}

.kentc-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
	border-bottom: 2px solid var(--kentc-navy);
	padding-bottom: 12px;
}

.kentc-section-head h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--kentc-navy);
}

.kentc-more {
	font-size: 14px;
	font-weight: 500;
	color: var(--kentc-muted);
}

.kentc-more:hover {
	color: var(--kentc-accent);
}

/* Notice */
.kentc-notice-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kentc-notice-list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--kentc-line);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}

.kentc-notice-item-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	width: 100%;
}

.kentc-notice-list a {
	flex: 1;
	min-width: 200px;
	color: var(--kentc-text);
}

.kentc-notice-list a:hover {
	color: var(--kentc-navy);
}

.kentc-notice-title {
	font-weight: 600;
	color: var(--kentc-navy);
	flex: 1;
	min-width: 200px;
}

.kentc-notice-body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--kentc-muted);
	white-space: pre-wrap;
	word-break: break-word;
	width: 100%;
	padding-top: 4px;
}

.kentc-notice-empty {
	color: var(--kentc-muted);
	font-size: 15px;
}

.kentc-notice-local-banner {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 1rem;
	padding: 12px 14px;
	background: #f0f7ff;
	border: 1px solid #c5daf7;
	border-radius: 8px;
	color: #1e3a5f;
}

.kentc-notice-local-banner[hidden] {
	display: none !important;
}

.kentc-notice-api-hint {
	font-size: 14px;
	margin-bottom: 1rem !important;
}

.kentc-notice-api-hint code {
	font-size: 13px;
}

.kentc-notice-compose {
	max-width: 40em;
	margin-top: 8px;
}

.kentc-notice-compose .kentc-btn-primary {
	width: auto;
	min-width: 140px;
}

.kentc-notice-form-status {
	margin-top: 12px !important;
	font-size: 14px;
	min-height: 1.4em;
}

.kentc-notice-form-status.is-ok {
	color: #1a6b3a;
}

.kentc-notice-form-status.is-error {
	color: #b42318;
}

.kentc-notice-date {
	font-size: 13px;
	color: var(--kentc-muted);
	white-space: nowrap;
}

.kentc-notice-toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.kentc-notice-item-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.kentc-notice-select-wrap {
	flex: 0 0 auto;
	padding-top: 2px;
	cursor: pointer;
}

.kentc-notice-select-wrap input {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
	accent-color: var(--kentc-navy);
}

.kentc-notice-item-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kentc-notice-item--clickable .kentc-notice-item-main {
	cursor: pointer;
	border-radius: 6px;
	padding: 2px 4px 2px 2px;
	margin: -2px -4px -2px -2px;
	transition: background-color 0.15s ease;
}

.kentc-notice-item--clickable .kentc-notice-item-main:hover {
	background: rgba(15, 40, 75, 0.06);
}

/* 공지 페이지는 밝은 배경 — 기본 kentc-btn-outline 이 흰 글씨라 보이지 않던 문제 */
.kentc-btn.kentc-btn-outline.kentc-notice-toolbar-btn {
	color: var(--kentc-navy);
	border-color: rgba(15, 40, 75, 0.45);
	background: var(--kentc-white);
}

.kentc-btn.kentc-btn-outline.kentc-notice-toolbar-btn:hover {
	color: var(--kentc-white);
	background: var(--kentc-navy);
	border-color: var(--kentc-navy);
}

.kentc-notice-item--clickable:not(.kentc-notice-item--selectable) {
	cursor: pointer;
	border-radius: 6px;
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 10px !important;
	padding-right: 10px !important;
	transition: background-color 0.15s ease;
}

.kentc-notice-item--clickable:not(.kentc-notice-item--selectable):hover,
.kentc-notice-item--clickable:not(.kentc-notice-item--selectable):focus {
	outline: none;
	background: rgba(15, 40, 75, 0.06);
}

.kentc-notice-item--selectable.kentc-notice-item--clickable {
	cursor: default;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.kentc-notice-item--selectable.kentc-notice-item--clickable:hover,
.kentc-notice-item--selectable.kentc-notice-item--clickable:focus {
	background: transparent;
}

.kentc-notice-readcount {
	font-size: 13px;
	font-weight: 500;
	color: var(--kentc-muted);
	white-space: nowrap;
}

.kentc-notice-readcount--compact {
	font-weight: 400;
	font-size: 12px;
	margin-left: 6px;
}

.kentc-notice-compose-wrap {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--kentc-line);
}

.kentc-notice-compose-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.kentc-notice-compose-head .kentc-reference-section-title {
	margin: 0;
}

body.kentc-site.kentc-notice-modal-open {
	overflow: hidden;
}

.kentc-notice-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	box-sizing: border-box;
}

.kentc-notice-modal[hidden] {
	display: none !important;
}

.kentc-notice-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	cursor: pointer;
}

.kentc-notice-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: min(85vh, 640px);
	overflow: auto;
	background: var(--kentc-white);
	border-radius: 10px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
	padding: 24px 28px 28px;
}

.kentc-notice-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	color: var(--kentc-muted);
	cursor: pointer;
	border-radius: 6px;
}

.kentc-notice-modal__close:hover {
	color: var(--kentc-navy);
	background: rgba(15, 40, 75, 0.06);
}

.kentc-notice-modal__title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--kentc-navy);
	margin: 0 40px 12px 0;
	line-height: 1.35;
}

.kentc-notice-modal__meta {
	font-size: 14px;
	color: var(--kentc-muted);
	margin: 0 0 16px;
}

.kentc-notice-modal__body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--kentc-text);
	white-space: pre-wrap;
	word-break: break-word;
}

/* Product grid */
.kentc-products-intro {
	margin-bottom: 28px;
	color: var(--kentc-muted);
	max-width: 720px;
}

.kentc-muted-lead {
	color: var(--kentc-muted);
	margin-bottom: 20px;
}

.kentc-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.kentc-product-card {
	background: var(--kentc-white);
	border: 1px solid var(--kentc-line);
	border-radius: 6px;
	padding: 28px 22px;
	transition: box-shadow 0.25s, border-color 0.25s;
	display: flex;
	flex-direction: column;
	min-height: 220px;
}

.kentc-product-card-thumb {
	display: block;
	margin: 0 0 14px;
	border-radius: 4px;
	overflow: hidden;
	border: none;
	box-shadow: inset 0 0 0 1px var(--kentc-line);
	line-height: 0;
	align-self: stretch;
	background: var(--kentc-bg);
	transition: box-shadow 0.25s, opacity 0.2s;
}

.kentc-product-card-thumb:hover {
	opacity: 0.94;
	box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.55);
}

.kentc-product-card-thumb:focus-visible {
	outline: 2px solid var(--kentc-accent);
	outline-offset: 2px;
}

.kentc-product-card-thumb img {
	width: 100%;
	height: 118px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.kentc-product-card-thumb img.kentc-product-thumb-placeholder {
	object-fit: contain;
	padding: 10px 14px;
	height: 96px;
	box-sizing: border-box;
}

.kentc-product-card:hover {
	box-shadow: 0 12px 36px rgba(10, 35, 66, 0.1);
	border-color: rgba(201, 162, 39, 0.45);
}

.kentc-product-card h3 {
	margin: 0 0 12px;
	font-size: 1.1rem;
	color: var(--kentc-navy);
}

.kentc-product-card p {
	margin: 0 0 auto;
	font-size: 14px;
	color: var(--kentc-muted);
	flex-grow: 1;
	flex-shrink: 0;
	min-height: 0;
}

.kentc-product-card .kentc-detail {
	margin-top: auto;
	padding-top: 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--kentc-navy);
}

.kentc-product-card .kentc-detail::after {
	content: " +";
	color: var(--kentc-accent);
}

/* 제품 카드·상세 앵커 — 고정 헤더에 가리지 않음 */
.kentc-product-card[id],
.kentc-detail-block,
.kentc-product-details,
#products,
#business,
#cert,
#contact,
#notice,
#pr,
#customer {
	scroll-margin-top: var(--kentc-scroll-offset);
}

.kentc-product-details {
	margin-top: 40px;
	margin-bottom: 8px;
	padding: 32px 28px 48px;
	background: var(--kentc-white);
	border: 1px solid var(--kentc-line);
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(10, 35, 66, 0.06);
	overflow: visible;
}

.kentc-product-details > .kentc-details-title {
	margin: 0 0 24px;
	padding-bottom: 14px;
	font-size: 1.25rem;
	color: var(--kentc-navy);
	border-bottom: 2px solid var(--kentc-navy);
}

.kentc-detail-block {
	margin-top: 0;
	padding-top: 28px;
	border-top: 1px solid var(--kentc-line);
}

.kentc-detail-block:first-of-type {
	padding-top: 0;
	border-top: none;
}

.kentc-detail-block + .kentc-detail-block {
	margin-top: 0;
}

.kentc-detail-block h3 {
	color: var(--kentc-navy);
	margin-bottom: 14px;
	font-size: 1.15rem;
}

.kentc-detail-block p {
	color: var(--kentc-muted);
	margin-bottom: 12px;
}

.kentc-detail-block ul {
	margin: 0 0 12px;
	padding-left: 1.25em;
	color: var(--kentc-muted);
	font-size: 15px;
	line-height: 1.7;
}

.kentc-detail-block li + li {
	margin-top: 6px;
}

.kentc-detail-block p:last-child,
.kentc-detail-block ul:last-child {
	margin-bottom: 0;
}

/* 제품 실물 사진 + 본문 (화재감시 HMI 등) */
.kentc-detail-with-photo {
	display: grid;
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.kentc-detail-with-photo > * {
	min-width: 0;
}

@media (min-width: 900px) {
	.kentc-detail-with-photo {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	}
}

.kentc-product-shot {
	margin: 0;
	text-align: center;
	min-width: 0;
}

.kentc-product-shot img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	max-height: min(520px, 70vh);
	object-fit: contain;
	margin: 0 auto;
	border-radius: 6px;
	box-shadow: 0 8px 32px rgba(10, 35, 66, 0.15);
	background: #0d1f35;
}

.kentc-product-shot figcaption {
	margin-top: 14px;
	font-size: 14px;
	color: var(--kentc-muted);
	line-height: 1.55;
	text-align: center;
	padding: 0 8px;
}

/* Two column biz */
.kentc-biz-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.kentc-biz-block h3 {
	margin: 0 0 12px;
	font-size: 1.15rem;
	color: var(--kentc-navy);
}

.kentc-biz-block p {
	margin: 0;
	color: var(--kentc-muted);
	font-size: 15px;
}

/* Quick links */
.kentc-quick {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kentc-quick a {
	display: block;
	padding: 20px;
	background: var(--kentc-white);
	border: 1px solid var(--kentc-line);
	border-radius: 6px;
	text-align: center;
	font-weight: 600;
	color: var(--kentc-navy);
}

.kentc-quick a:hover {
	border-color: var(--kentc-navy);
	background: var(--kentc-navy);
	color: var(--kentc-white);
}

/* CTA band */
.kentc-cta-band {
	background: linear-gradient(90deg, var(--kentc-navy) 0%, #1a4a6e 100%);
	color: var(--kentc-white);
	padding: 48px 20px;
	text-align: center;
}

.kentc-cta-band h2 {
	margin: 0 0 10px;
	font-size: 1.45rem;
	color: var(--kentc-white);
}

.kentc-cta-band p {
	margin: 0 0 24px;
	opacity: 0.9;
	font-weight: 300;
}

.kentc-cta-band .kentc-hero-cta {
	margin-top: 8px;
}

/* Contact */
.kentc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
}

@media (max-width: 768px) {
	.kentc-contact-grid {
		grid-template-columns: 1fr;
	}
}

/* 문의 폼 영역 — 옆 박스와 동일하게 네 면 테두리가 보이도록 */
.kentc-form-panel {
	background: var(--kentc-white);
	padding: 28px;
	border-radius: 6px;
	border: 1px solid var(--kentc-line);
	box-shadow: 0 2px 12px rgba(10, 35, 66, 0.06);
	box-sizing: border-box;
}

.kentc-form .field {
	margin-bottom: 16px;
}

.kentc-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--kentc-navy);
}

.kentc-form input,
.kentc-form select,
.kentc-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--kentc-line);
	border-radius: 4px;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}

.kentc-form textarea {
	min-height: 120px;
	resize: vertical;
}

.kentc-check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--kentc-muted);
}

.kentc-check input[type="checkbox"] {
	margin-top: 2px;
}

.kentc-form .kentc-btn-primary {
	width: 100%;
}

.kentc-form-hint {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--kentc-muted);
}

.kentc-contact-info {
	/* 섹션(alt)과 동일 배경이면 하단 라인이 묻혀 보일 수 있어 흰 패널로 구분 */
	background: var(--kentc-white);
	padding: 28px;
	border-radius: 6px;
	border: 1px solid var(--kentc-line);
	box-shadow:
		0 1px 0 rgba(10, 35, 66, 0.06),
		0 2px 12px rgba(10, 35, 66, 0.06);
}

.kentc-contact-info h3 {
	margin: 0 0 8px;
	font-size: 15px;
	color: var(--kentc-navy);
}

.kentc-contact-info p,
.kentc-contact-info address {
	margin: 0 0 20px;
	font-style: normal;
	color: var(--kentc-muted);
	font-size: 14px;
	line-height: 1.7;
}

.kentc-contact-info p:last-child {
	margin-bottom: 0;
}

/* Cert list */
.kentc-cert-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.kentc-cert-table th,
.kentc-cert-table td {
	border: 1px solid var(--kentc-line);
	padding: 12px 14px;
	text-align: left;
}

.kentc-cert-table th {
	background: var(--kentc-navy);
	color: var(--kentc-white);
	font-weight: 600;
}

.kentc-cert-table tbody tr:nth-child(even) {
	background: #fafbfc;
}

/* Footer */
.kentc-footer {
	background: var(--kentc-navy-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 40px 20px 24px;
	font-size: 14px;
}

.kentc-footer a {
	color: rgba(255, 255, 255, 0.85);
}

.kentc-footer a:hover {
	color: var(--kentc-accent);
}

.kentc-footer-inner {
	max-width: var(--maxw);
	margin: 0 auto;
}

.kentc-footer-top {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 48px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kentc-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kentc-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	font-size: 13px;
}

.kentc-footer-contact strong {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}

.kentc-footer-visit {
	white-space: nowrap;
}

.kentc-footer .kentc-logo {
	border-bottom: none;
}

.kentc-footer .kentc-logo:hover {
	opacity: 0.9;
}

/* Mobile nav */
@media (max-width: 640px) {
	:root {
		--kentc-scroll-offset: 96px;
	}
}

@media (max-width: 1024px) {
	.kentc-nav-toggle {
		display: flex;
	}

	.kentc-nav {
		position: fixed;
		top: var(--header-sticky-total);
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--kentc-white);
		padding: 20px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
		/* 닫힌 상태에서 화면 밖에 있어도 터치·스크롤을 가로채는 브라우저 대응 */
		pointer-events: none;
	}

	body.kentc-nav-open .kentc-nav {
		transform: translateX(0);
		pointer-events: auto;
	}

	.kentc-nav > ul {
		flex-direction: column;
		gap: 0;
		padding-bottom: 48px;
	}

	.kentc-nav > ul > li > a {
		padding: 14px 0;
		border-bottom: 1px solid var(--kentc-line);
	}

	.kentc-submenu {
		display: block;
		position: static;
		box-shadow: none;
		border: none;
		padding: 0 0 12px 12px;
	}

	.kentc-nav li:not(:hover) .kentc-submenu {
		display: block;
	}
}
