/* ==========================================
   업종별 랜딩 페이지 (/for/*) 공용 스타일
   - 3개 페이지가 공유하므로 페이지 인라인 대신 별도 파일로 분리
   - 색상/반경/그림자는 style.css :root 토큰만 사용
   ========================================== */

/* Hero */
.ind-hero {
	padding: 140px 0 72px;
	background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
	text-align: center;
}

.ind-badge {
	display: inline-block;
	padding: 6px 16px;
	margin-bottom: 20px;
	background: var(--white);
	border: 1px solid var(--primary-light);
	border-radius: var(--radius-full);
	color: var(--primary);
	font-size: 0.875rem;
	font-weight: 600;
}

.ind-hero h1 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--gray-900);
	margin-bottom: 20px;
	word-break: keep-all;
}

.ind-hero h1 .accent {
	color: var(--primary);
}

.ind-hero-desc {
	max-width: 640px;
	margin: 0 auto 32px;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--gray-600);
	word-break: keep-all;
}

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

.ind-hero-note {
	margin-top: 16px;
	font-size: 0.875rem;
	color: var(--gray-500);
}

/* Section common */
.ind-section {
	padding: 80px 0;
}

.ind-section.bg-gray {
	background: var(--gray-50);
}

.ind-section-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--gray-900);
	text-align: center;
	margin-bottom: 12px;
	word-break: keep-all;
}

.ind-section-desc {
	text-align: center;
	color: var(--gray-600);
	margin-bottom: 48px;
	word-break: keep-all;
}

/* Pain points */
.ind-pain-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ind-pain-card {
	padding: 28px 24px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
}

.ind-pain-card .ind-pain-quote {
	font-size: 1.063rem;
	font-weight: 600;
	color: var(--gray-800);
	line-height: 1.5;
	margin-bottom: 10px;
	word-break: keep-all;
}

.ind-pain-card p {
	font-size: 0.938rem;
	color: var(--gray-600);
	line-height: 1.6;
	word-break: keep-all;
}

/* Solution list */
.ind-solution-list {
	max-width: 820px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

.ind-solution-list li {
	display: flex;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--gray-200);
}

.ind-solution-list li:last-child {
	border-bottom: none;
}

.ind-check {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: var(--radius-full);
	background: var(--primary-bg);
	color: var(--primary);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ind-solution-list h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 6px;
	word-break: keep-all;
}

.ind-solution-list p {
	font-size: 0.975rem;
	color: var(--gray-600);
	line-height: 1.65;
	word-break: keep-all;
}

/* Flow steps */
.ind-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	counter-reset: indstep;
}

.ind-flow-step {
	position: relative;
	padding: 24px 20px;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.ind-flow-step::before {
	counter-increment: indstep;
	content: counter(indstep);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-bottom: 12px;
	border-radius: var(--radius-full);
	background: var(--primary);
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 700;
}

.ind-flow-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 6px;
}

.ind-flow-step p {
	font-size: 0.9rem;
	color: var(--gray-600);
	line-height: 1.6;
	word-break: keep-all;
}

/* FAQ (details/summary: JS 없이 동작) */
.ind-faq {
	max-width: 820px;
	margin: 0 auto;
}

.ind-faq details {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	margin-bottom: 12px;
}

.ind-faq summary {
	min-height: 44px;
	padding: 18px 48px 18px 20px;
	font-weight: 600;
	color: var(--gray-900);
	cursor: pointer;
	list-style: none;
	position: relative;
	word-break: keep-all;
}

.ind-faq summary::-webkit-details-marker {
	display: none;
}

.ind-faq summary::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25rem;
	color: var(--primary);
}

.ind-faq details[open] summary::after {
	content: "\2212";
}

.ind-faq summary:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
	border-radius: var(--radius-md);
}

.ind-faq .ind-faq-answer {
	padding: 0 20px 20px;
	color: var(--gray-600);
	line-height: 1.7;
	word-break: keep-all;
}

/* 다른 업종 링크 */
.ind-other {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ind-other a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 20px;
	border: 1px solid var(--gray-300);
	border-radius: var(--radius-full);
	color: var(--gray-700);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.ind-other a:hover,
.ind-other a:focus-visible {
	border-color: var(--primary);
	color: var(--primary);
}

/* Tablet */
@media (max-width: 1024px) {
	.ind-flow {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile: 카드 세로 흐름 */
@media (max-width: 640px) {
	.ind-hero {
		padding: 108px 0 48px;
	}

	.ind-hero h1 {
		font-size: 1.75rem;
	}

	.ind-hero-desc {
		font-size: 1rem;
	}

	.ind-hero-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.ind-section {
		padding: 56px 0;
	}

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

	.ind-section-desc {
		margin-bottom: 32px;
	}

	.ind-pain-grid,
	.ind-flow {
		grid-template-columns: 1fr;
	}
}
