* {
	color: #000;
}

:root {
	--brand-color: #1743B4;
	--accent-color: rgb(17, 238, 146);
	--bs-main-color: #1743B4;
	--bs-bg-light: #f7f8fb;
	--bs-text-main: #222;
	--bs-text-sub: #555;
}

body {
	padding-top: env(safe-area-inset-top, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
}

.base_width {
	max-width: 1200px;
	margin: 0 auto;
}

.section {
	padding: 50px 0;
}


.main__section {
	background: var(--brand-color);
	width: 100%;
	aspect-ratio: 16/9;
	max-height: 900px;
	min-height: 300px;
	position: relative;
	z-index: 0;
}


.back__circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 50%;
	background-color: #2b52b4;
	border-radius: 999px;
	z-index: -1;
}

.main__contents {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	width: 70%;
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
}

.main__contents .main__desc {
	display: flex;
	flex-direction: column;
}

.main__desc span {
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
}

.main__desc .accent {
	color: var(--accent-color);
}

.signup_btn {
	background-color: var(--accent-color);
	padding: 12px 24px;
	border-radius: 10px;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
}

.signup_btn span {
	font-size: 20px !important;
	color: rgb(30, 45, 64) !important;
	font-weight: 700 !important;
}

.signup_btn svg {
	width: 24px;
	color: rgb(30, 45, 64);
}

.main__image__fixed {
	position: absolute;
	bottom: 0;
	right: 0;
}

.main__image__wrapper {
	position: relative;
	width: 600px;
	aspect-ratio: 1;
	/* 16:9 → (9 / 16 * 100) */
	overflow: hidden;
}

.main__image__wrapper img {
	position: absolute;
	right: 0;
	left: 0;
	bottom: -40px;
	/* top:0; right:0; bottom:0; left:0; */
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 꽉 채우고 남는 부분은 잘라냄 */
	display: block;
}

.bs-feature-section {
	padding: 60px 16px;
	background: #ffffff;
}

.bs-feature-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* 제목 */
.bs-feature-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--bs-main-color);
	text-align: left;
	margin-bottom: 32px;
}

/* 카드 그리드 */
.bs-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/* 카드 기본 스타일 */
.bs-card {
	background: var(--bs-bg-light);
	border-radius: 16px;
	padding: 24px 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bs-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* 아이콘 */
.bs-card-icon-wrap {
	width: 50%;
	aspect-ratio: 1;
	border-radius: 999px;
	background: rgba(23, 67, 180, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	overflow: hidden;
	margin: 20px auto;
}

.bs-card-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 카드 텍스트 */
.bs-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--bs-text-main);
	margin-bottom: 8px;
}

.bs-card-text {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--bs-text-sub);
}

/* 반응형 – 태블릿, PC */
@media (min-width: 768px) {
	.bs-feature-title {
		font-size: 2.5rem;
		margin-bottom: 40px;
	}

	.bs-card-icon-wrap {
		width: 80%;
	}

	.bs-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}

	.bs-card {
		padding: 26px 22px;
	}
}

.bs-review-section {
	padding: 70px 16px;
	background: var(--brand-color);
}

.bs-review-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.bs-review-title {
	text-align: left;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 32px;
}

/* NEW: 마퀴 래퍼 */
.bs-review-marquee {
	overflow: hidden;
	position: relative;
}

/* NEW: 실제로 움직이는 트랙 */
.bs-review-track {
	display: inline-flex;
	gap: 20px;
	animation: bs-review-marquee 30s linear infinite;
}

/* hover 시 일시정지 */
.bs-review-marquee:hover .bs-review-track {
	animation-play-state: paused;
}

/* 카드 기본 스타일 */
.bs-review-card {
	background: var(--bs-bg-light);
	padding: 24px 20px;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
	transition: transform .18s ease, box-shadow .18s ease;

	/* NEW: 가로로 흘러가야 하니까 고정 폭 지정 */
	min-width: 280px;
	max-width: 320px;
	flex: 0 0 auto;
}

