body.is-entry-locked {
	overflow: hidden;
}

.auction-entry-gate {
	position: fixed;
	inset: 0;
	z-index: 4000;
	display: grid;
	place-items: center;
	padding: 24px;
	color: #fff;
	background: #132825;
	overflow: hidden;
	isolation: isolate;
}

.auction-entry-gate::before,
.auction-entry-gate::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.auction-entry-gate::before {
	inset: 28px;
	border: 1px solid rgba(255, 255, 255, .14);
}

.auction-entry-gate::after {
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: var(--red);
	transform: translateX(-100%);
	animation: auction-entry-scan 1.05s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.auction-entry-frame {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.auction-entry-frame::before,
.auction-entry-frame::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, .08);
}

.auction-entry-frame::before {
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
}

.auction-entry-frame::after {
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}

.auction-entry-content {
	width: min(560px, 100%);
	text-align: center;
	animation: auction-entry-content-in .72s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.auction-entry-brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	text-align: left;
}

.auction-entry-brand > span {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	background: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 23px;
	font-weight: 700;
}

.auction-entry-brand div {
	display: grid;
	gap: 5px;
}

.auction-entry-brand strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1;
}

.auction-entry-brand small {
	color: rgba(255, 255, 255, .58);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.auction-entry-content > p {
	margin: 28px 0 22px;
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
	line-height: 1.6;
	word-break: keep-all;
}

.auction-entry-progress {
	width: min(280px, 72vw);
	height: 1px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .22);
	overflow: hidden;
}

.auction-entry-progress i {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left center;
	animation: auction-entry-progress 1.04s cubic-bezier(.22, 1, .36, 1) .18s both;
}

.auction-entry-gate.is-leaving {
	pointer-events: none;
	animation: auction-entry-curtain .84s cubic-bezier(.76, 0, .24, 1) both;
}

.auction-entry-gate.is-leaving .auction-entry-content {
	animation: auction-entry-content-out .32s ease both;
}

@keyframes auction-entry-scan {
	to { transform: translateX(0); }
}

@keyframes auction-entry-progress {
	to { transform: scaleX(1); }
}

@keyframes auction-entry-content-in {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes auction-entry-content-out {
	to { opacity: 0; transform: translateY(-16px); }
}

@keyframes auction-entry-curtain {
	from { clip-path: inset(0 0 0 0); }
	to { clip-path: inset(0 0 100% 0); }
}

.section-inner {
	width: min(calc(100% - 56px), var(--max-width));
	margin: 0 auto;
}

.section-kicker,
.eyebrow {
	margin: 0 0 14px;
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 54px;
}

.section-heading h2,
.intro-band h2,
.case-content h2,
.apply-intro h2,
.credentials-copy h2 {
	margin: 0;
	font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
	font-size: 54px;
	font-weight: 750;
	line-height: 1.16;
}

.section-heading > p {
	max-width: 430px;
	margin: 0 0 5px;
	color: var(--muted);
}

.button {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 20px;
	border: 1px solid transparent;
	font-size: 16px;
	font-weight: 800;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

.button svg {
	width: 17px;
	height: 17px;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.button:hover {
	transform: translateY(-3px);
}

.button:hover svg,
.button:focus-visible svg {
	transform: translateX(4px);
}

.button-primary {
	color: #fff;
	background: var(--red);
}

.button-primary:hover {
	background: var(--red-dark);
}

.button-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, .55);
}

.button-ghost:hover {
	background: rgba(255, 255, 255, .12);
}

.button-dark {
	color: #fff;
	background: var(--ink);
}

.hero {
	position: relative;
	min-height: 760px;
	height: min(88svh, 900px);
	overflow: hidden;
	color: #fff;
	background: #17191a;
}

.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media {
	object-fit: cover;
	object-position: center;
	transform: scale(1.035);
	animation: hero-image-breathe 13s cubic-bezier(.18, .7, .2, 1) both;
}

.hero-shade {
	background: rgba(8, 10, 10, .62);
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 56px), var(--max-width));
	height: 100%;
	margin: 0 auto;
	padding: calc(var(--header-height) + 86px) 0 158px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eyebrow {
	color: #e0c99e;
}

.hero h1 {
	max-width: 880px;
	margin: 0;
	font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
	font-size: 84px;
	font-weight: 760;
	line-height: 1.08;
}

.hero-copy {
	max-width: 690px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 19px;
	line-height: 1.72;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 38px;
}

.hero-proof {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: min(720px, 58vw);
	min-height: 112px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: var(--ink);
	background: #fff;
	opacity: 0;
}

.hero-proof > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px 28px;
	border-left: 1px solid var(--line);
}

.hero-proof strong {
	display: flex;
	align-items: baseline;
	gap: 3px;
	line-height: 1;
	white-space: nowrap;
}

