@charset "utf-8";

@font-face {
    font-family: 'KimJeongWonSMiss';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2507-1@1.0/Griun_Kimjungwon-Rg.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}
/************************************* 공통 *************************************/
main {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.section-padding {
	height: minmax(700px, 100vh);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-header {
	text-align: center;
}

section>.container {
	overflow-y: visible !important;
}

/* Prevent unintended scrollbars from overflowing child elements */
section {
	overflow-x: clip;
}

.section-title {
	color: var(--color-text-main);
	font-size: clamp(2rem, 4vw, 3.5rem);
}

/* Ensure media never exceeds the container width */
section img {
	max-width: 100%;
	height: auto;
	display: block;
}

/************************************* 섹션별 *************************************/
.corp-hero {
	--corp-text: #fff;
	--corp-muted: rgba(255, 255, 255, 0.84);

	position: relative;
	height: calc(100vh - 75px);
	min-height: 640px;
	overflow: hidden;
	background: #17233b;
	color: var(--corp-text);
}

.corp-hero__slider,
.corp-hero__slider .swiper-wrapper,
.corp-hero__slide {
	width: 100%;
	height: 100%;
}

.corp-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(1520px, calc(100% - 7rem));
	height: 100%;
	margin: 0 auto;
}

.corp-hero__slide {
	position: relative;
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.48) 42%, rgba(8, 18, 34, 0.22) 100%),
		var(--hero-bg);
	background-repeat: 
	no-repeat, 
	no-repeat;
	background-position: 
	center center, 
	center center;
	background-size: 
	200% 200%,
	 cover;
}

.corp-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

.corp-hero__content {
	width: min(860px, 100%);
	min-width: 0;
	padding-top: 5vh;
}

.corp-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2.625rem, 3.2vw, 2.375rem);
	line-height: 1.14;
	font-weight: 600;
	letter-spacing: -0.07em;
	word-break: keep-all;
	text-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.28);
}

.corp-hero__lead {
	max-width: 760px;
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	color: var(--corp-muted);
	font-size: clamp(1.0625rem, 1.45vw, 1.375rem);
	line-height: 1.75;
	font-weight: 500;
	letter-spacing: -0.04em;
	word-break: keep-all;
	text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.3);
}

.corp-hero__pagination {
	position: absolute;
	left: max(3.5rem, calc((100% - 1520px) / 2)) !important;
	bottom: clamp(4.25rem, 8vh, 6.75rem) !important;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 1rem;
	width: auto !important;
}

.corp-hero__pagination .swiper-pagination-bullet {
	position: relative;
	width: auto;
	height: auto;
	margin: 0 !important;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.74);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	opacity: 1;
	cursor: pointer;
}

.corp-hero__pagination .swiper-pagination-bullet-active {
	color: #fff;
}

.corp-hero__pagination .swiper-pagination-bullet-active::after {
	content: "";
	display: inline-block;
	width: clamp(3rem, 6vw, 6.5rem);
	height: 1px;
	margin-left: 0.875rem;
	vertical-align: middle;
	background: rgba(255, 255, 255, 0.8);
	transform: scaleX(0);
	transform-origin: left center;
	animation: corp-hero-pagination-progress 5.2s linear forwards;
}

@keyframes corp-hero-pagination-progress {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.corp-hero__pagination .swiper-pagination-bullet-active::after {
		transform: scaleX(1);
		animation: none;
	}
}

.corp-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.375rem;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.75rem;
	line-height: 1;
	transform: translateX(-50%);
}

.corp-hero__scroll i {
	position: relative;
	display: block;
	width: 0.875rem;
	height: 1.625rem;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
}

.corp-hero__scroll i::before {
	content: "";
	position: absolute;
	top: 0.25rem;
	left: 50%;
	width: 0.1875rem;
	height: 0.1875rem;
	border-radius: 50%;
	background: #fff;
	transform: translateX(-50%);
	animation: corp-hero-scroll 1.6s ease-in-out infinite;
}

@keyframes corp-hero-scroll {
	0% {
		opacity: 0;
		transform: translate(-50%, 0);
	}

	35% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate(-50%, 0.75rem);
	}
}

