* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: top;
	font-family: "Pretendard Variable", sans-serif;
	color: #fff;
}
body.scroll {
	overflow: hidden;
}
main {
	background-color: #000;
}
main.blur {
	position: relative;
}
main.blur::before {
	content: "";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(2px);
	z-index: 2;
}
main.background {
	position: relative;
}
main.background::before {
	content: "";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(2px);
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 2;
}
button {
	font-family: "Pretendard Variable", sans-serif;
}
.container {
	width: 1208px;
	padding: 140px 24px;
	margin: 0 auto;
}

.landing_header {
	text-align: center;
}
.landing_subtitle {
	font-family: "neue-haas-grotesk-text",sans-serif;
	color: #ff4a08;
	font-size: 16px;
	letter-spacing: 2%;
	line-height: 21px;
	margin-bottom: 24px;
	display: inline-block;
}
.landing_title {
	font-size: 56px;
	line-height: 1;
	letter-spacing: -2%;
	font-weight: bold;
	margin-bottom: 24px;
	display: flex;
	align-items: baseline;
	justify-content: center;
}
.landing_title .eng {
	font-family: "neue-haas-grotesk-text",sans-serif;
	font-weight: 500;
	display: inline-block;
}
.landing_description {
	font-size: 20px;
	line-height: 32px;
	letter-spacing: -2%;
	font-weight: 300;
	color: #ccc;
}

