/*==================================================
    Base
==================================================*/

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: #ffffff;
	color: #1e293b;
	font-family: Arial, "Noto Sans KR", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font-family: inherit;
}
/* footer
---------------------------------- */
#footer {
	border-top: 1px solid #dddddd;
	padding-bottom: 30px;
}
#footer .wrapper {
	margin: 0 auto;
	max-width: 1280px;
}
#footer .footer-in {
	padding: 20px 0 0 208px;
	/*background: url(/img/foot_logo.gif) no-repeat left 43px;*/
	position: relative;
}
#footer .footer-logo {
	position: absolute;
	left: 40px;
	top: 36px;
	font-weight: 900;
	font-size: 2rem;
	line-height: 1;
	opacity: 0.3;
}
.footer-info li {
	display: inline-block;
	margin-right: 10px;
	font-size: 0.88rem;
}
.footer-info li:first-child {
	font-weight: 500;
}
.copyright {
	margin-top: 10px;
	padding-left: 40px;
	font-size: 0.83rem;
	color: #b1b1b1;
}
@media screen and (max-width: 837px) {
	#footer .footer-in {
		padding: 20px 0 0 0;
	}
	#footer .footer-logo {
		display: none;
	}
	.footer-info li:first-child {
		display: block;
	}
}
/* footer - end
---------------------------------- */
/*==================================================
    Header
==================================================*/

.site-header {
	height: 60px;
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1280px;
	height: 60px;
	margin: 0 auto;
	padding: 0 38px;
}

.site-logo-link {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-weight: 900;
	letter-spacing: -1px;
}

.logo-main,
.logo-sub {
	font-size: 30px;
	line-height: 1;
}

.logo-main {
	color: #2563eb;
}

.logo-sub {
	color: #111827;
}
.site-logo-link em {
	position: absolute;
	left: 35px;
	top: 37px;

	font-style: normal;
	font-size: 12px;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.2px;
}
.site-nav-list {
	display: flex;
	align-items: center;
	gap: 44px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav-list a {
	font-size: 17px;
	font-weight: 700;
	color: #111827;
}

/*==================================================
    Page
==================================================*/
.procedure-page {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 60px);
	background: #ffffff;
}
.procedure-section {
	position: relative;
	z-index: 1;
	padding: 66px 0 72px;
}
.procedure-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 42px;
}
.procedure-heading {
	max-width: 820px;
	margin: 0 auto 44px;
	text-align: center;
}
.procedure-eyebrow {
	display: block;
	margin-bottom: 13px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.7px;
	color: #2563eb;
}
.procedure-heading h1 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.25;
	/*font-weight: 800;*/
	letter-spacing: -1.4px;
	color: #172033;
}
.procedure-heading p {
	margin: 19px 0 0;
	font-size: 17px;
	line-height: 1.75;
	font-weight: 500;
	color: #475569;
}
.procedure-shell {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

/*==================================================
    Flow
==================================================*/
.procedure-flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.procedure-flow-step {
	position: relative;
	min-width: 0;
}
.procedure-flow-step:not(:last-child)::after {
	content: "\f061";
	position: absolute;
	top: 50%;
	right: -34px;
	z-index: 2;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	font-family: "Font Awesome 6 Pro";
	font-size: 16px;
	font-weight: 800;
	line-height: 22px;
	text-align: center;
	color: #60a5fa;
}
.procedure-step-card {
	height: 100%;
	min-height: 390px;
	padding: 24px 24px 25px;
	/*background: #ffffff;*/
	border: 1px solid #dbe4ee;
	border-radius: 18px;
	box-shadow: none;
	transition: transform .22s ease, border-color .22s ease;
}
.procedure-step-card:hover {
	border-color: #93c5fd;
	transform: translateY(-4px);
}
.procedure-step-card-agreement {
	/*background: linear-gradient(180deg, #ffffff 0%, #f4fbf2 100%);*/
	border-color: #c7e5bf;
}
.procedure-step-card-trial {
	/*background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);*/
	border-color: #bfdbfe;
}
.procedure-step-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}
.procedure-step-number {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #94a3b8;
}
.procedure-step-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	background: #eff6ff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #2563eb;
}
.procedure-step-badge-agreement {
	background: #eaf7e6;
	color: #3f7c32;
}
.procedure-step-badge-trial {
	background: #dbeafe;
	color: #1d4ed8;
}
.procedure-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	background: #eff6ff;
	border-radius: 17px;
	color: #2563eb;
}
.procedure-step-icon-agreement {
	background: #eaf7e6;
	color: #4b8b3b;
}
.procedure-step-icon i { font-size: 27px; }
.procedure-step-card h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 750;
	letter-spacing: -.5px;
	color: #1e293b;
}
.procedure-step-card > p {
	min-height: 76px;
	margin: 13px 0 0;
	font-size: 15px;
	line-height: 1.7;
	font-weight: 500;
	color: #475569;
}
.procedure-step-list {
	margin: 21px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid #edf1f6;
	list-style: none;
}
.procedure-step-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #475569;
	font-weight: 400;
}
.procedure-step-list li:last-child { margin-bottom: 0; }
.procedure-step-list i {
	margin-top: 3px;
	font-size: 12px;
	color: #2563eb;
}
.procedure-contact {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 17px;
	padding: 13px 15px;
	background: #f8fafc;
	border-radius: 11px;
}
.procedure-contact span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
}
.procedure-contact i {
	width: 15px;
	text-align: center;
	color: #2563eb;
}