.hero-proof .proof-number {
	margin: 0;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 700;
	font-variant-numeric: lining-nums tabular-nums;
	line-height: 1;
}

.hero-proof .proof-unit {
	margin: 0;
	color: inherit;
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

.hero-proof span {
	margin-top: 8px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 700;
}

.home-page .hero-inner > .eyebrow {
	opacity: 0;
}

.home-page .hero.is-kinetic-active .hero-inner > .eyebrow {
	animation: hero-eyebrow-in .8s .12s cubic-bezier(.16, 1, .3, 1) both;
}

.home-page .hero-inner > .hero-actions {
	opacity: 0;
}

.home-page .hero.is-kinetic-active .hero-inner > .hero-actions {
	animation: hero-actions-in .82s 2.15s cubic-bezier(.16, 1, .3, 1) both;
}

.home-page .hero.is-kinetic-active .hero-proof {
	animation: hero-proof-in .9s 2.35s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes hero-image-breathe {
	from { transform: scale(1.035); }
	to { transform: scale(1.105); }
}

@keyframes hero-eyebrow-in {
	from {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
		transform: translate3d(-18px, 0, 0);
	}
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes hero-actions-in {
	from {
		opacity: 0;
		transform: translate3d(-32px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes hero-proof-in {
	from {
		opacity: 0;
		transform: translate3d(52px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.intro-band {
	padding: 124px 0;
	background: #fff;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: 9vw;
	align-items: end;
}

.intro-copy {
	padding-bottom: 4px;
}

.intro-copy > p {
	margin: 0 0 28px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.85;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	font-size: 16px;
	font-weight: 800;
	border-bottom: 1px solid currentColor;
}

.text-link svg {
	width: 15px;
	height: 15px;
}

.services-section {
	padding: 118px 0 124px;
	background: var(--surface);
}

.service-list {
	border-top: 2px solid var(--ink);
}

.service-item {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 340px;
	gap: 30px;
	align-items: start;
	padding: 44px 0;
	border-bottom: 1px solid #c9cecc;
	transition: border-color .35s ease;
}

.service-item::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.service-item:hover {
	border-color: transparent;
}

.service-item:hover::before {
	transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) and (min-width: 641px) {
	.service-item {
		transition: padding-left .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease;
	}

	.service-item:hover {
		padding-left: 14px;
	}
}

.service-number {
	padding-top: 3px;
	color: var(--muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
}

.service-main {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 24px;
}

.service-icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	color: var(--red);
	background: #fff;
	border: 1px solid #d5d9d8;
}

.service-icon svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.6;
}

.service-main h3 {
	margin: 0;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 30px;
	font-weight: 750;
	line-height: 1.25;
}

.service-main p {
	max-width: 600px;
	margin: 13px 0 18px;
	color: var(--muted);
}

.service-main ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-main li {
	position: relative;
	padding-left: 12px;
	font-size: 15px;
	font-weight: 700;
}

.service-main li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 4px;
	height: 4px;
	background: var(--red);
}

.service-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.service-price > span,
.service-price-split > div > span {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.service-price strong {
	margin-top: 2px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	line-height: 1.2;
}

.service-price strong small {
	margin-left: 3px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
}

.price-notice {
	max-width: 340px;
	margin: 8px 0 0;
	color: var(--red-dark);
	font-size: 14px;
	line-height: 1.5;
	text-align: right;
}

.service-select {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 18px;
	padding: 0 0 4px;
	color: var(--ink);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--ink);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.service-select svg {
	width: 14px;
	height: 14px;
}

.service-price-split {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.service-price-split > div {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--line);
}

.service-price-split > div strong {
	margin-top: 0;
	font-size: 27px;
}

.service-price-split .service-select {
	align-self: flex-end;
}

.service-item.motion-reveal .service-number,
.service-item.motion-reveal .service-icon,
.service-item.motion-reveal .service-main h3,
.service-item.motion-reveal .service-main p,
.service-item.motion-reveal .service-main ul,
.service-item.motion-reveal .service-price {
	will-change: opacity, clip-path, transform;
}

.service-item.motion-reveal .service-number {
	opacity: 0;
	transform: translateX(-18px);
	transition: opacity .45s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

.service-item.motion-reveal .service-icon {
	opacity: 0;
	transform: rotate(-13deg) scale(.7);
	transform-origin: center;
	transition:
		opacity .42s ease,
		transform .78s cubic-bezier(.2, 1.5, .35, 1),
		box-shadow .78s ease;
}

.service-item.motion-reveal .service-main h3 {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-20px);
	transition:
		opacity .42s ease,
		clip-path .72s cubic-bezier(.16, 1, .3, 1),
		transform .72s cubic-bezier(.16, 1, .3, 1);
}

.service-item.motion-reveal .service-main p,
.service-item.motion-reveal .service-main ul {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity .52s ease, transform .78s cubic-bezier(.16, 1, .3, 1);
}

.service-item.motion-reveal .service-price {
	opacity: 0;
	clip-path: inset(0 0 0 100%);
	transform: translateX(30px);
	transition:
		opacity .48s ease,
		clip-path .82s cubic-bezier(.16, 1, .3, 1),
		transform .82s cubic-bezier(.16, 1, .3, 1);
}

.service-item.motion-reveal.is-visible .service-number,
.service-item.motion-reveal.is-visible .service-icon,
.service-item.motion-reveal.is-visible .service-main h3,
.service-item.motion-reveal.is-visible .service-main p,
.service-item.motion-reveal.is-visible .service-main ul,
.service-item.motion-reveal.is-visible .service-price {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	transform: none;
	will-change: auto;
}

.service-item.motion-reveal.is-visible .service-number {
	transition-delay: calc(var(--motion-delay, 0ms) + 60ms);
}

.service-item.motion-reveal.is-visible .service-icon {
	box-shadow: inset 0 0 0 1px rgba(180, 35, 24, .09);
	transition-delay: calc(var(--motion-delay, 0ms) + 110ms);
}

.service-item.motion-reveal.is-visible .service-main h3 {
	transition-delay: calc(var(--motion-delay, 0ms) + 170ms);
}

.service-item.motion-reveal.is-visible .service-main p {
	transition-delay: calc(var(--motion-delay, 0ms) + 235ms);
}

.service-item.motion-reveal.is-visible .service-main ul {
	transition-delay: calc(var(--motion-delay, 0ms) + 300ms);
}

.service-item.motion-reveal.is-visible .service-price {
	transition-delay: calc(var(--motion-delay, 0ms) + 190ms);
}

.process-section {
	padding: 124px 0;
	color: #fff;
	background: var(--green);
}

.process-section .section-kicker {
	color: #d7bb88;
}

.process-heading > p {
	max-width: none;
	color: rgba(255, 255, 255, .68);
	white-space: nowrap;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .28);
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.process-list li {
	position: relative;
	min-height: 280px;
	padding: 34px 36px 38px;
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.process-list li:first-child {
	border-left: 0;
}

.process-list li > span {
	position: absolute;
	top: 28px;
	right: 28px;
	color: rgba(255, 255, 255, .45);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
}

.process-list li > svg {
	width: 34px;
	height: 34px;
	margin: 10px 0 56px;
	color: #e0c99e;
	stroke-width: 1.5;
}

.process-list h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.process-list p {
	margin: 0;
	color: rgba(255, 255, 255, .68);
	font-size: 16px;
}

.process-list li.motion-reveal::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 36px;
	width: 52px;
	height: 2px;
	background: #e0c99e;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .72s cubic-bezier(.16, 1, .3, 1);
}

.process-list li.motion-reveal > span,
.process-list li.motion-reveal > svg,
.process-list li.motion-reveal > h3,
.process-list li.motion-reveal > p {
	will-change: opacity, clip-path, transform;
}

.process-list li.motion-reveal > span {
	opacity: 0;
	transform: translateX(18px);
	transition: opacity .4s ease, transform .66s cubic-bezier(.16, 1, .3, 1);
}

.process-list li.motion-reveal > svg {
	opacity: 0;
	stroke-dasharray: 90;
	stroke-dashoffset: 90;
	transform: rotate(-10deg) scale(.72);
	transform-origin: center;
	transition:
		opacity .38s ease,
		stroke-dashoffset 1s cubic-bezier(.16, 1, .3, 1),
		transform .76s cubic-bezier(.2, 1.45, .35, 1);
}

.process-list li.motion-reveal > h3 {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-20px);
	transition:
		opacity .42s ease,
		clip-path .72s cubic-bezier(.16, 1, .3, 1),
		transform .72s cubic-bezier(.16, 1, .3, 1);
}

.process-list li.motion-reveal > p {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity .5s ease, transform .76s cubic-bezier(.16, 1, .3, 1);
}

.process-list li.motion-reveal.is-visible::before {
	transform: scaleX(1);
	transition-delay: calc(var(--motion-delay, 0ms) + 80ms);
}

.process-list li.motion-reveal.is-visible > span,
.process-list li.motion-reveal.is-visible > svg,
.process-list li.motion-reveal.is-visible > h3,
.process-list li.motion-reveal.is-visible > p {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	transform: none;
	will-change: auto;
}

.process-list li.motion-reveal.is-visible > span {
	transition-delay: calc(var(--motion-delay, 0ms) + 110ms);
}

.process-list li.motion-reveal.is-visible > svg {
	stroke-dashoffset: 0;
	transition-delay: calc(var(--motion-delay, 0ms) + 150ms);
}

.process-list li.motion-reveal.is-visible > h3 {
	transition-delay: calc(var(--motion-delay, 0ms) + 250ms);
}

.process-list li.motion-reveal.is-visible > p {
	transition-delay: calc(var(--motion-delay, 0ms) + 330ms);
}

.bank-band {
	min-height: 104px;
	display: grid;
	grid-template-columns: 1fr auto 48px;
	align-items: center;
	gap: 32px;
	margin-top: 44px;
	padding: 22px 28px;
	color: var(--ink);
	background: #fff;
}

.bank-label {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bank-label > svg {
	width: 26px;
	height: 26px;
	color: var(--green);
}

.bank-label div {
	display: grid;
}

.bank-label span {
	font-weight: 800;
}

.bank-label small {
	color: var(--muted);
	font-size: 14px;
}

.bank-account {
	display: flex;
	align-items: baseline;
	gap: 14px;
	white-space: nowrap;
}

.bank-account strong {
	font-size: 16px;
}

.bank-account span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum";
	letter-spacing: 0;
}

.bank-account em {
	color: var(--muted);
	font-size: 14px;
	font-style: normal;
}

.icon-button {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	padding: 0;
	color: var(--ink);
	background: var(--surface);
	border: 0;
	cursor: pointer;
	transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.icon-button svg {
	width: 19px;
	height: 19px;
}

.icon-button.is-copied {
	color: #fff;
	background: var(--green);
	transform: scale(.94);
}

.copy-feedback {
	position: fixed;
	left: 50%;
	bottom: 30px;
	z-index: 1800;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	color: #fff;
	background: var(--ink);
	border-left: 4px solid #54a66b;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
	font-size: 15px;
	font-weight: 700;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 14px);
	transition: opacity .22s ease, transform .22s ease;
}

.copy-feedback.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.copy-feedback.is-error {
	border-left-color: #df5d51;
}

.copy-feedback svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.case-highlight {
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
	min-height: 720px;
	background: #fff;
	border-top: 1px solid #d9dddc;
	border-bottom: 1px solid #d9dddc;
}

.case-photo {
	position: relative;
	overflow: hidden;
	background: #e4e7e6;
}

.case-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	filter: saturate(.88) contrast(1.02);
	transform: scale(1.06);
	transition: transform 1.25s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.case-photo.is-visible img {
	transform: scale(1.025);
}

.case-photo:hover img {
	filter: saturate(1) contrast(1.02);
	transform: scale(1.045);
}

.case-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 48%, rgba(10, 14, 14, .58) 100%);
}

.case-photo-mark {
	position: absolute;
	right: 34px;
	bottom: 32px;
	left: 34px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-top: 17px;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, .64);
}

.case-photo-mark span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.case-photo-mark strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	line-height: .85;
}

.case-photo-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 16px;
	color: #6b7371;
	background: linear-gradient(135deg, #e8ebea, #d8dcdb);
}

.case-photo-placeholder svg {
	width: 54px;
	height: 54px;
	stroke-width: 1.25;
}

.case-photo-placeholder span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.case-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 72px clamp(48px, 6vw, 116px);
}

.case-content h2 {
	max-width: 720px;
	font-size: clamp(46px, 4.1vw, 64px);
	line-height: 1.13;
	overflow-wrap: anywhere;
}

.case-content-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--line);
}