/* tablet */
@media (max-width: 991.98px) {
	.corp-hero__inner {
		width: calc(100% - 3rem);
	}
}

/* mobile */
@media (max-width: 575.98px) {
	.corp-hero {
		height: calc(100vh - 64px);
		min-height: 560px;
	}

	.corp-hero__inner {
		align-items: center;
		width: calc(100% - 2rem);
	}

	.corp-hero__content {
		padding-top: 20rem;
	}

	.corp-hero__slide {
		background-position: 58% center;
	}

	.corp-hero__title {
		font-size: clamp(2.25rem, 10.5vw, 3.125rem);
		line-height: 1.18;
	}

	.corp-hero__lead {
		font-size: 1rem;
		line-height: 1.7;
	}

	.corp-hero__lead br {
		display: none;
	}

	.corp-hero__pagination {
		left: 1rem;
		bottom: 4.25rem;
	}

	.corp-hero__scroll {
		bottom: 1rem;
	}
}

@media (max-width: 1200px) {
	.corp-hero__slide.slide-1 {
		background-position: 65% center;
	}
	.corp-hero__slide.slide-2 {
		background-position: 75% center;
	}
}

/* EXPERT --------------------------------------------------*/
.expert-profile {
	--expert-navy: #17233b;
	--expert-text: #243044;
	--expert-muted: #6b7280;
	--expert-bg: #f8fafc;
	--expert-bg-warm: #fbf7ef;
	--expert-line: #e5e7eb;

	padding: clamp(4rem, 8vw, 7rem) 1.25rem 0;
	background: url(https://cdn.myplayer.kr/lawjibsa-mangobanana/corpsvr/pillars_bg.jpeg) center center / cover no-repeat;
	color: var(--expert-text);
}

.expert-profile__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) 0;
		/* border: 1px solid var(--expert-line);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background:var(--color-surface); */
}

.expert-profile__title {
	margin: 0;
	color: var(--expert-navy);
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: -0.06em;
	word-break: keep-all;
	text-align: center;
}

.expert-profile__title-strong {
	color: var(--color-primary);
}

.expert-profile__body {
	display: grid;
	grid-template-columns: clamp(300px, 500px, 100vw) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: stretch;
	margin-top: clamp(2rem, 5vw, 3.5rem);
}