/*==================================================
    Decision
==================================================*/
.procedure-decision {
	margin: 34px auto 0;
	padding: 38px;
	background: #f8fafc;
	border-radius: 20px;
}
.procedure-decision-heading {
	margin-bottom: 28px;
	text-align: center;
}
.procedure-decision-heading > span {
	display: block;
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 750;
	color: #2563eb;
}
.procedure-decision-heading h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: -.8px;
	color: #1e293b;
}
.procedure-decision-heading p {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.65;
	font-weight: 500;
	color: #475569;
}
.procedure-decision-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 700px;
	margin: 0 auto;
}
.procedure-option-card {
	position: relative;
	min-width: 0;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
}
.procedure-option-continue {
	background: linear-gradient(145deg, #fffefe 0%, #fff1f5 100%);
	border-color: #f9a8d4;
	box-shadow: 0 16px 38px rgba(236, 72, 153, .12);
}
.procedure-option-status {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 5px 11px;
	background: #fce7f3;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 750;
	color: #be185d;
}
.procedure-option-cancel .procedure-option-status {
	background: #f1f5f9;
	color: #64748b;
}
.procedure-option-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 19px;
	background: #fce7f3;
	border-radius: 16px;
	color: #db2777;
}
.procedure-option-cancel .procedure-option-icon {
	background: #f1f5f9;
	color: #64748b;
}
.procedure-option-icon i { font-size: 25px; }
.procedure-option-card h3 {
	max-width: 70%;
	margin: 0;
	font-size: 21px;
	line-height: 1.45;
	font-weight: 750;
	letter-spacing: -.45px;
	color: #1e293b;
}
.procedure-option-description {
	min-height: 76px;
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.7;
	font-weight: 500;
	color: #475569;
}
.procedure-option-card ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
.procedure-option-card li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 11px;
	font-size: 14px;
	line-height: 1.5;
	color: #475569;
	font-weight: 400;
}
.procedure-option-card li i {
	margin-top: 3px;
	font-size: 12px;
	color: #db2777;
}
.procedure-option-cancel li i { color: #94a3b8; }

/*==================================================
    Note
==================================================*/
.procedure-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 23px;
	padding: 17px 20px;
	background: #f8fafc;
	border: 0;
	border-radius: 13px;
}
.procedure-note-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #eff6ff;
	border-radius: 10px;
	color: #2563eb;
}
.procedure-note strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	color: #334155;
}
.procedure-note p {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 500;
	color: #475569;
}

/*==================================================
    Reveal
==================================================*/
.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/*==================================================
    Responsive
==================================================*/
@media (max-width: 1050px) {
	.procedure-flow { gap: 30px; }
	.procedure-flow-step:not(:last-child)::after { right: -25px; }
	.procedure-step-card { padding: 22px 20px 23px; }
}

@media (max-width: 860px) {
	.site-header { height: auto; }
	.site-header-inner {
		flex-wrap: wrap;
		height: auto;
		min-height: 60px;
		padding-top: 14px;
		padding-bottom: 12px;
		gap: 12px;
	}
	.site-nav { width: 100%; overflow-x: auto; }
	.site-nav-list {
		justify-content: center;
		gap: 28px;
		min-width: max-content;
	}
	.site-nav-list a { padding: 7px 0 10px; }
	.procedure-section { padding-top: 48px; }
	.procedure-heading h1 { font-size: 35px; }
	.procedure-shell { padding: 26px; }
	.procedure-flow { grid-template-columns: 1fr; gap: 44px; }
	.procedure-flow-step:not(:last-child)::after {
		content: "\f063";
		top: auto;
		right: 50%;
		bottom: -33px;
		margin: 0 -11px 0 0;
	}
	.procedure-step-card { min-height: 0; }
	.procedure-step-card > p { min-height: 0; }
	.procedure-decision-options { grid-template-columns: 1fr; }
	.procedure-option-card h3 { max-width: 78%; }
}

@media (max-width: 560px) {
	.site-header-inner { padding-right: 18px; padding-left: 18px; }
	.logo-main, .logo-sub { font-size: 27px; }
	.site-nav-list { justify-content: flex-start; gap: 22px; }
	.site-nav-list a { font-size: 14px; }
	.procedure-section { padding: 36px 0 46px; }
	.procedure-container { padding: 0 15px; }
	.procedure-heading { margin-bottom: 28px; }
	.procedure-heading h1 { font-size: 29px; letter-spacing: -.9px; }
	.procedure-heading p { font-size: 15px; }
	.procedure-heading p br { display: none; }
	.procedure-shell { padding: 16px; border-radius: 18px; }
	.procedure-step-card { padding: 21px 19px; border-radius: 15px; }
	.procedure-decision {
		margin-top: 24px;
		padding: 25px 16px 16px;
		border-radius: 16px;
	}
	.procedure-decision-heading h2 { font-size: 25px; }
	.procedure-option-card { padding: 24px 20px; border-radius: 15px; }
	.procedure-option-status {
		position: static;
		width: max-content;
		margin-bottom: 17px;
	}
	.procedure-option-icon { margin-bottom: 16px; }
	.procedure-option-card h3 { max-width: none; font-size: 20px; }
	.procedure-option-description { min-height: 0; }
	.procedure-note { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}