.case-content-head > span {
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.case-courthouse {
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 650;
}

.case-summary {
	max-width: 620px;
	margin: 28px 0 34px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.85;
}

.case-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 38px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.case-facts div {
	min-width: 0;
	padding: 22px 24px;
	border-left: 1px solid var(--line);
}

.case-facts div:first-child {
	border-left: 0;
	padding-left: 0;
}

.case-facts div:last-child {
	padding-right: 0;
}

.case-facts span,
.case-facts strong {
	display: block;
}

.case-facts span {
	color: var(--muted);
	font-size: 15px;
}

.case-facts strong {
	margin-top: 6px;
	font-size: 18px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.case-actions {
	display: flex;
	align-items: center;
	gap: 26px;
}

.case-actions > a:last-child {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 750;
	border-bottom: 1px solid var(--ink);
}

.case-actions > a:last-child svg {
	width: 17px;
	height: 17px;
	transition: transform .2s ease;
}

.case-actions > a:last-child:hover svg {
	transform: translate(2px, -2px);
}

.experts-section {
	padding: 124px 0;
	background: var(--surface);
}

.lead-expert {
	display: grid;
	grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
	min-height: 560px;
	background: #fff;
}

.lead-photo {
	position: relative;
	overflow: hidden;
	background: #e7e9e8;
}

.lead-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.lead-photo:hover img {
	transform: scale(1.035);
}

.lead-profile {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 62px clamp(42px, 6vw, 88px);
}

.role {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.lead-profile h3 {
	margin: 10px 0 18px;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 42px;
	font-weight: 750;
	line-height: 1.15;
}

.lead-profile h3 small {
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
}

.lead-profile > p {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.lead-profile ul {
	margin: 0 0 28px;
	padding: 20px 0;
	list-style: none;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.lead-profile li {
	position: relative;
	padding: 5px 0 5px 14px;
	font-size: 16px;
	font-weight: 700;
}

.lead-profile li::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--gold);
}

.lead-profile .text-link {
	align-self: flex-start;
}

.expert-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.expert-profile {
	min-height: 310px;
	display: grid;
	grid-template-columns: 44% 56%;
	background: #fff;
}

.expert-photo {
	overflow: hidden;
	background: #eceeed;
}

.expert-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.expert-profile:hover .expert-photo img {
	transform: scale(1.035);
}

.expert-profile > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
}

.expert-profile h3 {
	margin: 10px 0 14px;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-size: 24px;
	font-weight: 750;
	line-height: 1.25;
}

.expert-profile h3 small {
	display: block;
	margin-top: 7px;
	color: var(--muted);
	font-family: inherit;
	font-size: 14px;
	font-weight: 650;
}

.expert-profile p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
}

.credentials-section {
	padding: 124px 0;
	color: #fff;
	background: #191c1d;
}

.credentials-grid {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}

.credentials-copy {
	position: sticky;
	top: calc(var(--header-height) + 32px);
}

.credentials-copy .section-kicker {
	color: #d8ba83;
}

.credentials-copy h2 {
	font-size: 42px;
}

.credentials-copy > p:last-child {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .62);
}