.expert-profile__profile {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.expert-profile__img {
	width: 100%;
	overflow: hidden;
	/* -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent 100%); */
	/* mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent 100%); */
}

.expert-profile__img img {
	width: 100%;
	object-position: center;
}

.expert-profile__name-box {
	display: flex;
	align-items: baseline;
	gap: 1rem;
}

.expert-profile__position {
	margin: 0 0 0.5rem;
	color: var(--color-primary);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.expert-profile__name {
	margin: 0;
	color: var(--expert-navy);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.06em;
}

.expert-profile__info {
	padding: clamp(1rem, 3vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(1rem, 2vw, 1.5rem);

}

.expert-profile__career-box {}


.expert-profile__career-list {
	display: grid;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.expert-profile__career-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--expert-text);
	font-size: clamp(1.1rem, 1.8vw, 1.5rem);
	line-height: 1.55;
	font-weight: 600;
	letter-spacing: -0.04em;
	word-break: keep-all;
}

.expert-profile__career-label {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 1.5rem;
	margin-top: 0.03rem;
	border-radius: 999px;
	background: rgba(var(--color-primary-rgb), 0.1);
	color: var(--color-primary);
	font-size: 1rem;
	font-weight: 800;
}

.expert-profile__career-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.expert-profile__career-item span:nth-child(2) {
	font-size: 1rem;
}


@media (max-width: 992px) {
	
	.expert-profile__body {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 768px ) {
	.expert-profile__inner{
		padding: 0;
	}
	.expert-profile__body {
		grid-template-columns: 1fr 1fr;
	}
	.expert-profile__img {
		display: flex;
		justify-content: center;
        align-items: flex-end;
	}
}
/* mobile */
@media (max-width: 575.98px) {
	.expert-profile__body {
		grid-template-columns: 1fr;
	}

	.expert-profile__name-box {
		justify-content: flex-start;
	}
	.expert-profile {
		padding: 3.5rem 1rem;
	}

	.expert-profile__inner {
		padding: 1.5rem;
		border-radius: 1.25rem;
	}

	.expert-profile__eyebrow {
		margin-bottom: 0.875rem;
		font-size: 0.85rem;
	}

	.expert-profile__eyebrow::before {
		width: 1.5rem;
	}

	.expert-profile__title {
		font-size: clamp(1.85rem, 8.6vw, 2.45rem);
		line-height: 1.25;
	}

	.expert-profile__lead {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.expert-profile__body {
		margin-top: 1.75rem;
		gap: 1rem;
	}

	.expert-profile__name-box,
	.expert-profile__career-box {
		border-radius: 1rem;
	}

	.expert-profile__message {
		padding: 1.25rem;
	}

	.expert-profile__name {
		font-size: 2.25rem;
	}

	.expert-profile__career-list {
		gap: 0.7rem;
	}

	.expert-profile__career-list li {
		font-size: 1.2rem;
	}

	.expert-profile__message {
		border-left-width: 2px;
	}

	.expert-profile__message p {
		font-size: 1.5rem;
		line-height: 1.52;
	}
}

/* REHAB STANDARD ------------------------------------*/
.rehab-standard {
	position: relative;
	overflow: hidden;
	padding: clamp(5.5rem, 11vw, 9.75rem) 1.5rem;
	background:
		radial-gradient(
			circle at 0% 50%,
			rgba(78, 145, 226, 0.13) 0%,
			rgba(78, 145, 226, 0) 32%
		),
		radial-gradient(
			circle at 100% 50%,
			rgba(78, 145, 226, 0.13) 0%,
			rgba(78, 145, 226, 0) 32%
		),
		linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	color: #132a4a;
}

.rehab-standard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(47.5rem, 90vw);
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(
		90deg,
		transparent,
		rgba(27, 82, 153, 0.22),
		transparent
	);
	pointer-events: none;
}

.rehab-standard::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 50% 36%,
			rgba(255, 255, 255, 0.92) 0%,
			rgba(255, 255, 255, 0) 58%
		);
	pointer-events: none;
}

.rehab-standard__inner {
	position: relative;
	z-index: 1;
	max-width: 57.5rem;
	margin: 0 auto;
	text-align: center;
}


.rehab-standard__discarded {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35em;
	color: #63758c;
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 400;
}

.rehab-standard__discarded-item {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	text-decoration: none;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(0.75rem);
	transition: opacity 0.42s ease, transform 0.42s ease;
}

.rehab-standard__discarded-item::after {
	content: "";
	position: absolute;
	left: -0.1875rem;
	right: -0.1875rem;
	top: 52%;
	height: 2px;
	background: #dc143c;
	transform: translateY(-50%) scaleX(0);
	transform-origin: left center;
	transition: transform 0.48s ease;
}

.rehab-standard__discarded-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rehab-standard__discarded-item.is-struck::after {
	transform: translateY(-50%) scaleX(1);
}

.rehab-standard__discarded-item span:first-child {
	margin-right: 0.25rem;
}

.rehab-standard__count {
	display: inline-block;
	min-width: 2ch;
	color: #dc143c;
	font-variant-numeric: tabular-nums;
}

.rehab-standard__title {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin: 0;
	font-size: clamp(3.75rem, 8vw, 5.25rem);
	line-height: 1.28;
	letter-spacing: -0.055em;
	word-break: keep-all;
}

.rehab-standard__title strong {
	display: block;
	color: #102947;
	font-weight: 800;
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.58s ease, transform 0.58s ease;
}

.rehab-standard__title.is-visible strong {
	opacity: 1;
	transform: translateY(0);
}

.rehab-standard__message {
	position: relative;
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.58s ease, transform 0.58s ease;
}

.rehab-standard__message.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rehab-standard__statement {
	position: relative;
	max-width: 43.75rem;
	margin: clamp(2.625rem, 6vw, 3.75rem) auto 0;
	padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem;
	border-top: 1px solid #dce5ef;
	border-bottom: 1px solid #dce5ef;
	color: #283c58;
	font-size: clamp(1.1875rem, 2.5vw, 1.5625rem);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.04em;
	word-break: keep-all;
	perspective: 720px;
}


.rehab-standard__statement strong {
	position: relative;
	display: inline-block;
	color: #123c72;
	font-weight: 700;
	opacity: 0;
	transform: rotateX(90deg);
	transform-origin: center bottom;
	backface-visibility: hidden;
}

.rehab-standard__statement strong.is-flipped {
	animation: rehab-standard-skill-flip 0.72s cubic-bezier(0.18, 0.9, 0.24, 1) forwards;
}

@keyframes rehab-standard-skill-flip {
	0% {
		opacity: 0;
		transform: rotateX(90deg);
	}

	62% {
		opacity: 1;
		transform: rotateX(-12deg);
	}

	100% {
		opacity: 1;
		transform: rotateX(0);
	}
}

.rehab-standard__statement strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    /* bottom: 0; */
    top: 50%;
    height: 2rem;
    background: rgba(36, 95, 172, 0.14);
    transform: translateY(-50%);
}

