@charset 'utf-8';
main.tax-home {
	--color-primary: #80ff91;
	--color-primary-hover: #67ff7b;
	--color-primary-active: #4de361;
	--color-secondary: #0b1929;
	--color-secondary-hover: #091625;
	--color-secondary-active: #080f1a;
	--color-text: #f4f6f8;
	--color-text-secondary: rgba(244, 246, 248, 0.72);
	--color-bg: #0b1929;
	--color-bg-hover: #091625;
	--color-bg-active: #080f1a;
	--color-accent: #67ff7b;
	--color-muted: rgba(255, 255, 255, 0.18);
	--color-muted-hover: rgba(255, 255, 255, 0.3);
	--color-muted-active: rgba(255, 255, 255, 0.42);
	--font-family-heading: "Pretendard", "Noto Sans KR", sans-serif;
	--font-family-body: "Pretendard",  "Noto Sans KR", sans-serif;


	padding-bottom: 0;
}
section {
	overflow-x: clip;
}

section img,
section video,
section svg {
	display: block;
	max-width: 100%;
	height: auto;
}
#main_header {
	background: #0b1929;
	color: #fff;
}
#footer {
	background: #11161D;
	border: 0;
}
#footer p, #footer a {
	color: #5c6571;
}
/* 공통 */

.tax-index__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin: 0 auto 1.5rem;
	text-align: center;
}