.credential-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.credential-gallery figure {
	margin: 0;
}

.credential-gallery figure:nth-child(3) {
	grid-column: 1 / -1;
}

.credential-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	filter: saturate(.82);
	transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}

.credential-gallery figure {
	overflow: hidden;
}

.credential-gallery figure:hover img {
	filter: saturate(1);
	transform: scale(1.025);
}

.credential-gallery figure:nth-child(3) img {
	aspect-ratio: 2 / 1;
}

.credential-gallery figcaption {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, .22);
}

.credential-gallery figcaption strong {
	font-size: 15px;
}

.credential-gallery figcaption span {
	color: rgba(255, 255, 255, .54);
	font-size: 14px;
	text-align: right;
}

.reviews-section {
	padding: 118px 0;
	background: #fff;
	overflow: hidden;
}

.review-score {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.review-score strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 44px;
	line-height: 1;
}

.review-score span {
	color: var(--muted);
	font-size: 14px;
}

.review-scroll-wrapper {
	position: relative;
}

.review-track {
	display: grid;
	grid-template-columns: repeat(3, minmax(300px, 1fr));
	gap: 18px;
	max-height: 530px;
	overflow: auto;
	overscroll-behavior: auto;
	scrollbar-width: thin;
}

.review-track.is-scroll-inactive {
	pointer-events: none;
}

