/* ============================================
   catalog_sample_step1.html / step2.html °øÅë Àü¿ë ½ºÅ¸ÀÏ
   ÅÇ(.step1_snb) ½ºÅ¸ÀÏÀº sub.css °øÅë ÅÇÀ¸·Î ÅëÇÕµÊ
   ============================================ */

.step1_snb {
	margin: 28px 0 0;
}

.catalog_step1_wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ÆäÀÌÁö Å¸ÀÌÆ² */
.catalog_step1_wrap .step1_page_ttl {
	margin: 80px 0 32px;
}

.catalog_step1_wrap .step1_page_ttl h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1f1f1f;
	letter-spacing: -0.02em;
}

/* ¼­ºñ½º ¼±ÅÃ ÅÇ (PC) */
.service_tab {
	display: flex;
	gap: 12px;
	margin-bottom: 70px;
}

.service_tab_btn {
	flex: 1;
	padding: 22px 20px;
	background: #fff;
	border: 1px solid #d7dbe5;
	border-radius: 4px;
	font-size: 17px;
	font-weight: 500;
	color: #222;
	cursor: pointer;
	text-align: center;
	transition: all 0.15s ease;
}

.service_tab_btn:hover {
	border-color: #5072ff;
	color: #5072ff;
}

.service_tab_btn.active {
	border-color: #5072ff;
	color: #5072ff;
	font-weight: 700;
}

/* ¼­ºñ½º ¼±ÅÃ (¸ð¹ÙÀÏ µå·Ó´Ù¿î) */
.service_select {
	display: none;
	position: relative;
	margin-bottom: 40px;
}

.service_select_btn {
	width: 100%;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #d7dbe5;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.service_select_btn::after {
	content: '';
	position: absolute;
	right: 22px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #4a4a4a;
	border-bottom: 2px solid #4a4a4a;
	transform: translateY(-70%) rotate(45deg);
}

.service_select_list {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d7dbe5;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 10;
}

.service_select.open .service_select_list {
	display: block;
}

.service_select.open .service_select_btn::after {
	transform: translateY(-30%) rotate(-135deg);
}

.service_select_list li {
	border-bottom: 1px solid #f0f1f5;
}

.service_select_list li:last-child {
	border-bottom: none;
}

.service_select_list li a {
	display: block;
	padding: 16px 20px;
	color: #333;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
}

.service_select_list li a:hover {
	background: #f8f9fc;
	color: #5072ff;
}

/* ¸ÞÀÎ ÀÎÆ®·Î */
.service_intro {
	text-align: center;
	margin-bottom: 100px;
}

.service_intro .brand_label {
	display: block;
	color: #5072ff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.02em;
}

.service_intro .intro_title {
	font-size: 30px;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.4;
	margin-bottom: 26px;
	letter-spacing: -0.02em;
}

.service_intro .intro_desc {
	font-size: 17px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 50px;
}

.service_visual {
	max-width: 1200px;
	margin: 0 auto;
}

.service_visual img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

/* Æ¯Â¡ ¼½¼Ç */
.service_feature {
	margin-bottom: 70px;
}

.service_feature .feature_head {
	text-align: center;
	margin-bottom: 50px;
}

.service_feature .feature_head h3 {
	font-size: 26px;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.4;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.service_feature .feature_head p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
}

.feature_list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature_item {
	background: #f3f5fa;
	border-radius: 10px;
	padding: 55px 65px;
	display: flex;
	align-items: center;
	gap: 60px;
}

.feature_icon {
	flex-shrink: 0;
	width: 130px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.feature_icon::after {
	content: '';
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 130px;
	background: #d9deea;
}

.feature_icon img {
	max-width: 116px;
	max-height: 112px;
	width: auto;
	height: auto;
}

.feature_text {
	flex: 1;
	min-width: 0;
}

.feature_text h4 {
	font-size: 22px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
}

.feature_text p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
}

.feature_text .feature_tags {
	margin-top: 10px;
	color: #8a8f9c;
	font-size: 15px;
	line-height: 1.7;
}