.pg-canvas {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
/* main_visual */
.hero {
	width: 100%;
	height: 880px;
	position: relative;
}
.hero .container {
	height: 100%;
	padding: 0;
	position: relative;
	z-index: 1;
}
.hero_content {
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero_title {
	width: 100%;
	font-size: 64px;
	letter-spacing: -2%;
	text-transform: uppercase;
	line-height: 72px;
	font-weight: 700;
}
.hero_title:first-child {
	margin-bottom: 12px;
}
.hero_highlight {
	color: #ff4a08;
}
.hero_brand {
	font-family: "neue-haas-grotesk-text",sans-serif;
	font-weight: 600;
}
.hero_description {
	font-size: 20px;
	color: #ccc;
	line-height: 32px;
	font-weight: 400;
	margin: 30px 0 80px;
}
.hero_cta {
	width: 268px;
	margin: 0 auto;
	background-color: #000;
	display: inline-block;
	font-size: 24px;
	line-height: 1;
	letter-spacing: -2%;
	font-weight: 500;
	padding: 20px 0 ;
	border-radius: 100px;
	border: 1px solid #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}
.hero_cta:hover {
	background-color: #FF4A08;
	border: 1px solid #FF4A08;
	color: #fff;
	transition: all 0.2s ease;
}

/* 요금제  */
.pricing {
}
.pricing .pricing_plans {
	margin: 60px 0 40px;
	display: flex;
	gap: 0 24px;
	align-items: stretch;
}
.plan {
	width: calc(100% / 4 - 12px);
	border: 1px solid #333;
	border-radius: 8px;
	padding: 40px 0 48px;
	text-align: center;
	position: relative;
}
.plan.active {
	border: 0;
	box-shadow: 0 0 0 2px #ffffff inset;
}
.plan_name {
	font-family: "neue-haas-grotesk-text",sans-serif;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	padding: 8px 16px 6px 33px;
	border-radius: 100px;
	background-color: #2a2a2a;
	display: inline-block;
	position: relative;
}
.plan_name::before {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 100px;
	background-color: #616161;
	top: 50%;
	transform: translateY(-50%);
	left: 16px;
}
.plan:nth-child(2) .plan_name::before {
	background-color: #00cc81;
}
.plan:nth-child(3) .plan_name::before {
	background-color: #FFC300;
}
.plan:nth-child(4) .plan_name::before {
	background-color: #ff0037;
}
.plan_name .ko {
	background-color: #2a2a2a;
	font-family: "Pretendard Variable", sans-serif;
}

.plan_description {
	margin: 16px 0 22px;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	letter-spacing: -2%;
}
.plan_description strong {
	font-weight: 500;
}
.plan_price {
	font-size: 30px;
	font-weight: 600;
	line-height: 100%;
	display: flex;
	align-items: baseline;
	height: 30px;
	justify-content: center;
	margin-bottom:34px;
}
.plan_price .currency {
	font-size: 16px;
	font-weight: bold;
	margin-right: 2px;
	display: inline-block;
}
.plan_price .unit {
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 3%;
	display: inline-block;
}
.plan_details-toggle {
	width: 160px;
	height: 42px;
	border: 1px solid #fff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: -3%;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	cursor: pointer;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	bottom: 48px;
}
.plan_details-toggle:hover {
	color: #000;
	background-color: #fff;
	transition: all 0.3s ease;
}
.plan.active .plan_details-toggle {
	color: #000;
	background-color: #fff;
}
.plan_features {
	height: 264px;
	padding-top: 24px;
	border-top: 1px solid #333333;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	margin: 0 20px;
	margin-bottom: 54px;
}
.plan_features li {
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -2%;
	color: #bbb;
	padding-left: 22px;
	position: relative;
}
.plan_features li::before {
	position: absolute;
	content: "+";
	font-size: 18px;
	left: 0;
	top: 0;
	color: #9f9f9f;
	width: 22px;
	text-align: center;
}
.pricing .desc {
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: -2%;
	line-height: 100%;
}
.pricing .desc strong {
	font-weight: 500;
}

.plan_pop {
	display: none;
	position: fixed;
	background-color: #222;
	width: 1160px;
	box-sizing: border-box;
	height: 80vh;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
.pop_container {
	padding: 76px 62px;
	height: 100%;
	overflow-y: auto; /* 세로 스크롤 활성화 */
	overflow-x: hidden; /* 가로 스크롤 숨김 (필요에 따라 추가) */
	box-sizing: border-box;
}
/* 스크롤바 전체 */
.pop_container::-webkit-scrollbar {
	width: 10px; /* 스크롤바 너비 */
}

/* 스크롤바 슬라이더 */
.pop_container::-webkit-scrollbar-thumb {
	background: #666; /* 슬라이더 색상 */
	border-radius: 5px; /* 둥근 모서리 */
}
.plan_pop .pop_close {
	position: absolute;
	right: 52px;
	top: 52px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}
.plan_pop .pop_head {
	background-color: transparent;
}
.plan_pop .pop_title {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -3%;
	margin: 24px 0 12px;
}
.plan_pop .pop_title .eng {
	font-family: "neue-haas-grotesk-text",sans-serif;
	font-weight: 500;
}
.plan_pop .pop_desc {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -2%;
	line-height: 32px;
	color: #ccc;
}
.step {
}
.plan_pop .step_list {
	margin-top: 60px;
	display: flex;
	width: 100%;
	gap: 0 24px;
	align-items: center;
	text-align: center;
	position: relative;
}
.plan_pop .step_list::before {
	position: absolute;
	content: "";
	background-color: #4e4e4e;
	width: calc(100% - 272px);
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	top: 25px;
	z-index: 1;
}
.plan_pop .step_list li {
	width: calc(100% / 4 - 12px);
}
.plan_pop .step_list li .num {
	font-family: "neue-haas-grotesk-text",sans-serif;
	width: 50px;
	height: 50px;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	border: 1px solid #ffffff50;
	border-radius: 100px;
	font-size: 24px;
	line-height: 31px;
	letter-spacing: -2%;
	font-weight: 400;
	z-index: 1;
	position: relative;
	background-color: #222;
}
.plan_pop .step_list li h4 {
	font-size: 24px;
	line-height: 100%;
	letter-spacing: -2%;
	font-weight: 600;
	margin: 20px 0;
}
.plan_pop .step_list li p {
	font-size: 16px;
	font-weight: 300;
	color: #ccc;
	line-height: 26px;
	letter-spacing: -2%;
}
.plan_pop .step_list li.active .num {
	background-color: #fff;
	color: #222;
}

.plan_pop .pop_con {
	margin-top: 120px;
}
.plan_pop .pop_con .pop_con_tit {
	font-size: 30px;
	line-height: 40px;
	letter-spacing: -3%;
	font-weight: 600;
}
.plan_pop .pop_con .pop_con_tit .eng {
	display: inline-block;
	font-family: "neue-haas-grotesk-text",sans-serif;
	line-height: 40px;
	font-weight: 500;
}

.plan01_con {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
.plan01_con li {
	display: flex;
	align-items: center;
	gap: 0 24px;
	text-align: left;
}
.plan01_con li .img {
	width: 408px;
}
.plan01_con li .txt {
	letter-spacing: -2%;
	padding-left: 12px;
}
.plan01_con li .txt h5 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	margin-bottom: 16px;
}
.plan01_con li .txt p {
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	color: #ccc;
}
.plan01_con li .txt p:last-child {
	margin-top: 8px;
}

.plan02_con {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 0;
	justify-content: space-between;
}
.plan02_con li {
	width: calc(100% / 3 - 8px);
	aspect-ratio: 16 / 9;
	background-color: #717171;
	border-radius: 8px;
	transition: filter 0.3s ease;
}
.plan02_con li:hover {
	filter: brightness(0.6);
	transition: filter 0.3s ease;
}
.plan02_con li img {
	border-radius: 8px;
}
.plan02_desc {
	margin-top: 30px;
}
.plan02_desc p {
	font-size: 20px;
	letter-spacing: -2%;
	line-height: 32px;
	color: #ccc;
}
.plan02_desc p:last-child {
	margin-top: 12px;
}
.plan03_con {
	margin-top: 42px;
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
.plan03_con > div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 16px;
}
.plan03_con > div li {
	width: 240px;
	height: 56px;
	background-color: #fff;
	display: flex;
	align-items: center;
	gap: 0 8px;
	padding: 0 12px;
	border-radius: 8px;
}
.plan03_con > div:last-child li:last-child {
	width: 300px;
}
.plan03_con li .icon {
	width: 28px;
	height: 28px;
}
.plan03_con li span {
	font-size: 20px;
	letter-spacing: -2%;
	line-height: 32px;
	font-weight: 400;
	color: #000;
}
.plan_pop03_img,
.plan_pop04_img {
	margin: 42px auto;
	width: 524px;
	aspect-ratio: 16/9;
}
.plan_pop03_img iframe,
.plan_pop04_img iframe {
	width: 100%;
	aspect-ratio: 16/9;
}
.plan_pop03_desc,
.plan_pop04_desc {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -2%;
	line-height: 32px;
	color: #cccccc;
}
.plan04_con {
	margin-top: 42px;
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
.plan04_con > div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 16px;
}
.plan04_con > div li {
	width: 240px;
	height: 56px;
	background-color: #fff;
	display: flex;
	align-items: center;
	gap: 0 8px;
	padding: 0 12px;
	border-radius: 8px;
}
.plan04_con > div:nth-child(2) li:first-child {
	width: 268px;
}
.plan04_con > div:nth-child(2) li:last-child {
	width: 258px;
}
.plan04_con > div:last-child li:last-child {
	width: 300px;
}
.plan04_con li .icon {
	width: 28px;
	height: 28px;
}
.plan04_con li span {
	font-size: 20px;
	letter-spacing: -2%;
	line-height: 32px;
	font-weight: 400;
	color: #000;
}
/* 영상 소개 */
.youtube {
}
.video_list {
	margin-top: 60px;
	padding: 0 24px;
	box-sizing: border-box;
}
.video_list li {
	padding: 36px 0;
	display: flex;
	align-items: center;
	gap: 0 24px;
	border-bottom: 1px solid #333;
}
.video_list li .video_thumb {
	width: 524px;
	height: 295px;
}
.video_list li .video_thumb iframe {
	width: 100%;
	aspect-ratio: 16/9;
}
.video_list li:first-child {
	padding-top: 0;
}
.video_list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.plan_intro {
	display: flex;
	flex-direction: column;
	gap: 16px 0;
	padding-left: 10px;
}
.plan_title h3 {
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -2%;
	font-weight: 700;
}
.plan_title span {
	font-family: "neue-haas-grotesk-text",sans-serif;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	padding: 8px 16px 6px 33px;
	border-radius: 100px;
	background-color: #2a2a2a;
	display: inline-block;
	position: relative;
	margin-bottom: 16px;
}
.plan_title span::before {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 100px;
	background-color: #616161;
	top: 50%;
	transform: translateY(-50%);
	left: 16px;
}
.video_list li:nth-child(2) .plan_title span::before {
	background-color: #00cc81;
}
.video_list li:nth-child(3) .plan_title span::before {
	background-color: #FFC300;
}
.video_list li:nth-child(4) .plan_title span::before {
	background-color: #ff0037;
}
.plan_title span .ko {
	background-color: #2a2a2a;
	font-family: "Pretendard Variable", sans-serif;
}
.plan_desc {
	font-size: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	font-weight: 300;
	line-height: 26px;
	letter-spacing: -2%;
	color: #ccc;
}

/* 영상 콘텐츠 샘플 */
.sample_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 8px;
	margin-top: 60px;
}
.sample_pop {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1164px;
	aspect-ratio: 16/9;
	z-index: 10;
}
.sample_pop .sample_pop_close {
	position: absolute;
	right: -4px;
	top: -44px;
	width: 34px;
	height: 34px;
	cursor: pointer;
}
.sample_pop.shorts {
	width: 440px;
	aspect-ratio: 9/16;
}
.sample_pop iframe {
	width: 100%;
	height: 100%;
}

.sample_list ul {
	width: calc(100% / 4 - 4px);
	display: flex;
	flex-direction: column;
	gap: 8px 0;
}
.sample_list ul li {
	cursor: pointer;
	position: relative;
}
.sample_list ul li img {
	border-radius: 8px;
}
.sample_list ul li:hover {
	transition: all 0.5s ease;
}
.sample_list ul li::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	background-color: #00000060;
	opacity: 0;
}
.sample_list ul li:hover::before {
	opacity: 1;
}
.sample_list ul li::after {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	background-image: url(../img/sample_plus.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	opacity: 0;
}
.sample_list ul li:hover::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

/* 제작 과정 */
.step {
}
.step_list {
	margin-top: 60px;
	display: flex;
	width: 100%;
	gap: 0 24px;
	align-items: center;
	text-align: center;
	position: relative;
}
.step_list::before {
	position: absolute;
	content: "";
	background-color: #333;
	width: calc(100% - 272px);
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	top: 25px;
	z-index: 0;
}
.step_list li {
	width: calc(100% / 4 - 12px);
}

.step_list li .num {
	font-family: "neue-haas-grotesk-text",sans-serif;
	width: 50px;
	height: 50px;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	border: 1px solid #ffffff50;
	border-radius: 100px;
	font-size: 24px;
	line-height: 31px;
	letter-spacing: -2%;
	font-weight: 500;
	z-index: 1;
	position: relative;
	background-color: #000;
	color: #ffffff50;
	transition: all 0.3s ease;
	position: relative;
	
}
.step_list li.active .num {
	color: #ffffff;
	border: 1px solid #fff;
}

.step_list li h4 {
	font-size: 30px;
	line-height: 40px;
	letter-spacing: -2%;
	font-weight: 600;
	margin: 20px 0;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}
.step_list li p {
	font-size: 16px;
	font-weight: 300;
	color: #ccc;
	line-height: 26px;
	letter-spacing: -2%;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}
.step_list li.active .num {
	background-color: #fff;
	color: #000;
	transition: all 0.3s ease;
}
.step_list li.active h4,
.step_list li.active p {
	opacity: 1;
	transition: opacity 0.3s ease;
}
/* 자주 묻는 질문(Q&A) */
.qna_list {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
.qna_list li {
	border: 1px solid #333333;
	border-radius: 8px;
	padding: 28px 48px;
	box-sizing: border-box;
}
.qna_list li .q {
	cursor: pointer;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -2%;
	line-height: 32px;
}
.qna_list li .q button {
	cursor: pointer;
	padding-left: 30px;
	box-sizing: border-box;
}
.q button img {
	transition: transform 0.3s ease; /* 부드럽게 회전 */
}
.q button img.rotate {
	transform: rotate(-180deg); /* 180도 회전 */
	transition: transform 0.3s ease; /* 부드럽게 회전 */
}
.qna_list li:first-child .a {
	display: block;
}
.qna_list li .a {
	padding-top: 28px;
	margin-top: 28px;
	border-top: 1px solid #333;
	flex-direction: column;
	display: none;
}
.qna_list li .a p {
	font-size: 18px;
	font-weight: 300;
	color: #ccc;
	line-height: 26px;
	letter-spacing: -2%;
}
.qna_list li .a p:last-child {
	margin-top: 12px;
}

.form_list {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0 24px;
	margin-top: 60px;
	position: relative;
	margin-bottom: 60px;
}
.form_list .left {
	width: 25%;
	aspect-ratio: 9/16;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_list .right form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px 0;
}

.form_list .right form input {
	width: 100%;
	border: 1px solid #333333;
	border-radius: 8px;
	padding: 20px 28px;
	font-size: 18px;
	font-weight: 400;
	color: #bbb;
	background-color:#000;
	line-height: 32px;
	letter-spacing: -2%;
	outline: none;
}

.form_list .right form .number {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 10px;
}

.form_list .right form .txt {
	flex-grow: 1;
	height: 320px;
}

.form_list .right form textarea {
	width: 100%;
	height: 100%;
	resize: none;
	background-color:#000;
	border: 1px solid #333333;
	border-radius: 8px;
	padding: 20px 28px;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	color: #bbb;
	letter-spacing: -2%;
	outline: none;
}
.db_submit {
	position: absolute;
	left: 50%;
	bottom: -124px;
	transform: translateX(-50%);
	font-size: 24px;
	font-weight: 600;
	padding: 20px 93px;
	border: 1px solid #fff;
	border-radius: 100px;
	letter-spacing: -2%;
	line-height: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}
.db_submit:hover {
	color: #000;
	background-color: #fff;
	transition: all 0.3s ease;
}

/* 푸터 */
#footer {
	border-top: 1px solid #333;
	background-color: #000;
}
#footer .footer_container {
	width: 1208px;
	padding: 40px 0;
	margin: 0 auto;
	position: relative;
}
#footer .footer_container .footer_logo {
	position: absolute;
	right: 0;
	top: 40px;
}
#footer .footer_container .info {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}
#footer .footer_container .info ul {
	display: flex;
	align-items: center;
	gap: 0 24px;
}
#footer .footer_container .info ul li {
	display: flex;
	align-items: center;
	gap: 0 8px;
	
}
#footer .footer_container .info ul li span {
	font-family: "Noto Sans KR", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 100%;
	font-weight: 400;
	color: #fff;
}
#footer .footer_container .info ul li em {
	font-family: "Noto Sans KR", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 100%;
	font-weight: 400;
	color: #9A9A9A;
}
#footer .footer_container .copyright {
	font-family: "Noto Sans KR", sans-serif;
	margin-top: 12px;
	padding-top: 8px;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 100%;
	font-weight: 400;
	color: #676767;
}