.review-scroll-overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(18, 27, 27, .18);
	cursor: pointer;
	font-family: inherit;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.review-scroll-hint {
	padding: 11px 18px;
	color: #fff;
	background: rgba(15, 20, 21, .88);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .35s ease, transform .35s ease;
}

.review-scroll-overlay.is-prompt-visible .review-scroll-hint {
	opacity: 1;
	transform: translateY(0);
}

.review-item {
	min-height: 240px;
	padding: 26px;
	background: var(--surface);
	border-top: 3px solid var(--ink);
}

.review-meta {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
}

.review-avatar {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	color: #fff;
	background: var(--green);
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	font-weight: 750;
}

.review-meta > div:nth-child(2) {
	display: grid;
}

.review-meta strong {
	font-size: 16px;
}

.review-meta span {
	color: var(--muted);
	font-size: 14px;
}

.review-meta em {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
}

.review-item > p {
	margin: 24px 0 0;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.8;
}

.apply-section {
	padding: 126px 0;
	color: #fff;
	background: #212527;
}

.apply-grid {
	display: grid;
	grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: start;
}

.apply-intro {
	position: sticky;
	top: calc(var(--header-height) + 36px);
}

.apply-intro .section-kicker {
	color: #d8ba83;
}

.apply-intro h2 {
	font-size: 56px;
}

.apply-intro > p {
	margin: 28px 0 38px;
	color: rgba(255, 255, 255, .66);
	font-size: 18px;
	line-height: 1.8;
}