.rehab-standard__conclusion {
	margin: clamp(2rem, 4vw, 2.625rem) auto 0;
	color: #61728a;
	font-size: clamp(1.1rem, 1.8vw, 1.2rem);
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: -0.025em;
	word-break: keep-all;
	white-space: pre-line;
}

.rehab-standard__stage {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1.5rem;
	margin-top: clamp(3rem, 6vw, 4.5rem);
}
.rehab-standard__stage::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 7%;
	right: 13%;
	top: 34%;
	height: clamp(2.25rem, 4.4vw, 3.5rem);
	transform: translateY(-50%);
	background: linear-gradient(
		90deg,
		rgba(var(--color-primary-rgb), 0),
		rgba(var(--color-primary-rgb), 0.05) 8%,
		rgba(var(--color-primary-rgb), 0.07) 100%
	);
	pointer-events: none;
}
.rehab-standard__stage::after {
	content: "";
	position: absolute;
	z-index: 0;
	right: 5%;
	top: 34%;
	width: 0;
	height: 0;
	border-top: clamp(2.75rem, 5.2vw, 4.25rem) solid transparent;
	border-bottom: clamp(2.75rem, 5.2vw, 4.25rem) solid transparent;
	border-left: clamp(3.75rem, 7.2vw, 6rem) solid rgba(var(--color-primary-rgb), 0.07);
	transform: translateY(-50%);
	pointer-events: none;
}
.rehab-standard__stage li {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	max-width: 150px;
	transition: transform 0.2s ease;
}
.rehab-standard__stage li:hover  {
	transform: translateY(-0.25rem);
}
.rehab-standard__stage li img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
.rehab-standard__stage-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.25rem;
	padding: 0.375rem 0.875rem;
	border-radius: 999px;
	background: rgba(var(--color-primary-rgb), 0.08);
	color: var(--color-primary);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.025em;
	white-space: nowrap;
}
@media (max-width: 575.98px) {
	.rehab-standard {
		padding: 4.75rem 1.25rem 5.25rem;
	}

	.rehab-standard__title {
		gap: 0.625rem;
		line-height: 1.38;
	}

	.rehab-standard__statement {
		margin-top: 2.375rem;
		padding: 1.625rem 0.25rem;
		line-height: 1.72;
	}

	.rehab-standard__conclusion {
		margin-top: 1.75rem;
		line-height: 1.8;
	}

	.rehab-standard__stage::before,
	.rehab-standard__stage::after {
		display: none;
	}
}

/* INDEX 20260514 WHY ------------------------------------*/
.index-20260514-why {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
	color: #111827;
}

/* .index-20260514-why__inner { */
.index-20260514-why .container-xxxl {
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 3.75rem) clamp(4.5rem, 7vw, 6.75rem);
}

.index-20260514-why__header {
	margin-bottom: clamp(2.5rem, 4.8vw, 4.5rem);
	text-align: center;
}

.index-20260514-why__title {
	margin: 0;
	color: #111827;
	font-size: clamp(2.8rem, 3.7vw, 3.45rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0;
	word-break: keep-all;
}

.index-20260514-why__title span {
	color: #4789e5;
}

.index-20260514-why__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(2.5rem, 4.8vw, 4.5rem);
}