/* ÀûÇÕ ¾È³» ¹Ú½º (Ã¼Å©¹Ú½º + ¶óº§) */
.service_suitable {
	margin-top: 56px;
	padding: 22px 24px;
	border: 1px solid #e3e6ee;
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service_suitable input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.service_suitable label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
	color: #333;
	margin: 0;
	user-select: none;
}

.suitable_check {
	flex-shrink: 0;
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #cdd2dd;
	position: relative;
	transition: background-color 0.15s ease;
}

.suitable_check::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translate(-50%, -70%) rotate(-45deg);
}

.service_suitable input[type="checkbox"]:checked + label .suitable_check {
	background-color: #5072ff;
}

.service_suitable input[type="checkbox"]:focus-visible + label .suitable_check {
	outline: 2px solid #5072ff;
	outline-offset: 2px;
}

.service_suitable label a {
	color: #5072ff;
	text-decoration: underline;
	font-weight: 500;
}

/* ´ÙÀ½ ¹öÆ° */
.catalog_step1_wrap .step1_controller {
	margin: 28px 0 80px;
	text-align: center;
}

.catalog_step1_wrap .step1_controller .btn_next {
	width: 100%;
	max-width: 460px;
	padding: 22px;
	background: #5072ff;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.catalog_step1_wrap .step1_controller .btn_next:hover {
	background: #3d5fe5;
}

/* ============================================
   ÄÜÅ¹ºñÁî Å×¸¶ (º¸¶ó»ö Åæ)
   ============================================ */
.catalog_step1_wrap.theme_contak .service_tab_btn:hover,
.catalog_step1_wrap.theme_contak .service_tab_btn.active {
	border-color: #7b6fff;
	color: #7b6fff;
}

.catalog_step1_wrap.theme_contak .service_select_list li a:hover {
	color: #7b6fff;
}

.catalog_step1_wrap.theme_contak .brand_label {
	color: #7b6fff;
}

/* ============================================
   ¹ÝÀÀÇü (¸ð¹ÙÀÏ)
   ============================================ */
@media (max-width: 768px) {
	.catalog_step1_wrap {
		padding: 0 16px;
	}

	.catalog_step1_wrap .step1_page_ttl {
		margin: 24px 0 22px;
	}

	.catalog_step1_wrap .step1_page_ttl h2 {
		font-size: 24px;
	}

	.service_tab {
		display: none;
	}

	.service_select {
		display: block;
	}

	.service_intro {
		margin-bottom: 64px;
	}

	.service_intro .brand_label {
		font-size: 15px;
		margin-bottom: 14px;
	}

	.service_intro .intro_title {
		font-size: 22px;
		line-height: 1.45;
		margin-bottom: 20px;
	}

	.service_intro .intro_desc {
		font-size: 15px;
		margin-bottom: 36px;
	}

	.service_visual img {
		border-radius: 8px;
	}

	.service_feature .feature_head {
		margin-bottom: 36px;
	}

	.service_feature .feature_head h3 {
		font-size: 19px;
		margin-bottom: 18px;
	}

	.service_feature .feature_head p {
		font-size: 14px;
	}

	.feature_list {
		gap: 20px;
	}

	.feature_item {
		flex-direction: column;
		align-items: flex-start;
		padding: 36px 28px;
		gap: 24px;
	}

	.feature_icon {
		width: 100%;
		height: auto;
		padding: 4px 0 18px;
		justify-content: center;
		border-bottom: 1px solid #d9deea;
	}

	.feature_icon::after {
		display: none;
	}

	.feature_icon img {
		max-width: 90px;
		max-height: 90px;
	}

	.feature_text h4 {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.feature_text p {
		font-size: 14px;
	}

	.feature_text .feature_tags {
		font-size: 13px;
	}

	.service_suitable {
		margin-top: 40px;
		padding: 18px 16px;
		font-size: 14px;
	}

	.service_suitable p {
		font-size: 14px;
	}

	.suitable_check {
		width: 20px;
		height: 20px;
	}

	.catalog_step1_wrap .step1_controller {
		margin: 24px 0 60px;
	}

	.catalog_step1_wrap .step1_controller .btn_next {
		max-width: none;
		padding: 18px;
		font-size: 16px;
	}
}