.bs-review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* 프로필 */
.bs-review-profile {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.bs-review-photo {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	object-fit: cover;
}

.bs-review-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bs-text-main);
}

.bs-review-label {
	font-size: 0.85rem;
	color: var(--bs-text-sub);
}

.bs-review-text {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--bs-text-sub);
}

/* NEW: 무한 루프용 keyframes */
@keyframes bs-review-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		/* 카드 세트를 두 번 넣었기 때문에 전체의 절반만 이동 */
		transform: translateX(-50%);
	}
}

/* 큰 화면에서 속도·간격 조금 조정 */
@media (min-width: 768px) {
	.bs-review-title {
		font-size: 2.5rem;
		margin-bottom: 40px;
	}

	.bs-review-track {
		gap: 24px;
		animation-duration: 35s;
	}

	.bs-review-card {
		min-width: 320px;
	}
}

.section .text-common {
	line-height: 44px;
	font-size: 35px;
	font-weight: 600;
}

.section .txt {
	font-size: 20px;
	font-weight: 600;
}

.section .shadow_box {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.section .box_wrap {
	width: 100%;
	gap: 0 15px;
	display: flex;
}

.section .box_wrap .box {
	width: calc(33.333% - 10px);
}

.section .box_wrap .box .subject {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.section .box_wrap .box .thumb {
	margin-bottom: 20px;
}

.section .box_wrap .box .thumb img {
	width: 100%;
}

.section .box_wrap .box .title {
	font-size: 23px;
	font-weight: 600;
	padding: 0 20px 15px;
}

.section .box_wrap .box ul {
	padding: 0 15px;
}

.section .box_wrap .box ul li {
	position: relative;
	font-size: 20px;
	padding-left: 15px;
}

.section .box_wrap .box ul li:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #000;
	margin: auto 0;
}

.section .link_btn {
	width: fit-content;
	height: 50px;
	background-color: #000;
	color: #fff;
	padding: 0 30px;
	margin: 25px auto 0;
	font-size: 25px;
	font-weight: 600;
	border-radius: 90px;
	align-items: center;
	display: flex;
}

@media(max-width: 1500px) {

	.main__desc span {
		font-size: 2.5rem;
	}

	.main__image__wrapper {
		width: 500px;
	}

}

@media(max-width: 1250px) {
	.main__image__wrapper {
		width: 400px;
	}

	.section .text-common,
	.section .box_wrap {
		padding: 0 25px;
	}

	.section .box_wrap {
		overflow-x: auto;
	}

	.section .box_wrap::-webkit-scrollbar {
		display: none;
	}

	.section .box_wrap .box {
		width: 380px;
		flex-shrink: 0;
	}
}

@media(max-width: 768px) {

	.main__desc span {
		font-size: 2.0rem;
	}

	.main__image__wrapper {
		width: 0px;
	}

	.back__circle {
		border-radius: 30px;
		height: 80%;

	}

	.section {
		padding: 25px 0;
	}

	.section .text-common {
		line-height: 34px;
		font-size: 28px;
	}
}

@media(max-width: 480px) {
	.section .text-common {
		line-height: 28px;
		font-size: 22px;
	}

	.section .txt {
		font-size: 16px;
	}

	.section .box_wrap .box {
		width: 250px;
	}

	.section .box_wrap .box .subject {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.section .box_wrap .box .thumb {
		margin-bottom: 10px;
	}

	.section .box_wrap .box .title {
		font-size: 16px;
		padding: 0 10px 10px;
	}

	.section .box_wrap .box ul li {
		font-size: 14px;
	}

	.section .box_wrap .box ul li:before {
		width: 4px;
		height: 4px;
	}

	.section .link_btn {
		height: 40px;
		padding: 0 20px;
		font-size: 15px;
		margin-top: 20px;
	}
}

@media(max-width: 360px) {
	.section .text-common {
		line-height: 24px;
		font-size: 18px;
	}

	.section .shadow_box {
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	}
}