/* ==========================================================================
   OSBC main-design2 — iso-5230.css (ISO 5230 인증 컨설팅 전용)
   Service Hero(C+H 틴트 밴드) / Overview(좌텍스트+우 3포인트)
   Process(I 가로 5스텝) / Benefits(A 카드 4열) / Related(틴트 카드 2장)
   CTA(F)는 common.css 재사용. 데스크탑 전용(@media 없음).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Service Hero — 패턴 C+H. 라이트 틴트 풀폭 밴드 + 좌 텍스트 / 우 이미지 슬롯
   -------------------------------------------------------------------------- */
.service-hero {
	background: var(--c-tint);
}

.service-hero-inner {
	display: flex;
	align-items: center;
	gap: 72px;
	height: 460px;
}

.service-hero-copy {
	flex: 1;
	min-width: 0;
}

.service-hero-copy .eyebrow {
	margin-bottom: 16px;
}

.service-hero-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
}

.service-hero-desc {
	margin-top: 20px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--c-text-sub);
	max-width: 620px;
}

.service-hero-copy .btn {
	margin-top: 32px;
}

/* 우측 비주얼 슬롯 — 틴트 밴드 위 가독을 위해 화이트 반투명으로 살짝 분리 */
.service-hero-visual {
	flex-shrink: 0;
	width: 460px;
	height: 300px;
}

.service-hero-visual .img-slot {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.55);
	border-color: var(--c-tint-2);
}

/* --------------------------------------------------------------------------
   Overview — 좌 텍스트 / 우 WHO·WHY·HOW 3포인트 세로 리스트 (화이트)
   -------------------------------------------------------------------------- */
.overview-layout {
	display: flex;
	align-items: flex-start;
	gap: 96px;
}

.overview-copy {
	flex: 1;
	min-width: 0;
}

.overview-copy .eyebrow {
	margin-bottom: 14px;
}

.overview-para {
	margin-top: 22px;
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--c-text);
	max-width: 560px;
}

.overview-points {
	width: 480px;
	flex-shrink: 0;
	border-top: 1px solid var(--c-border);
}

.overview-point {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 26px 4px;
	border-bottom: 1px solid var(--c-border);
}

.overview-point .chip {
	flex-shrink: 0;
	min-width: 58px;
	justify-content: center;
	margin-top: 2px;
}

.overview-point-title {
	font-size: 17px;
	font-weight: 700;
}

.overview-point-desc {
	margin-top: 6px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--c-text-sub);
}

/* --------------------------------------------------------------------------
   Process — 패턴 I. 가로 5스텝, 넘버 원형(틴트+deep) + 얇은 연결선 (bg-alt 밴드)
   -------------------------------------------------------------------------- */
.section-process .section-head {
	margin-bottom: 56px;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	counter-reset: process;
}

.process-step {
	position: relative;
}

.process-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-pill);
	background: var(--c-tint);
	border: 1px solid var(--c-tint-2);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--c-primary-deep);
	font-variant-numeric: tabular-nums;
}

/* 스텝 사이 얇은 연결선 — 원형 중심 높이에서 다음 원형 좌측까지 */
.process-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 26px;
	left: 64px;
	right: -32px;
	height: 1px;
	background: var(--c-border);
}

.process-step-title {
	margin-top: 22px;
	font-size: 18px;
	font-weight: 700;
}

.process-step-desc {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--c-text-sub);
}

/* --------------------------------------------------------------------------
   Benefits — 패턴 A. 화이트 카드 4열, 라인 아이콘(deep currentColor)
   -------------------------------------------------------------------------- */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.benefit-card {
	padding: 30px 26px 28px;
}

.benefit-icon {
	width: 36px;
	height: 36px;
	color: var(--c-primary-deep);
}

.benefit-icon svg {
	width: 100%;
	height: 100%;
}

.benefit-title {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700;
}

.benefit-desc {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--c-text-sub);
}

/* --------------------------------------------------------------------------
   Related — 틴트 카드 2장 (칩 + 타이틀 + 설명 + 링크). Benefits와 표현 차별화
   -------------------------------------------------------------------------- */
.section-related {
	padding-top: 0;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* 그리드 셀 높이를 카드가 꽉 채우도록 — 두 카드 높이 통일 */
.related-card {
	display: block;
	height: 100%;
	padding: 36px 38px 32px;
}

/* 틴트 배경 위 칩 — 화이트 반투명 필 (main.css .service-no와 동일 계열) */
.related-tag {
	display: inline-flex;
	padding: 5px 14px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--c-tint-2);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-primary-deep);
}

.related-title {
	margin-top: 18px;
	font-size: 23px;
	font-weight: 700;
}

.related-desc {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--c-text-sub);
}

.related-link {
	display: inline-block;
	margin-top: 18px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--c-primary-deep);
}

.related-link .arrow {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
}

.related-card:hover .related-link .arrow {
	transform: translateX(4px);
}