.index-20260514-why__card {
	position: relative;
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	min-width: 0;
	padding: 0 clamp(1rem, 2.2vw, 2.25rem);
	text-align: center;
}

.index-20260514-why__card:nth-child(n + 3) {
	padding-top: 3rem;
	border-top: 1px solid rgba(39, 82, 139, 0.16);
}

/* .index-20260514-why__card + .index-20260514-why__card {
	border-left: 1px solid rgba(39, 82, 139, 0.16);
} */


.index-20260514-why__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: clamp(7.75rem, 13vw, 11rem);
	transition: transform 0.2s ease;
}

.index-20260514-why__card:hover .index-20260514-why__image {
	transform: translateY(-0.25rem);
}

.index-20260514-why__image img {
	width: min(100%, 10.5rem);
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 1rem 1.2rem rgba(33, 76, 130, 0.12));
}
.text-bg-ani {
    background: linear-gradient(115deg, #0f1f3d 0%, #132747 28%, #1f5f9f 45%, #2f7fc3 52%, #1f5f9f 59%, #132747 76%, #0b1b35 100%);
    background-size: 280% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: navyTextShine 4.8s ease-in-out infinite;

}
.index-20260514-why__card-title {
	min-height: 85px;
	margin: 0 0 1.2rem;
	color: #437fd3;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.34;
	letter-spacing: 0;
	word-break: keep-all;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.5rem;
}

@keyframes navyTextShine {
  0% {
    background-position: 0% 50%;
  }
  45% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.index-20260514-why__text {
	max-width: 34rem;
	margin: 0 auto;
	color: var(--color-text-sub);
	font-size: clamp(1.05rem, 1.45vw, 1.18rem);
	font-weight: 500;
	line-height: 1.82;
	letter-spacing: -0.015em;
	word-break: keep-all;
	text-align: left;
	overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
	.index-20260514-why__grid {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 3rem;
	}

	.index-20260514-why__card:nth-child(odd) {
		border-left: 0;
	}

	.index-20260514-why__card-title {
		min-height: 0;
		margin-bottom: 0.85rem;
	}
	.index-20260514-why__text {
		margin: 0 auto; 
		word-break: break-word;
		max-width: 400px;
	}
}

@media (max-width: 575.98px) {

	/* .index-20260514-why__inner { */
	.index-20260514-why .container-xxxl {
		padding: 3.5rem 1.25rem 4rem;
	}

	.index-20260514-why__grid {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 0;
	}

	.index-20260514-why__card {
		padding: 2.25rem 0;
	}

	.index-20260514-why__card,
	.index-20260514-why__card+.index-20260514-why__card,
	.index-20260514-why__card:nth-child(n + 3) {
		border-left: 0;
		border-top: 1px solid rgba(39, 82, 139, 0.16);
	}

	.index-20260514-why__card:first-child {
		padding-top: 0;
		border-top: 0;
	}

	.index-20260514-why__number {
		margin-bottom: 1.25rem;
	}

	.index-20260514-why__image {
		height: 8.5rem;
		margin-bottom: 1.5rem;
	}

	.index-20260514-why__card-title {
		min-height: 0;
		margin-bottom: 0.85rem;
	}
}

/* INDEX 20260514 INDUSTRIES ------------------------------------*/
.index-20260514-industries {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, #f7fbff 0%, #eaf4ff 100%);
	color: #111827;
}

.index-20260514-industries::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(247, 251, 255, 0.9) 0%, rgba(234, 244, 255, 0.76) 100%),
		url("https://cdn.myplayer.kr/lawjibsa-mangobanana/corpsvr/260515_index_column_bg.png") center/cover no-repeat;
	opacity: 0.42;
	pointer-events: none;
}


/* .index-20260514-industries__inner { */
.index-20260514-industries .container-xxxl {
	position: relative;
	z-index: 1;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: clamp(4rem, 6.5vw, 6rem) clamp(1.25rem, 5vw, 4.5rem) clamp(3.25rem, 5vw, 4.75rem);
}

.index-20260514-industries__header {
	text-align: center;
}