.apply-contact {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
	border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.apply-contact > svg {
	width: 22px;
	height: 22px;
	color: #d8ba83;
}

.apply-contact div {
	display: grid;
}

.apply-contact span {
	color: rgba(255, 255, 255, .55);
	font-size: 15px;
}

.apply-contact a {
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.35;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum";
	letter-spacing: 0;
}

.apply-account-summary {
	display: grid;
	margin-top: 28px;
}

.apply-account-summary span {
	color: #d8ba83;
	font-size: 15px;
	font-weight: 700;
}

.apply-account-summary strong {
	margin-top: 4px;
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.45;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum";
	letter-spacing: 0;
}

.apply-account-summary em {
	color: rgba(255, 255, 255, .55);
	font-size: 15px;
	font-style: normal;
}

.apply-form {
	padding: clamp(28px, 4vw, 52px);
	color: var(--ink);
	background: #fff;
}

.apply-form fieldset {
	margin: 0 0 38px;
	padding: 0;
	border: 0;
}

.apply-form legend {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 19px;
	font-size: 17px;
	font-weight: 800;
}

.apply-form legend span {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
}

.case-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
}

.case-option {
	position: relative;
	min-height: 152px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 22px;
	border-left: 1px solid var(--line);
	cursor: pointer;
}

@media (min-width: 641px) {
	.case-option {
		min-height: 170px;
		justify-content: flex-start;
		padding: 78px 22px 20px;
	}
}

.case-option:first-child {
	border-left: 0;
}

.case-option input,
.region-options input,
.agree-field > input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.case-check {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	color: transparent;
	background: var(--surface);
	border: 1px solid var(--line);
}

.case-check svg {
	width: 16px;
	height: 16px;
}

.case-symbol {
	position: absolute;
	top: 18px;
	left: 22px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: var(--green);
	background: #edf4f2;
}

.case-symbol svg {
	width: 20px;
	height: 20px;
	stroke-width: 1.7;
}

.case-option-rights .case-symbol {
	color: var(--red);
	background: #fff0ee;
}

.case-option-field .case-symbol {
	color: #80601f;
	background: #f8f0df;
}

.case-option strong {
	font-size: 18px;
}

.case-option small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.case-option small span {
	display: block;
}

.case-option small span + span {
	margin-top: 3px;
}

.case-option:has(input:checked) {
	color: #fff;
	background: var(--green);
}

.case-option input:checked ~ .case-check {
	color: var(--green);
	background: #fff;
	border-color: #fff;
}

.case-option input:checked ~ .case-symbol {
	color: var(--green);
	background: #fff;
}

.case-option-rights:has(input:checked) {
	background: var(--red);
}

.case-option-rights input:checked ~ .case-check,
.case-option-rights input:checked ~ .case-symbol {
	color: var(--red);
}

.case-option-field:has(input:checked) {
	background: #80601f;
}

.case-option-field input:checked ~ .case-check,
.case-option-field input:checked ~ .case-symbol {
	color: #80601f;
}

.case-option input:checked ~ small {
	color: rgba(255, 255, 255, .7);
}

.case-option:focus-within {
	outline: 3px solid rgba(180, 35, 24, .24);
	outline-offset: 2px;
}

.region-field[hidden],
.rights-fee-alert[hidden] {
	display: none;
}

.region-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.region-options label {
	position: relative;
	cursor: pointer;
}

.region-options span {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px;
	background: var(--surface);
	border: 1px solid var(--line);
	font-size: 15px;
}

