/* ============================
   공통 폭
============================ */
.common-width {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}

/* ============================
   히어로 영역
============================ */
.home-hero-wrap {
	background: #f4f7f9;
	padding: 80px 0 100px;
}

.home-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hero-left {
	flex: 1.1;
}

.hero-right {
	flex: 1;
	text-align: right;
}

.hero-right img {
	max-width: 100%;
	height: auto;
	opacity: .3;
}

/* 히어로 구역 배경 텍스트 */
.home-hero-wrap {
	position: relative;
	overflow: hidden;
}

.home-hero-wrap::before {
	content: "Accounting Lab.";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	/* 크기 조절 */
	font-size: 120px;             /* 중요! 필요하면 160px / 200px 도 가능 */
	font-weight: 800;
	letter-spacing: -1px;

	/* 색상 및 흐림 효과 */
	color: rgba(0, 0, 0, 0.05);    /* 글자 아주 연하게 */
	white-space: nowrap;

	/* 흐림 처리가 필요하면 사용 */
	/* filter: blur(2px); */

	pointer-events: none;
	user-select: none;
	z-index: 0;
}

/* 실제 내용이 배경보다 위에 오도록 */
.home-hero {
	position: relative;
	z-index: 2;
}


/* 타이포 */
.hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: #222;
	margin-bottom: 18px;
}

.hero-sub {
	font-size: 1.6rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.6;
}
.hero-sub strong {
	color: #5cb2af;
}

.hero-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.9;
	margin-bottom: 50px;
}

/* CTA 버튼 */
.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 12px 26px;
	background: var(--brand-line-color);
	color: #fff !important;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(42, 175, 163, 0.3);
	transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.hero-btn:hover {
	background: #21968c;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(42, 175, 163, 0.4);
}

/* ============================
   서비스 카드 섹션
============================ */
.home-services-wrap {
	background: #ffffff;
	padding: 40px 0 120px;
}

.section-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin-bottom: 60px;
}

.service-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.service-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--brand-line-color);
	padding: 20px 0 18px;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

.service-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.service-icon img {
	height: 40px;
	width: auto;
}

.service-icon svg {
	width: 50px;
	height: 50px;
	fill: var(--brand-line-color) !important;
}

.service-name {
	font-size: 16px;
	font-weight: 700;
	/*color: #1c7470;*/
	margin-bottom: 8px;
	padding: 10px 0;
	background-color: var(--brand-line-color);
	color: #fff;
}

.service-text {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	padding: 0 6px;
	letter-spacing: -1px;
}

/* ============================
   추천 대상 섹션
============================ */
.home-recommend-wrap {
	background: #f5f8fa;
	padding: 80px 0 100px;
}

.home-recommend {
	text-align: center;
}

.rec-sub {
	font-size: 20px;
	color: #666;
	margin-bottom: 10px;
}

.rec-title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 58px;
}

.rec-title span {
	color: #2aafa3;
}

/* 카드 레이아웃 */
.rec-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-bottom: 30px;
}

/* 추천 카드 */
.rec-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 말풍선 */
.rec-bubble {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e1e7ee;
	padding: 14px 12px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
	min-height: 120px;
	box-sizing: border-box;
	width: 100%;
}

.rec-bubble p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin: 0;
	letter-spacing: -1px;
}

/* 아바타 */
.rec-avatar {
	position: relative;
	margin-top: -18px;
	z-index: 2;
}

.rec-avatar img {
	width: auto;
	height: 150px;
	border-radius: 50%;
}

/* 라벨 */
.rec-label {
	margin-top: -15px;
	background: var(--brand-line-color);
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0 0 14px 14px;
	padding: 10px 8px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

/* CTA */
.rec-cta {
	margin-top: 70px;
}

.rec-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 80px;
	border-radius: 999px;
	background: var(--brand-orange);
	color: #fff !important;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	/*box-shadow: 0 10px 22px rgba(255, 156, 33, 0.3);*/
	transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.rec-btn:hover {
	background: #f58707;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(255, 156, 33, 0.4);
}

/* ============================
   하단 특징 3개
============================ */
.home-strength-wrap {
	background: #ffffff;
	padding: 100px 0 80px;
	border-top: 1px solid #e4e8ed;
}

.home-strength {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	text-align: center;
}

.strength-box {
	max-width: 220px;
}

.strength-icon svg {
	height: 60px;
	width: auto;
	margin-bottom: 8px;
	fill: var(--brand-line-color) !important;
	stroke: var(--brand-line-color) !important;
}

.strength-title {
	font-size: 16px;
	font-weight: 700;
	color: #222;
	margin-bottom: 4px;
}

.strength-text {
	font-size: 14px;
	color: #555;
}

/* ============================
   반응형
============================ */
@media (max-width: 1024px) {
	.home-hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-right {
		text-align: center;
	}

	.service-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.rec-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-strength {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.home-hero-wrap {
		padding: 30px 0 50px;
	}

	.hero-title {
		font-size: 30px;
	}

	.hero-sub {
		font-size: 16px;
	}

	.hero-desc {
		font-size: 13px;
	}

	.service-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.rec-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-strength {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.service-row {
		grid-template-columns: 1fr;
	}

	.rec-row {
		grid-template-columns: 1fr;
	}
}