.index-20260514-industries__title {
	margin: 0;
	color: #111827;
	font-size: clamp(2rem, 3.5vw, 3.2rem);
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: 0;
	word-break: keep-all;
}

.index-20260528__title-strong {
	color: #4789e5;
}

.index-20260514-industries__desc {
	margin: clamp(0.8rem, 1.4vw, 1.15rem) 0 0;
	color: var(--color-text-sub);
	font-size: clamp(0.98rem, 1.3vw, 1.18rem);
	font-weight: 600;
	line-height: 1.65;
	word-break: break-all;
	white-space: pre-line;
}

.index-20260514-industries__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.1vw, 2rem);
	margin: clamp(2.5rem, 4.5vw, 4rem) 0 0;
	padding: 0;
	list-style: none;
}

.index-20260514-industries__item {
	display: grid;
	justify-items: center;
	gap: 1rem;
	min-width: 0;
}

.index-20260514-industries__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(6.2rem, 10vw, 9rem);
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1rem 2rem rgba(39, 82, 139, 0.1);
}

.index-20260514-industries__icon img {
	width: 80%;
	height: 80%;
	object-fit: contain;
}

.index-20260514-industries__icon--more {
	color: #1550a2;
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.18em;
	padding-left: 0.18em;
}

.index-20260514-industries__label {
	color: var(--color-primary);
	font-size: clamp(0.98rem, 1.25vw, 1.15rem);
	font-weight: 600;
	line-height: 1.3;
	word-break: keep-all;
}

@media (max-width: 991.98px) {
	.index-20260514-industries__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 2.25rem;
	}
}

@media (max-width: 575.98px) {

	/* .index-20260514-industries__inner { */
	.index-20260514-industries .container-xxxl {
		padding: 3.5rem 1.25rem 4rem;
	}

	.index-20260514-industries__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.75rem 1rem;
	}

	.index-20260514-industries__icon {
		width: min(38vw, 7.5rem);
	}
}

/* TEAM SYSTEM ------------------------------------*/
.team-system {
	--team-navy: #17233b;
	--team-text: #243044;
	--team-muted: #6b7280;
	--team-blue: #17427c;
	--team-blue-soft: #eef4fb;
	--team-line: #e5e7eb;
	--team-bg: #f8fafc;

	padding: clamp(4rem, 8vw, 7rem) 1.25rem;
	background: #fff;
	color: var(--team-text);
}

.team-system__inner {
	width: minmax(100%, 1320px);
	margin: 0 auto;
}

.team-system__header {
	max-width: 760px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.team-system__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--team-blue);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.team-system__title {
	margin: 0;
	color: var(--team-navy);
	font-size: clamp(2rem, 4.2vw, 3.6rem);
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: -0.06em;
	word-break: keep-all;
}

.team-system__lead {
	max-width: 680px;
	margin: clamp(1rem, 2vw, 1.35rem) auto 0;
	color: var(--team-muted);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
	letter-spacing: -0.035em;
	word-break: keep-all;
}

.team-system__visual {
	position: relative;
	margin: 0 auto;
	text-align: center;
}

.team-system__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.team-system__content {
	position: relative;
	z-index: 2;
	gap: clamp(1.25rem, 3vw, 2rem);
	max-width: 980px;
	margin: clamp(-1rem, -2vw, -1.5rem) auto 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--team-line);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 60px rgba(23, 35, 59, 0.08);
	backdrop-filter: blur(8px);
}

.team-system__message {
	display: flex;
	align-items: center;
	min-width: 0;
}

.team-system__message p {
	margin: 0;
	color: var(--team-text);
	font-size: clamp(1rem, 1.5vw, 1.12rem);
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: -0.04em;
	word-break: keep-all;
}

.team-system__point-list {
	display: flex;
	gap: 0.75rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.team-system__point-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	padding: 0.875rem 1.2rem 0.875rem 0.875rem;
	border-radius: 999px;
	background: var(--team-blue-soft);
	color: var(--team-navy);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.035em;
	word-break: keep-all;
}

.team-system__point-label {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #fff;
	color: var(--team-blue);
	font-size: 0.78rem;
	font-weight: 800;
}