.region-options input:checked + span {
	color: #fff;
	background: var(--red);
	border-color: var(--red);
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field > span {
	font-size: 16px;
	font-weight: 700;
}

.form-field input {
	width: 100%;
	height: 60px;
	padding: 0 18px;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	outline: 0;
	font-size: 16px;
}

.form-field input:focus {
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(18, 20, 22, .08);
}

.selected-fee {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 22px;
	margin-bottom: 26px;
	padding: 22px 24px;
	background: var(--surface);
	border-left: 3px solid var(--red);
}

.selected-fee > div {
	display: grid;
}

.selected-fee > div:last-child {
	text-align: right;
}

.selected-fee span {
	color: var(--muted);
	font-size: 14px;
}

.selected-fee strong {
	margin-top: 5px;
	font-size: 17px;
}

.agree-field {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	cursor: pointer;
}

.checkbox-ui {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	color: transparent;
	background: #fff;
	border: 1px solid var(--line);
}

.checkbox-ui svg {
	width: 14px;
	height: 14px;
}

.agree-field input:checked + .checkbox-ui {
	color: #fff;
	background: var(--green);
	border-color: var(--green);
}

.agree-field > span:last-child {
	display: grid;
}

.agree-field strong {
	font-size: 16px;
}

.agree-field small {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.rights-fee-alert {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	margin-top: 24px;
	padding: 16px;
	color: #712019;
	background: #fff1ef;
	border: 1px solid #efc5c0;
}

.rights-fee-alert svg {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.rights-fee-alert p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
}

.submit-button {
	width: 100%;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	padding: 0 22px;
	color: #fff;
	background: var(--red);
	border: 0;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: background-color .2s ease;
}

.submit-button:hover {
	background: var(--red-dark);
}

.submit-button svg {
	width: 18px;
	height: 18px;
}

.form-footnote {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 14px;
	text-align: center;
}

@media (max-width: 1080px) {
	.service-item {
		grid-template-columns: 54px minmax(0, 1fr) 320px;
	}

	.process-heading {
		display: block;
	}

	.process-heading > p {
		max-width: 640px;
		margin-top: 24px;
		white-space: normal;
	}

	.expert-profile {
		grid-template-columns: 40% 60%;
	}

	.review-track {
		grid-template-columns: repeat(2, minmax(300px, 1fr));
	}
}

@media (max-width: 900px) {
	.section-inner,
	.hero-inner {
		width: min(calc(100% - 36px), var(--max-width));
	}

	.section-heading {
		display: block;
		margin-bottom: 38px;
	}

	.section-heading > p {
		margin-top: 18px;
	}

	.process-heading > p {
		white-space: normal;
	}

	.hero {
		min-height: 670px;
		height: min(84svh, 780px);
	}

	.hero-inner {
		padding: calc(var(--header-height) + 60px) 0 125px;
	}

	.hero h1 {
		font-size: 64px;
	}

	.hero-proof {
		width: 100%;
		min-height: 92px;
	}

	.hero-proof > div {
		padding: 18px;
	}

	.hero-proof strong {
		font-size: 21px;
	}

	.hero-proof .proof-number {
		font-size: 23px;
	}

	.hero-proof .proof-unit {
		font-size: 16px;
	}

	.intro-band,
	.services-section,
	.process-section,
	.experts-section,
	.credentials-section,
	.reviews-section,
	.apply-section {
		padding: 86px 0;
	}

	.intro-grid,
	.credentials-grid,
	.apply-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service-item {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 22px;
	}

	.service-price {
		grid-column: 2;
		align-items: flex-start;
		padding-top: 20px;
		border-top: 1px solid var(--line);
	}

	.price-notice {
		text-align: left;
	}

	.service-price-split {
		width: min(100%, 280px);
	}

	.service-price-split > div {
		align-items: baseline;
	}

	.service-price-split .service-select {
		align-self: flex-start;
	}

	.process-list {
		grid-template-columns: 1fr;
	}

	.process-list li {
		min-height: 220px;
		border-top: 1px solid rgba(255, 255, 255, .2);
		border-left: 0;
	}

	.process-list li:first-child {
		border-top: 0;
	}

	.process-list li > svg {
		margin-bottom: 38px;
	}

	.bank-band {
		grid-template-columns: 1fr 44px;
	}

	.copy-feedback {
		bottom: 84px;
		width: max-content;
		max-width: calc(100% - 32px);
	}

	.bank-account {
		grid-column: 1;
		flex-wrap: wrap;
		gap: 4px 12px;
		white-space: normal;
	}

	.icon-button {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.case-highlight {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.case-photo {
		min-height: 520px;
	}

	.case-content {
		padding: 64px 36px;
	}

	.lead-expert {
		grid-template-columns: 1fr;
	}

	.lead-photo {
		min-height: 520px;
	}

	.expert-grid {
		grid-template-columns: 1fr;
	}

	.credentials-copy,
	.apply-intro {
		position: static;
	}

	.credential-gallery {
		gap: 18px;
	}
}

@media (max-width: 640px) {
	.auction-entry-gate::before {
		inset: 16px;
	}

	.auction-entry-brand {
		gap: 12px;
	}

	.auction-entry-brand > span {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}

	.auction-entry-brand strong {
		font-size: 19px;
	}

	.auction-entry-content > p {
		max-width: 270px;
		margin: 24px auto 20px;
		font-size: 15px;
	}

	.section-heading h2,
	.intro-band h2,
	.case-content h2,
	.apply-intro h2,
	.credentials-copy h2 {
		font-size: 36px;
	}

	.section-kicker,
	.eyebrow {
		font-size: 14px;
	}

	.desktop-only {
		display: none;
	}

	.hero {
		min-height: 640px;
		height: auto;
	}

	.hero-inner {
		height: auto;
		min-height: max(640px, 82svh);
		padding-bottom: 156px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero-copy {
		font-size: 15px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
		width: min(100%, 320px);
	}

	.hero-proof {
		right: 8px;
		bottom: 8px;
		width: calc(100% - 16px);
		min-height: 104px;
		color: #fff;
		background: rgba(25, 30, 30, .96);
		border-top: 3px solid #d8ba83;
		box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
	}

	.hero-proof > div {
		align-items: center;
		padding: 17px 7px 0px;
		border-left-color: rgba(255, 255, 255, .16);
		text-align: center;
	}

	.hero-proof strong {
		justify-content: center;
		gap: 2px;
		width: 100%;
	}

	.hero-proof .proof-number {
		color: #fff;
		font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
		font-size: 22px;
		font-weight: 750;
	}

	.hero-proof .proof-unit {
		color: #d8ba83;
		font-size: 14px;
		font-weight: 750;
	}

	.hero-proof > div > span {
		min-height: 38px;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		margin-top: 9px;
		color: rgba(255, 255, 255, .68);
		font-size: 14px;
		font-weight: 650;
		line-height: 1.35;
		word-break: keep-all;
	}

	.intro-copy > p {
		font-size: 16px;
	}

	.service-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 34px 0;
	}

	.service-item:hover {
		padding-left: 0;
	}

	.service-main {
		transition: transform .35s cubic-bezier(.22, 1, .36, 1);
	}

	.service-item:hover .service-main,
	.service-item:focus-within .service-main {
		transform: translateX(8px);
	}

	.service-number {
		padding: 0;
	}

	.service-main {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 16px;
	}

	.service-icon {
		width: 46px;
		height: 46px;
	}

	.service-icon svg {
		width: 22px;
		height: 22px;
	}

	.service-main h3 {
		font-size: 24px;
	}

	.service-main ul {
		display: grid;
		gap: 5px;
	}

	.service-price {
		grid-column: 1;
		align-items: flex-start;
		margin-left: 64px;
	}

	.service-price strong {
		font-size: 30px;
	}

	.process-list li {
		padding: 28px 24px;
	}

	.bank-band {
		gap: 18px 10px;
		padding: 20px;
	}

	.bank-account span {
		font-size: 20px;
	}

	.case-photo {
		min-height: 380px;
	}

	.case-content {
		padding: 54px 20px 60px;
	}

	.case-content-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
		margin-bottom: 24px;
	}

	.case-summary {
		margin: 24px 0 30px;
		font-size: 16px;
		line-height: 1.75;
	}

	.case-photo-mark {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.case-facts {
		grid-template-columns: 1fr;
	}

	.case-facts div {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 13px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.case-facts div:first-child {
		border-top: 0;
	}

	.case-facts strong {
		margin: 0;
		max-width: 68%;
		text-align: right;
	}

	.case-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.case-actions .button {
		justify-content: space-between;
		width: 100%;
	}

	.case-actions > a:last-child {
		align-self: flex-start;
	}

	.lead-photo {
		min-height: 420px;
	}

	.lead-profile {
		padding: 42px 24px;
	}

	.lead-profile h3 {
		font-size: 34px;
	}

	.expert-profile {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.expert-photo {
		height: 350px;
	}

	.expert-profile > div:last-child {
		padding: 28px 24px 34px;
	}

	.credential-gallery {
		grid-template-columns: 1fr;
	}

	.credential-gallery figure:nth-child(3) {
		grid-column: 1;
	}

	.credential-gallery figure:nth-child(3) img {
		aspect-ratio: 4 / 3;
	}

	.credential-gallery figcaption {
		display: grid;
	}

	.credential-gallery figcaption span {
		text-align: left;
	}

	.review-track {
		grid-template-columns: 1fr;
		max-height: 620px;
		overflow: auto;
		padding-bottom: 0;
		touch-action: pan-y;
	}

	.review-item {
		min-height: 210px;
	}

	.apply-form {
		padding: 24px 18px;
	}

	.case-options,
	.field-grid {
		grid-template-columns: 1fr;
	}

	.case-option {
		min-height: 124px;
		justify-content: center;
		padding: 20px 58px 20px 76px;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.case-option:first-child {
		border-top: 0;
	}

	.case-option .case-symbol {
		top: 50%;
		left: 18px;
		transform: translateY(-50%);
	}

	.case-option .case-check {
		top: 50%;
		right: 18px;
		transform: translateY(-50%);
	}

	.region-options {
		grid-template-columns: 1fr;
	}

	.selected-fee {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.selected-fee > div:last-child {
		text-align: left;
	}

	.form-footnote > span {
		display: block;
	}

	.form-footnote > span + span {
		margin-top: 2px;
	}

	.apply-contact a {
		font-size: 24px;
		font-weight: 650;
		letter-spacing: .01em;
	}

	.apply-account-summary strong {
		font-size: 19px;
		font-weight: 650;
		line-height: 1.5;
	}
}