.tax-index__title {
	margin: 0;
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: clamp(2.25rem, 4.6vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.tax-index__summary {
	max-width: 36.25rem;
	margin: 0;
	color: #c0c0c0;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
}

.tax-section-nav {
	display: none;
}

@media (min-width: 768px) {
	.tax-section-nav {
		position: fixed;
		top: 50%;
		left: clamp(0.875rem, 2vw, 2rem);
		z-index: 30;
		display: block;
		transform: translateY(-50%);
	}

	.tax-section-nav__list {
		display: flex;
		flex-direction: column;
		gap: 0.875rem;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.tax-section-nav__item {
		margin: 0;
		padding: 0;
	}

	.tax-section-nav__link {
		position: relative;
		display: inline-flex;
		align-items: center;
		gap: 0.875rem;
		padding: 1rem 0;
		text-decoration: none;
	}

	.tax-section-nav__dash {
		display: block;
		width: 2rem;
		height: 2px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.32);
		transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.tax-section-nav__label {
        position: absolute;
        left: calc(100% + 0.25rem);
        top: 50%;
        padding: 0.25rem 0.625rem;
        /* border: 1px solid rgba(128, 255, 145, 0.18); */
        /* border-radius: 999px; */
        /* background: rgba(11, 25, 41, 0.88); */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
        color: rgba(255, 255, 255, 0.9);
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -0.01em;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(-0.5rem, -50%, 0);
        transition: opacity 0.2s ease, transform 0.2s ease;
	}

	/* .tax-section-nav__link:hover .tax-section-nav__dash,
	.tax-section-nav__link:focus-visible .tax-section-nav__dash {
		width: 1.75rem;
		background: #80ff91;
		transform: translateX(0.1875rem);
	} */

	.tax-section-nav__link:hover .tax-section-nav__label,
	.tax-section-nav__link:focus-visible .tax-section-nav__label {
		opacity: 1;
		transform: translate3d(0, -50%, 0);
	}

	.tax-section-nav__link.is-active .tax-section-nav__dash {
		background: rgba(255, 255, 255, 1);
	}

	.tax-section-nav__link:focus-visible {
		outline: none;
	}
}

/* hero section*/
.tax-hero {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	background: #091625;
}
.tax-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url(https://cdn.myplayer.kr/lawjibsa-mangobanana/corpsvr/tax-index__hero.jpeg) center/cover no-repeat;
	opacity: 0.72;
	z-index: -1;
	mix-blend-mode: overlay;
	pointer-events: none;
}
.tax-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 18% 12%, rgba(32, 61, 93, 0.32) 0, rgba(32, 61, 93, 0) 28%),
		linear-gradient(180deg, #0b1929 0%, #091625 100%);
	pointer-events: none;
}

.tax-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 700px) minmax(280px, 1fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: start;
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(9rem, 18vw, 23.5rem) clamp(1.5rem, 6vw, 5rem) clamp(6rem, 15vw, 20.8rem);
}

.tax-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.tax-hero__header {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.tax-hero__title {
	margin: 0;
	color: #ffffff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: clamp(2.625rem, 4.8vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.tax-hero__title-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.12em;
	margin-bottom: -0.12em;
}

.tax-hero__title-text {
	display: block;
	will-change: transform, opacity;
}

.tax-hero__title-accent {
	display: inline-block;
	color: #80ff91;
	will-change: filter, text-shadow;
}

.tax-hero__summary {
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: clamp(1.125rem, 2.1vw, 1.5rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.tax-hero__benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tax-hero__benefit {
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #d0d1d3 0%, #c5c6c9 54%, #b7b9bd 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
	color: #0d1117;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
	white-space: nowrap;
}

.tax-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tax-hero__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.75rem;
	border-radius: 3px;
	border: 1px solid transparent;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.7;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tax-hero__action:hover {
	transform: translateY(-1px);
}

.tax-hero__action:focus-visible {
	outline: 2px solid #80ff91;
	outline-offset: 2px;
}

.tax-hero__action--primary {
	background: #67ff7b;
	color: #0b1929;
}

.tax-hero__action--primary:hover {
	background: #80ff91;
	color: #0b1929;
}

.tax-hero__action--secondary {
	border-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.72);
}

.tax-hero__action--secondary:hover {
	border-color: rgba(128, 255, 145, 0.4);
	color: #ffffff;
}

.tax-hero__aside {
	justify-self: end;
	align-self: start;
	width: min(100%, 735px);
	padding-top: clamp(0rem, 1vw, 0.75rem);
}
.tax-hero__aside-label {
	margin-bottom: 1.25rem;
	color: #c0c0c0;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

.tax-hero__bubble {
	position: relative;
	padding: clamp(2rem, 3vw, 2.8rem) clamp(1.75rem, 3vw, 2.5rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 2rem;
	background: linear-gradient(180deg, rgba(33, 49, 68, 0.96) 0%, rgba(26, 41, 58, 0.94) 100%);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
	transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.tax-hero__bubble.is-bubble-leaving,
.tax-hero__bubble.is-bubble-entering {
	opacity: 0;
	transform: translate3d(1.75rem, 0, 0);
}

/* .tax-hero__bubble::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 68% 45%, rgba(255, 255, 255, 0.06), transparent 34%),
		radial-gradient(circle at 82% 76%, rgba(10, 18, 31, 0.22), transparent 28%);
	pointer-events: none;
}

.tax-hero__bubble::after {
	content: "";
	position: absolute;
	right: 2.75rem;
	bottom: -2.15rem;
	width: 4rem;
	height: 4rem;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom-right-radius: 1rem;
	background: linear-gradient(180deg, rgba(33, 49, 68, 0.96) 0%, rgba(26, 41, 58, 0.94) 100%);
	transform: rotate(45deg) skew(8deg, 8deg);
} */

.tax-hero__bubble-text {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #f4f6f8;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: -0.03em;
	white-space: pre-line;
}
/* 
.tax-hero__mesh {
	position: absolute;
	right: -12%;
	bottom: -18%;
	z-index: 0;
	width: min(88vw, 1120px);
	height: min(55vw, 700px);
	pointer-events: none;
}

.tax-hero__mesh::before,
.tax-hero__mesh::after {
	content: "";
	position: absolute;
	background-image: radial-gradient(circle at 1.2px 1.2px, rgba(18, 91, 205, 0.62) 1.2px, transparent 1.3px);
	background-size: 14px 14px;
	filter: drop-shadow(0 0 20px rgba(5, 29, 61, 0.15));
}

.tax-hero__mesh::before {
	inset: 0;
	opacity: 0.55;
	border-radius: 55% 45% 60% 40% / 48% 62% 38% 52%;
	transform: rotate(-10deg) skewX(-15deg);
	-webkit-mask-image: radial-gradient(ellipse at 45% 45%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.88) 48%, transparent 72%);
	mask-image: radial-gradient(ellipse at 45% 45%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0.88) 48%, transparent 72%);
}

.tax-hero__mesh::after {
	right: 14%;
	bottom: 9%;
	width: 72%;
	height: 72%;
	opacity: 0.34;
	border-radius: 45% 55% 50% 50% / 56% 44% 56% 44%;
	background-image: radial-gradient(circle at 1px 1px, rgba(24, 110, 233, 0.44) 1px, transparent 1.2px);
	background-size: 12px 12px;
	transform: rotate(14deg) skewX(-18deg);
	-webkit-mask-image: radial-gradient(ellipse at 55% 55%, rgba(0, 0, 0, 0.95) 28%, transparent 74%);
	mask-image: radial-gradient(ellipse at 55% 55%, rgba(0, 0, 0, 0.95) 28%, transparent 74%);
} */

.tax-hero__glow {
	position: absolute;
	top: 26%;
	right: 16%;
	z-index: 0;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(24, 110, 233, 0.14) 0%, rgba(24, 110, 233, 0) 68%);
	filter: blur(18px);
	pointer-events: none;
}

/* expert section */
.tax-experts {
	position: relative;
	background: linear-gradient(217.39deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-experts__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem 4.5rem;
}


.tax-experts__list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tax-expert-card {
	display: grid;
	grid-template-columns: minmax(16rem, 32rem) minmax(0, 1fr);
	gap: 2rem 2.25rem;
	align-items: center;
	padding: 3.3125rem 0.9375rem;
}
.tax-expert-card:hover .tax-expert-card__figure img {
	transform: scale(1.1);
}

.tax-expert-card__figure {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.tax-expert-card__portrait {
	position: relative;
	width: min(100%, 19.125rem);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 999px;
	background: linear-gradient(180deg, #67ff7b 0%, #3e994a 100%);
}

.tax-expert-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tax-expert-card__image--seo {
	object-position: center 18%;
	transform: scale(1.08);
}

.tax-expert-card__image--park {
	object-position: center 18%;
	transform: scale(1.06);
}

.tax-expert-card__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	min-height: 19.125rem;
	justify-content: center;
}

.tax-expert-card__content-header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tax-expert-card__name-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1.25rem;
}

.tax-expert-card__name {
	margin: 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.tax-expert-card__role-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding-bottom: 0.5rem;
}

.tax-expert-card__role {
	margin: 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}

.tax-expert-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.125rem 1rem;
	border: 2px solid #67ff7b;
	border-radius: 999px;
	color: #67ff7b;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
}

.tax-expert-card__description {
	margin: 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
}

.tax-expert-card__highlights {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tax-expert-card__highlight {
	display: block;
	width: fit-content;
	max-width: 100%;
	padding: 0.25rem;
	background: rgba(103, 255, 123, 0.3);
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}

/* pain section */
.tax-pain {
	position: relative;
	background: linear-gradient(211.33deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-pain__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-pain__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.3125rem;
	padding: 3.3125rem 2rem 0;
}

.tax-pain-card {
	display: flex;
	flex-direction: column;
	min-height: 25rem;
	overflow: hidden;
	border: 1px solid #333;
	border-radius: 0.5rem;
	background: linear-gradient(180deg, #f2f3f5 45.674%, #b9cde2 100%);
}
.tax-pain-card:hover .tax-pain-card__media img {
	transform: scale(1.05);
}

.tax-pain-card__media {
	height: 11.9375rem;
	overflow: hidden;
}

.tax-pain-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tax-pain-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1.5rem;
	padding: 2rem 2rem 3rem;
}

.tax-pain-card__title {
	margin: 0;
	color: #2d3237;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

.tax-pain-card__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding-left: 1.5rem;
	color: #555;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
}
.tax-pain-card__list li {
	list-style-type: disc;
}
.tax-pain-card__list li::marker {
	font-size: 0.8em;
}

.tax-pain__footnote {
	max-width: 36.25rem;
	margin: 2rem auto 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

/* outsource section */
.tax-outsource {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.22);
	background: rgba(12, 29, 57, 0.92);
}

.tax-outsource__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-outsource .tax-index__title {
	font-size: clamp(2.25rem, 4vw, 2.625rem);
	line-height: 1.25;
}

.tax-outsource__title-accent {
	color: #67ff7b;
}


.tax-outsource__steps {
	--tax-outsource-step-gap: 1.3125rem;
	--tax-outsource-badge-size: 3.125rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.3125rem;
	margin: 0;
	padding: 3.3125rem 2rem 3.3125rem;
	list-style: none;
	overflow: visible;
}

.tax-outsource-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding-bottom: 1.25rem;
	text-align: center;
	overflow: visible;
}

.tax-outsource-step__badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.125rem;
	height: 3.125rem;
	border: 1px solid rgba(103, 255, 123, 0.22);
	border-radius: 1.125rem;
	background: rgba(103, 255, 123, 0.12);
	color: #67ff7b;
	font-family: "Inter", "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
}

.tax-outsource-step__connector {
	position: absolute;
	top: calc((var(--tax-outsource-badge-size) / 2) - 0.5px);
	left: calc(50% + (var(--tax-outsource-badge-size) / 2));
	width: calc(100% + var(--tax-outsource-step-gap) - var(--tax-outsource-badge-size));
	height: 1px;
	background: linear-gradient(90deg, rgba(103, 255, 123, 0.8) 0%, rgba(103, 255, 123, 0.16) 100%);
	transform-origin: left center;
	pointer-events: none;
}

.tax-outsource-step__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
	min-height: 11.25rem;
	padding: 0 1rem;
}

.tax-outsource-step__title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 5rem;
	margin: 0;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #f3f3f3;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	word-break: keep-all;
	height: 100px;
}

.tax-outsource-step__subtitle {
	font: inherit;
}

.tax-outsource-step__description {
	margin: 0;
	color: #f3f3f3;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
	word-break: keep-all;
}

.tax-outsource__compare-wrap {
	max-width: 55.625rem;
	margin: 2rem auto 0;
	overflow-x: auto;
}

.tax-outsource__compare-summary {
	margin: 0 auto 1.5rem;
	text-align: center;
}

.tax-outsource-compare {
	width: 100%;
	min-width: 55.625rem;
	border-collapse: collapse;
	table-layout: fixed;
}

.tax-outsource-compare__caption,
.tax-outsource-compare__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

.tax-outsource-compare__col--metric {
	/* width: 10.4375rem; */
	white-space: nowrap;
}

.tax-outsource-compare__head,
.tax-outsource-compare__metric,
.tax-outsource-compare__cell {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-outsource-compare__head {
	padding: 0.875rem 1.5rem;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.tax-outsource-compare__head--employment {
	color: #fff;
}

.tax-outsource-compare__head--metric {
	padding: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-outsource-compare__head--outsource {
	background: rgba(25, 42, 223, 0.1);
	color: #67ff7b;
}

.tax-outsource-compare__metric {
	padding: 1rem 1.5rem;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	color: #ccc;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

.tax-outsource-compare__cell {
	padding: 0;
	vertical-align: middle;
}

.tax-outsource-compare__cell--outsource {
	background: rgba(25, 42, 223, 0.1);
}

.tax-outsource-compare__stack,
.tax-outsource-compare__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 3.625rem;
	margin: 0;
	padding: 0.8125rem 1.5rem 0.9375rem;
	text-align: center;
	word-break: keep-all;
}

.tax-outsource-compare__stack strong,
.tax-outsource-compare__text {
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	line-height: 1.6;
}

.tax-outsource-compare__stack strong {
	font-weight: 600;
}

.tax-outsource-compare__stack span {
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
}

.tax-outsource-compare__cell--employment .tax-outsource-compare__stack strong,
.tax-outsource-compare__cell--employment .tax-outsource-compare__stack span,
.tax-outsource-compare__cell--employment .tax-outsource-compare__text {
	color: #ccc;
}

.tax-outsource-compare__cell--outsource .tax-outsource-compare__stack strong,
.tax-outsource-compare__cell--outsource .tax-outsource-compare__stack span,
.tax-outsource-compare__cell--outsource .tax-outsource-compare__text {
	color: #67ff7b;
}

.tax-outsource-compare-mobile {
	display: none;
}

.tax-outsource-compare-mobile__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tax-outsource-compare-mobile__item {
	margin: 0;
	padding: 0;
}

.tax-outsource-compare-mobile__card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
}

.tax-outsource-compare-mobile__title {
	margin: 0;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.tax-outsource-compare-mobile__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 1rem;
}

.tax-outsource-compare-mobile__row {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	margin: 0;
	padding: 1rem;
	border-radius: 1rem;
}

.tax-outsource-compare-mobile__row--employment {
	background: rgba(255, 255, 255, 0.02);
}

.tax-outsource-compare-mobile__row--outsource {
	background: rgba(25, 42, 223, 0.1);
}

.tax-outsource-compare-mobile__label {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.tax-outsource-compare-mobile__value {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	margin: 0;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.55;
	word-break: keep-all;
}

.tax-outsource-compare-mobile__value strong {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}

.tax-outsource-compare-mobile__value span {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.tax-outsource-compare-mobile__row--employment .tax-outsource-compare-mobile__value {
	color: #ccc;
}

.tax-outsource-compare-mobile__row--outsource .tax-outsource-compare-mobile__value {
	color: #67ff7b;
}

/* pricing section */
.tax-pricing {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.22);
	background: linear-gradient(221.67deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-pricing__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-pricing .tax-index__title {
	font-size: clamp(2.25rem, 4vw, 2.625rem);
	line-height: 1.25;
}

.tax-pricing__title-accent {
	color: #67ff7b;
}

.tax-pricing__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	max-width: 51.25rem;
	margin: 0 auto;
	padding-top: 1.25rem;
}

.tax-pricing-card {
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.09);
	border-radius: 0.375rem;
	background: rgba(238, 238, 238, 0.05);
	overflow: hidden;
}

.tax-pricing-card__body {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem;
}

.tax-pricing-card__header {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 1.5rem;
}

.tax-pricing-card__eyebrow {
	margin: 0;
	color: #fff;
	font-family: "Roboto", "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tax-pricing-card__title {
	margin: 0;
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.tax-pricing-card__description {
	margin: 0;
	color: #fff;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	font-size: 0.78125rem;
	font-weight: 400;
	line-height: 1.6;
}

.tax-pricing-card__price {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin: 0;
	padding-top: 0.75rem;
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	line-height: 1;
}

.tax-pricing-card__price strong {
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1.25;
}

.tax-pricing-card__price-prefix,
.tax-pricing-card__price-suffix {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
}

.tax-pricing-card__note {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
}

.tax-pricing-card__services {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(51, 51, 51, 0.07);
}

.tax-pricing-card__services-title {
	margin: 0;
	padding-left: 0.5rem;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
}

.tax-pricing-card__list {
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tax-pricing-card__item {
	display: flex;
	align-items: flex-start;
	gap: 0.5625rem;
}

.tax-pricing-card__marker {
	flex: 0 0 auto;
	min-width: 0.875rem;
	padding-top: 0.05rem;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.55;
	text-align: center;
}

.tax-pricing-card__marker--included {
	color: #67ff7b;
}

.tax-pricing-card__marker--excluded {
	color: #fff;
}

.tax-pricing-card__item-text {
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
}

.tax-pricing-card__item-text--strong {
	font-weight: 600;
}

.tax-pricing-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	margin-top: 1rem;
	padding: 0.8125rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.1875rem;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.7;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tax-pricing-card__cta--basic {
	background: #333;
	color: #fff;
}

.tax-pricing-card__cta--basic:hover,
.tax-pricing-card__cta--basic:focus-visible {
	background: #3d3d3d;
}

.tax-pricing-card__cta--premium {
	border-color: transparent;
	background: #67ff7b;
	color: #0b1929;
}

.tax-pricing-card__cta--premium:hover,
.tax-pricing-card__cta--premium:focus-visible {
	background: #80ff91;
}

.tax-pricing-card__cta:focus-visible {
	outline: 2px solid #80ff91;
	outline-offset: 2px;
}

.tax-pricing-card--premium {
	border-color: rgba(103, 255, 123, 0.35);
	background:
	linear-gradient(-32.36deg, rgba(103, 255, 123, 0.24) 0.35284%, rgba(103, 255, 123, 0) 100.79%),
	linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.tax-pricing-card--premium .tax-pricing-card__title,
.tax-pricing-card--premium .tax-pricing-card__price strong,
.tax-pricing-card--premium .tax-pricing-card__item-text {
	color: #67ff7b;
}

.tax-pricing-card--premium .tax-pricing-card__price-prefix,
.tax-pricing-card--premium .tax-pricing-card__price-suffix,
.tax-pricing-card--premium .tax-pricing-card__note {
	color: #fff;
}

.tax-pricing-card__badge {
	position: absolute;
	top: -1rem;
	right: -0.125rem;
	padding: 0.125rem 0.625rem;
	border-radius: 0.125rem;
	background: #67ff7b;
	color: #333;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
}

/* after rehab section */
.tax-after-rehab {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.22);
	background: linear-gradient(207.25deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-after-rehab__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-after-rehab .tax-index__title {
	max-width: 60rem;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
}

.tax-after-rehab__title-accent {
	color: #67ff7b;
}

.tax-after-rehab__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	padding: 1.25rem 2rem 0;
}

.tax-after-rehab-card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 0.375rem;
	background: rgba(255, 255, 255, 0.04);
}

.tax-after-rehab-card__title {
	margin: 0;
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.tax-after-rehab-process {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tax-after-rehab-process__item {
	display: grid;
	grid-template-columns: 2.375rem minmax(0, 1fr);
	gap: 0;
}

.tax-after-rehab-process__marker {
	position: relative;
	display: flex;
	justify-content: center;
	align-self: stretch;
}

.tax-after-rehab-process__marker::before {
	content: "";
	position: absolute;
	top: 0.5rem;
	bottom: -0.5rem;
	left: 50%;
	width: 0.125rem;
	background: rgba(255, 69, 69, 0.2);
	transform: translateX(-50%);
}

.tax-after-rehab-process__item:last-child .tax-after-rehab-process__marker::before {
	bottom: 1.75rem;
}

.tax-after-rehab-process__dot {
	position: relative;
	z-index: 1;
	width: 0.75rem;
	height: 0.75rem;
	margin-top: 0.5rem;
	border-radius: 999px;
	background: #ff4545;
}

.tax-after-rehab-process__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.5rem 0 1.375rem;
}

.tax-after-rehab-process__phase {
	margin: 0;
	color: #ff7d7d;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.tax-after-rehab-process__phase-label {
	font-size: 0.875rem;
}

.tax-after-rehab-process__phase-title {
	font-size: 1rem;
}

.tax-after-rehab-process__description {
	margin: 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
}

.tax-after-rehab-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.875rem;
	margin: 0;
	padding: 0.5rem 0 0;
}

.tax-after-rehab-stat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 7.625rem;
	padding: 2rem 1rem 1rem;
	border-radius: 0.1875rem;
	text-align: center;
}

.tax-after-rehab-stat dt {
	position: absolute;
	top: 0.125rem;
	left: 50%;
	padding: 0 0.75rem;
	color: #ccc;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.6;
	white-space: nowrap;
	transform: translateX(-50%);
}

.tax-after-rehab-stat dd {
	margin: 0;
	color: #67ff7b;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.1;
}

/* services section */
.tax-services {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.22);
	background: linear-gradient(213.99deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-services__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-services .tax-index__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
}

.tax-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding: 1.25rem 2rem 0;
}

.tax-service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2rem 1.5rem;
}
.tax-service-card:hover .tax-service-card__figure img,
.tax-service-card:focus-within .tax-service-card__figure img {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

.tax-service-card__figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 9.5rem;
	margin: 0;
}

.tax-service-card__figure img {
	width: min(100%, 17.5rem);
	max-height: 100%;
	object-fit: contain;
}

.tax-service-card__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.tax-service-card__title {
	margin: 0;
	color: #4abbff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.tax-service-card__description {
	margin: 0;
	color: #bae0f9;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
}

/* case studies section */
.tax-case-studies {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.16);
	background:
		radial-gradient(circle at 50% 0%, rgba(128, 255, 145, 0.12) 0, rgba(128, 255, 145, 0) 28%),
		linear-gradient(180deg, #0f1e2f 0%, #0b1929 100%);
}

.tax-case-studies__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem 6rem;
}

.tax-case-studies .tax-index__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.tax-case-studies__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding-top: 1.5rem;
}

.tax-case-studies .case-card-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 2rem;
}

.tax-case-studies .case-card-grid > .case-card {
	flex: 0 1 320px;
	max-width: 320px;
}

.tax-case-studies .case-empty {
	padding: 48px 24px;
	border: 1px solid var(--color-border-subtle);
	border-radius: 16px;
	text-align: center;
	background: rgba(255, 255, 255, 0.94);
}

.tax-case-studies .case-empty-title {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 10px;
	color: #111827;
}

.tax-case-studies .case-empty-note {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(17, 24, 39, 0.75);
}

.tax-case-card {
	min-height: 21.5rem;
}

.tax-case-card__panel {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 0.25rem;
	background: linear-gradient(180deg, #c7c7c7 0%, #aaaaaa 45.192%, #8c8c8c 100%);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	outline: 0;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tax-case-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	border-bottom: 0.0417rem solid rgba(0, 0, 0, 0.12);
}

.tax-case-card__tag {
	display: inline-flex;
	align-self: flex-start;
	margin: 0;
	padding: 0.125rem 0.5417rem 0.185rem;
	border-radius: 0.125rem;
	background: rgba(51, 51, 51, 0.1);
	color: #333;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
}

.tax-case-card__title {
	margin: 0;
	color: #333;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.03em;
	word-break: keep-all;
}

.tax-case-card__detail {
	margin: 0;
	color: #444;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	word-break: keep-all;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateX(1rem);
	transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.45s ease;
}

.tax-case-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	color: #333;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.6;
	flex-wrap: wrap;
}

.tax-case-card__result,
.tax-case-card__source {
	word-break: keep-all;
}

.tax-case-card__source {
	color: rgba(51, 51, 51, 0.72);
	font-weight: 500;
}

.tax-case-card:hover .tax-case-card__panel,
.tax-case-card:focus-within .tax-case-card__panel {
	transform: translateY(-0.375rem);
	box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.tax-case-card:hover .tax-case-card__detail,
.tax-case-card:focus-within .tax-case-card__detail {
	max-height: 12rem;
	opacity: 1;
	transform: translateX(0);
}

.tax-case-card__panel:focus-visible {
	box-shadow: 0 0 0 3px rgba(128, 255, 145, 0.35), 0 28px 56px rgba(0, 0, 0, 0.24);
	transform: translateY(-0.375rem);
}

/* faq section */
.tax-faq {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: linear-gradient(210.59188deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-faq__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-faq .tax-index__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.tax-faq .tax-index__summary {
	max-width: 44rem;
}

.tax-faq__list {
	max-width: 52rem;
	margin: 0 auto;
	padding: 1.25rem 0 0;
	list-style: none;
}

.tax-faq-item {
	margin: 0;
}

.tax-faq-item__details {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-faq-item__summary {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	cursor: pointer;
	list-style: none;
}

.tax-faq-item__summary--link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-decoration: none;
}

.tax-faq-item__summary--link:hover .tax-faq-item__question,
.tax-faq-item__summary--link:focus-visible .tax-faq-item__question {
	color: #80ff91;
}

.tax-faq-item__summary::-webkit-details-marker {
	display: none;
}

.tax-faq-item__mark {
	flex: 0 0 auto;
	color: #67ff7b;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 0.87;
}

.tax-faq-item__question {
	flex: 1 1 auto;
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	word-break: keep-all;
}

.tax-faq-item__question--post {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.tax-faq-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	color: #67ff7b;
	transition: transform 0.3s ease;
}

.tax-faq-item__icon svg {
	width: 0.875rem;
	height: 0.5rem;
}

.tax-faq-item__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.tax-faq-item__panel-inner {
	overflow: hidden;
}

.tax-faq-item__answer {
	margin: 0;
	padding: 0 2rem 2rem 5.75rem;
	color: rgba(255, 255, 255, 0.72);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
	opacity: 0;
	transform: translateY(-0.25rem);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.tax-faq-item__answer strong {
	color: #ffffff;
	font-weight: 700;
}

.tax-faq-item__empty {
	padding: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.72);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.0625rem;
	font-weight: 600;
	text-align: center;
}

.tax-faq-item__details[open] .tax-faq-item__icon {
	transform: rotate(180deg);
}

.tax-faq-item__details[open] .tax-faq-item__panel {
	grid-template-rows: 1fr;
}

.tax-faq-item__details[open] .tax-faq-item__answer {
	opacity: 1;
	transform: translateY(0);
}

.tax-faq-item__summary:focus-visible {
	outline: 2px solid rgba(128, 255, 145, 0.55);
	outline-offset: -2px;
}

/* cta section */
.tax-cta {
	position: relative;
	border-top: 1px solid rgba(196, 154, 60, 0.22);
	background: linear-gradient(224.24315deg, #0b1929 4.8916%, #192d49 71.835%);
}

.tax-cta__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 5rem 1rem;
}

.tax-cta__header {
	gap: 2rem;
}

.tax-cta__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.875rem;
	flex-wrap: wrap;
}

.tax-cta .tax-index__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.tax-cta .tax-index__summary {
	max-width: 36.25rem;
}

.tax-cta__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	color: #333;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
}
.tax-cta__badge svg {
	position:absolute;
	z-index: -1;
	transform: rotate(-90deg) scaleX(-1) ;
}
/* .tax-cta__badge::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #67ff7b, #0b1929);
	transform: rotate(45deg);
	z-index: -1;
} */
.tax-cta__form {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
	width: min(100%, 52rem);
	margin: 0 auto;
}

.tax-cta-field {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.tax-cta-field__label {
	margin: 0;
	padding: 0;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.3;
}

.tax-cta-field__required {
	color: #f84141;
}

.tax-cta-field__input {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 1px solid #333;
	border-radius: 0.5rem;
	background: #000;
	color: #ddd;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tax-cta-field__input::placeholder {
	color: #444;
}

.tax-cta-field__input:focus {
	border-color: rgba(128, 255, 145, 0.8);
	box-shadow: 0 0 0 3px rgba(128, 255, 145, 0.12);
	outline: none;
}

.tax-cta-field__textarea {
	min-height: 8rem;
	resize: vertical;
}

.tax-cta-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tax-cta-chip-option {
	position: relative;
}

.tax-cta-chip-option__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tax-cta-chip-option__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border: 1px solid #ddd;
	border-radius: 999px;
	background: transparent;
	color: #aaa;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	word-break: keep-all;
}

.tax-cta-chip-option__input:checked + .tax-cta-chip-option__label {
	border-color: #80ff91;
	background: #80ff91;
	color: #333;
	font-weight: 700;
}

.tax-cta-chip-option__input:focus-visible + .tax-cta-chip-option__label,
.tax-cta-chip-option__label:hover {
	transform: translateY(-1px);
}

.tax-cta-chip-option__input:focus-visible + .tax-cta-chip-option__label {
	outline: 2px solid rgba(128, 255, 145, 0.45);
	outline-offset: 2px;
}

.tax-cta__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.tax-cta__consent {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.tax-cta__consent-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.tax-cta__consent-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tax-cta__consent-box {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #aaa;
	border-radius: 0.25rem;
	background: transparent;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tax-cta__consent-box::after {
	content: "";
	position: absolute;
	left: 0.45rem;
	top: 0.15rem;
	width: 0.35rem;
	height: 0.7rem;
	border-right: 2px solid #0b1929;
	border-bottom: 2px solid #0b1929;
	opacity: 0;
	transform: rotate(45deg);
}

.tax-cta__consent-input:checked + .tax-cta__consent-box {
	border-color: #80ff91;
	background: #80ff91;
}

.tax-cta__consent-input:checked + .tax-cta__consent-box::after {
	opacity: 1;
}

.tax-cta__consent-input:focus-visible + .tax-cta__consent-box {
	outline: 2px solid rgba(128, 255, 145, 0.45);
	outline-offset: 2px;
}

.tax-cta__consent-text,
.tax-cta__consent-link {
	color: #fff;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.tax-cta__consent-text em {
	color: #ff4545;
	font-style: normal;
}

.tax-cta__consent-link {
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.tax-cta__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 2rem;
	border: 0;
	border-radius: 0.5rem;
	background: #80ff91;
	color: #333;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	transition: background-color 0.25s ease, transform 0.25s ease;
	cursor: pointer;
}

.tax-cta__submit:hover,
.tax-cta__submit:focus-visible {
	background: #67ff7b;
	transform: translateY(-1px);
	outline: none;
}

@media (max-width: 991.98px) {
	.tax-hero {
		min-height: auto;
	}

	.tax-hero__inner {
		grid-template-columns: 1fr;
		padding-top: 7.5rem;
		padding-bottom: 5rem;
		gap: 2.5rem;
	}

	.tax-hero__aside {
		justify-self: stretch;
		width: 100%;
	}

	.tax-hero__bubble {
		max-width: 42rem;
	}

	.tax-hero__mesh {
		right: -18%;
		bottom: -8%;
		width: 140vw;
		height: 72vw;
	}

	.tax-hero__glow {
		right: 4%;
		top: 18%;
	}

	.tax-experts__inner {
		padding-top: 4.5rem;
		padding-bottom: 4rem;
	}

	.tax-expert-card {
		grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
		gap: 2rem;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.tax-expert-card__content {
		min-height: auto;
	}

	.tax-expert-card__role {
		font-size: 1.25rem;
	}

	.tax-expert-card__badge,
	.tax-expert-card__description {
		font-size: 1rem;
	}

	.tax-expert-card__highlight {
		font-size: 1.25rem;
	}

	.tax-pain__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tax-pain-card:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 0.65625rem);
		justify-self: center;
	}

	.tax-outsource__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tax-outsource-step:nth-child(2n) .tax-outsource-step__connector {
		display: none;
	}

	.tax-pricing__grid {
		max-width: 100%;
	}

	.tax-after-rehab__grid {
		grid-template-columns: 1fr;
	}

	.tax-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tax-case-studies__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tax-faq__list {
		max-width: 100%;
	}

	.tax-faq-item__summary {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		gap: 1.5rem;
	}

	.tax-faq-item__question {
		font-size: 1.25rem;
	}

	.tax-faq-item__answer {
		padding-left: 4.5rem;
		padding-right: 1.5rem;
	}

	.tax-cta__form {
		width: min(100%, 48rem);
		gap: 3rem;
	}

	.tax-cta-field__label,
	.tax-cta-field__input,
	.tax-cta-chip-option__label,
	.tax-cta__consent-text,
	.tax-cta__consent-link,
	.tax-cta__submit {
		font-size: 1.25rem;
	}
}

@media (max-width: 767.98px) {
	.tax-index__header {
		gap: 1.5rem;
		margin-bottom: 1rem;
	}

	.tax-index__title {
		font-size: clamp(2rem, 9vw, 2.75rem);
	}

	.tax-index__summary {
		font-size: 1rem;
	}

	.tax-hero__inner {
		padding: 7rem 1.25rem 4.5rem;
	}

	.tax-hero__copy {
		gap: 2rem;
	}

	.tax-hero__header {
		gap: 1.5rem;
	}

	.tax-hero__title {
		font-size: clamp(2rem, 10vw, 2.75rem);
		line-height: 1.18;
	}

	.tax-hero__summary {
		font-size: 1.125rem;
		line-height: 1.5;
	}

	.tax-hero__benefit {
		font-size: 0.875rem;
		line-height: 1.5;
	}

	.tax-hero__actions {
		flex-direction: column;
	}

	.tax-hero__action {
		width: 100%;
	}

	.tax-hero__bubble {
		padding: 1.75rem 1.5rem;
		border-radius: 1.5rem;
	}

	.tax-hero__bubble::after {
		right: 1.75rem;
		bottom: -1.45rem;
		width: 2.8rem;
		height: 2.8rem;
	}

	.tax-hero__bubble-text {
		font-size: 1.2rem;
		line-height: 1.55;
	}

	.tax-hero__mesh {
		right: -42%;
		bottom: -2rem;
		width: 150vw;
		height: 90vw;
	}

	.tax-hero__glow {
		width: 16rem;
		height: 16rem;
	}

	.tax-experts__inner {
		padding: 4rem 1.25rem;
	}

	.tax-experts__list {
		gap: 1rem;
	}

	.tax-expert-card {
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 2rem 0;
	}

	.tax-expert-card__content {
		width: 100%;
		gap: 1.5rem;
	}

	.tax-expert-card__name-row,
	.tax-expert-card__role-row {
		gap: 0.75rem;
	}

	.tax-expert-card__role-row {
		padding-bottom: 0;
	}

	.tax-expert-card__role {
		font-size: 1.125rem;
	}

	.tax-expert-card__badge,
	.tax-expert-card__description {
		font-size: 0.95rem;
	}

	.tax-expert-card__highlight {
		width: 100%;
		font-size: 1rem;
	}

	.tax-pain__inner {
		padding: 4rem 1.25rem;
	}

	.tax-pain__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 2.5rem 0 0;
	}

	.tax-pain-card,
	.tax-pain-card:last-child {
		max-width: none;
		min-height: 0;
		width:100%; 
	}

	.tax-pain-card__body {
		padding: 1.75rem 1.5rem 2rem;
	}

	.tax-pain-card__title {
		font-size: 1.25rem;
	}

	.tax-pain-card__list,
	.tax-pain__footnote {
		font-size: 1rem;
	}

	.tax-outsource__inner {
		padding: 4rem 1.25rem;
	}

	.tax-outsource .tax-index__title {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.tax-outsource__steps {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 5rem 0 ;
	}

	.tax-outsource-step__connector {
		display: none;
	}

	.tax-outsource-step {
		gap: .5rem;
		padding-bottom: 0;
	}

	.tax-outsource-step__content {
		min-height: 0;
		padding: 0;
	}

	.tax-outsource-step__title {
		min-height: 0;
		font-size: 1.25rem;
	}

	.tax-outsource-step__description {
		font-size: 0.875rem;
	}

	/* 이전 모바일 테이블 축소안
	.tax-outsource__compare-wrap {
		margin-top: 1.5rem;
	}

	.tax-outsource__compare-summary {
		margin-bottom: 1rem;
	}

	.tax-outsource-compare {
		min-width: 42rem;
	}

	.tax-outsource-compare__head {
		font-size: 1rem;
	}

	.tax-outsource-compare__metric {
		padding-left: 1rem;
		padding-right: 1rem;
		font-size: 0.8125rem;
	}

	.tax-outsource-compare__stack strong,
	.tax-outsource-compare__text {
		font-size: 1rem;
	}
	*/

	.tax-outsource__compare-wrap {
		margin-top: 1.5rem;
		overflow: visible;
	}

	.tax-outsource__compare-summary {
		margin-bottom: 1rem;
	}

	.tax-outsource-compare {
		display: none;
	}

	.tax-outsource-compare-mobile {
		display: block;
	}

	.tax-outsource-compare-mobile__list {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.tax-outsource-compare-mobile__title {
		font-size: 1rem;
	}

	.tax-outsource-compare-mobile__body {
		padding: 0.875rem;
	}

	.tax-outsource-compare-mobile__row {
		padding: 0.875rem;
	}

	.tax-outsource-compare-mobile__value {
		font-size: 1.5rem;
	}

	.tax-outsource-compare-mobile__value strong {
		font-size: 1.5rem;
	}

	.tax-pricing__inner {
		padding: 4rem 1.25rem;
	}

	.tax-pricing .tax-index__title {
		font-size: clamp(2rem, 8.8vw, 2.5rem);
	}

	.tax-pricing__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding-top: 1.5rem;
	}

	.tax-pricing-card__body {
		padding: 1.5rem;
	}

	.tax-pricing-card__header {
		gap: 0.875rem;
	}

	.tax-pricing-card__eyebrow {
		font-size: 1rem;
	}

	.tax-pricing-card__title {
		font-size: 1.25rem;
	}

	.tax-pricing-card__price strong {
		font-size: 2.25rem;
	}

	.tax-pricing-card__item-text {
		font-size: 1rem;
	}

	.tax-pricing-card__badge {
		top: -0.25rem;
		right: 0;
	}

	.tax-after-rehab__inner {
		padding: 4rem 1.25rem;
	}

	.tax-after-rehab .tax-index__title {
		font-size: clamp(2.125rem, 9vw, 2.875rem);
	}

	.tax-after-rehab__grid {
		padding: 1.5rem 0 0;
	}

	.tax-after-rehab-card {
		padding: 1.5rem;
	}

	.tax-after-rehab-card__title {
		font-size: 1.25rem;
	}

	.tax-after-rehab-process__description {
		font-size: 1rem;
	}

	.tax-after-rehab-stats {
		grid-template-columns: 1fr;
	}

	.tax-after-rehab-stat {
		min-height: 6.5rem;
	}

	.tax-after-rehab-stat dt {
		font-size: 0.8125rem;
	}

	.tax-after-rehab-stat dd {
		font-size: 1.875rem;
	}

	.tax-services__inner {
		padding: 4rem 1.25rem;
	}

	.tax-services .tax-index__title {
		font-size: clamp(2.125rem, 9vw, 2.875rem);
	}

	.tax-services__grid {
		grid-template-columns: 1fr;
		padding: 1.5rem 0 0;
	}

	.tax-service-card {
		padding: 1.5rem 0;
	}

	.tax-service-card__figure {
		height: 8.5rem;
	}

	.tax-service-card__title {
		font-size: 1.25rem;
	}

	.tax-service-card__description {
		font-size: 0.9375rem;
	}

	.tax-case-studies__inner {
		padding: 4rem 1.25rem;
	}

	.tax-case-studies .tax-index__title {
		font-size: clamp(2.125rem, 9vw, 2.875rem);
	}

	.tax-case-studies__grid {
		grid-template-columns: 1fr;
		padding-top: 1.5rem;
	}

	.tax-case-card {
		min-height: auto;
	}

	.tax-case-card__content,
	.tax-case-card__meta {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.tax-case-card__content {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}

	.tax-case-card__title {
		font-size: 1.25rem;
	}

	.tax-case-card__detail {
		max-height: none;
		opacity: 1;
		transform: none;
		font-size: 1rem;
	}

	.tax-case-card:hover .tax-case-card__panel,
	.tax-case-card:focus-within .tax-case-card__panel {
		transform: none;
	}

	.tax-case-card__meta {
		padding-top: 0.875rem;
		padding-bottom: 0.875rem;
		font-size: 0.8125rem;
	}

	.tax-faq__inner {
		padding: 4rem 1.25rem;
	}

	.tax-faq .tax-index__title {
		font-size: clamp(2.125rem, 9vw, 2.875rem);
	}

	.tax-faq__list {
		padding-top: 0.75rem;
	}

	.tax-faq-item__summary {
		align-items: flex-start;
		padding: 1.375rem 0.25rem;
		gap: 1rem;
	}

	.tax-faq-item__mark {
		font-size: 1.75rem;
		line-height: 1;
	}

	.tax-faq-item__question {
		font-size: 1rem;
		line-height: 1.5;
	}

	.tax-faq-item__icon {
		width: 0.875rem;
		height: 0.875rem;
		margin-top: 0.3125rem;
	}

	.tax-faq-item__answer {
		padding: 0 0.25rem 1.375rem 2.75rem;
		font-size: 0.9375rem;
		line-height: 1.75;
	}

	.tax-cta__inner {
		padding: 4rem 1.25rem;
	}

	.tax-cta .tax-index__title {
		font-size: clamp(2rem, 8.8vw, 2.75rem);
	}

	.tax-cta__title-row {
		gap: 0.625rem;
	}

	.tax-cta__badge {
		width: 3.5rem;
		height: 3.5rem;
		font-size: 0.9375rem;
	}

	.tax-cta__badge::after {
		right: 0.45rem;
		bottom: -0.28rem;
		width: 0.85rem;
		height: 0.85rem;
	}

	.tax-cta__form {
		gap: 2rem;
	}

	.tax-cta-field__label,
	.tax-cta-field__input,
	.tax-cta-chip-option__label,
	.tax-cta__consent-text,
	.tax-cta__consent-link,
	.tax-cta__submit {
		font-size: 1rem;
	}

	.tax-cta-field__input {
		padding: 0.875rem 1rem;
	}

	.tax-cta-chip-group {
		gap: 0.75rem;
	}

	.tax-cta-chip-option__label {
		padding: 0.4375rem 0.875rem;
	}

	.tax-cta__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.tax-cta__consent {
		align-items: flex-start;
		gap: 0.75rem;
	}

	.tax-cta__consent-label {
		align-items: flex-start;
	}

	.tax-cta__submit {
		flex:1;
	}

	/* 모바일 가독성 보정: 소형 보조 텍스트를 제외하고 1rem 이하로 내려가지 않도록 유지 */
	.tax-hero__benefit,
	.tax-hero__action,
	.tax-expert-card__badge,
	.tax-expert-card__description,
	.tax-outsource-step__description,
	.tax-pricing-card__description,
	.tax-pricing-card__note,
	.tax-pricing-card__services-title,
	.tax-pricing-card__cta,
	.tax-pricing-card__badge,
	.tax-after-rehab-process__phase-label,
	.tax-after-rehab-stat dt,
	.tax-service-card__description,
	.tax-case-card__tag,
	.tax-case-card__meta,
	.tax-faq-item__answer,
	.tax-cta__badge {
		font-size: 1rem;
	}

	.tax-after-rehab-stat dt {
		max-width: calc(100% - 1rem);
		white-space: nowrap;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tax-cta-field__input,
	.tax-cta-chip-option__label,
	.tax-cta__consent-box,
	.tax-cta__submit {
		transition: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tax-faq-item__icon,
	.tax-faq-item__panel,
	.tax-faq-item__answer {
		transition: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tax-case-card__panel,
	.tax-case-card__detail {
		transition: none;
	}
}