.team-system__message p {
	font-size: clamp(1.5rem, 6vw, 1.8rem);
	line-height: 1.72;
	font-weight: 600;
}

/* tablet */
@media (max-width: 991.98px) {
	.team-system__content {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.team-system__visual {
		max-width: 760px;
	}
}

/* mobile */
@media (max-width: 575.98px) {
	.team-system {
		padding: 3.5rem 1rem;
	}

	.team-system__header {
		margin-bottom: 1.75rem;
		text-align: left;
	}

	.team-system__eyebrow {
		font-size: 0.76rem;
	}

	.team-system__title {
		font-size: clamp(1.9rem, 8.8vw, 2.45rem);
		line-height: 1.25;
	}

	.team-system__lead {
		margin-left: 0;
		margin-right: 0;
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.team-system__visual {
		margin-left: -1rem;
		margin-right: -1rem;
		overflow: hidden;
	}

	.team-system__image {
		width: 128%;
		max-width: none;
		transform: translateX(-11%);
	}

	.team-system__content {
		padding: 1.25rem;
		border-radius: 1.125rem;
		box-shadow: 0 16px 40px rgba(23, 35, 59, 0.07);
	}

	.team-system__message p {
		font-size: 0.96rem;
		line-height: 1.72;
	}

	.team-system__point-list {
		gap: 0.625rem;
	}

	.team-system__point-list li {
		align-items: flex-start;
		border-radius: 0.875rem;
		padding: 0.875rem;
		font-size: 0.93rem;
	}

	.team-system__point-label {
		width: 1.75rem;
		height: 1.75rem;
		font-size: 0.72rem;
	}
}

/* SERVICES ------------------------------------------------- */
/* #services-rehab .section-title,
#services-bankruptcy .section-title {
	font-size: var(--fz-xl) !important;
} */

.service-badge {
	font-size: var(--fz-tn);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	color: var(--color-text-sub);
	margin-bottom: 0.6rem;
	display: inline-block;
}

.service-section-img {
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.service-section-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-list li {
	font-size: var(--fz-md);
	color: var(--color-text-sub);
}

.service-list i {
	color: var(--color-primary);
}

/* SUCCESS CASES ------------------------------------------- */
.success-section {
	background-color: var(--color-bg);
}

/* CONSULT CTA --------------------------------------------- */
#consult {
	background: url(https://cdn.myplayer.kr/lawjibsa-mangobanana/corpsvr/corp_consult_bg.jpeg) center center / cover no-repeat;
	min-height: 600px;
	display: flex;
	align-items: center;
	color: #fff !important;
}

.consult-section {
	background-color: var(--color-bg);
}

.consult-form .form-control {
	background-color: #fff;
	border-radius: 999px;
	border: 1px solid #d4d4d4;
	color: #222;
}

.consult-form .form-control::placeholder {
	color: #6b7280;
}

.consult-note {
	font-size: var(--fz-sm);
	color: var(--color-border-subtle);
}


.section-desc {
	color: var(--color-text-sub);
	margin: 0 auto 5rem;
	font-size: var(--fz-md);
}

#consult-heading {
	font-size: var(--fz-xl);
	margin-bottom: 2rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	#consult-heading {
		font-size: var(--fz-lg);
	}

	.consult-form .form-control {
		font-size: var(--fz-md);
	}


}



.insight-card {
	display: block;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);

	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);

	padding: 22px 26px;
	margin-bottom: 16px;

	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

	transition: all .25s ease;
	position: relative;
}

.insight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	background: white;
}

.insight-card-title {
	font-size: var(--fz-md);
	font-weight: 800;
	color: var(--color-text-main);
	display: block;
	margin-bottom: 0.4rem;
}

.insight-card-excerpt {
	font-size: var(--fz-sm);
	color: var(--color-text-sub);
	line-height: 1.6;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.consult-form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

#quick_submit_btn {
	max-width: 100%;
	flex: 1;
	background: var(--bs-blue);
	color: #fff;
	font-weight: 700;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#quick_submit_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.privacyModalBtn {
	font-size: var(--fz-sm);
	color: var(--bs-info);
	text-decoration: underline;
	cursor: pointer;
}
