/*
Theme Name: wrtnax
Description: wrtnax Theme
Author: Manual Graphics
Version: 1.0
*/

/* Reset Styles */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

textarea,input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

figure {
	margin: 0;
}

button {
	background-color: transparent;
	outline: none;
	border: none;
	font-family: var(--ff-pretendard);
	cursor: pointer;
}

html {
	font-size: 62.5%;
}

a {
	text-decoration: none;
	color: var(--cb);
}

/* CSS Variables */
:root {
	--side-margin: 24px;
	/* Colors */
	--cp1: #09ECC6;
	--cp2: #079883;
	--cp3: #056B61;
	--cp4: #033F3C;
	--cp5: #022A2A;

	--cw: #fff;
	--cb: #0A0A0F;

	/* Grays */
	--cg1: #1E1E23;
	--cg2: #323237;
	--cg3: #5A5A5F;
	--cg4: #828287;
	--cg5: #B4B4B9;
	--cg6: #DCDCE1;
	--cg7: #F5F5FA;
	--cg8: #f0f0f0;
	--cg9: #fcfcfc;

	/* Lines */
	--line: #ccc;
	--linebk: #141414;

	/* Transitions */
	--tts: 0.3s;
	--ttm: 0.6s;
	--ttl: 1s;

	/* Fonts */
	--ff-pretendard: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	--ff-mono: "SF Mono", Monaco, Inconsolata, "Roboto Mono", Consolas, "Andale Mono", monospace;

	/* Font Sizes */
	--fs0: 1.2rem;
	--fs1: 1.4rem;
	--fs2: 1.6rem;
	--fs3: 1.8rem;
	--fs3r: clamp(1.4rem, 1.6vw, 2.3rem);
	--fs4: 2rem;
	--fs4r: clamp(1.8rem, 2.5vw, 2.8rem);
	--fs5: 2.2rem;
	--fs6: 2.4rem;
	--fs7: clamp(3rem, 3vw, 3.2rem);
	--fs8: clamp(4rem, 4.8vw, 6.5rem);
	--fs9: clamp(5rem, 5.5vw, 9rem);
	--fsmax: clamp(6rem, 6.5vw, 11rem);

	/* Viewport height fix for mobile */
	--vh: 1vh;

	/* Border radius */
	--rd1: 4px;
	--rd2: 8px;
	--rd3: 12px;
	--rd4: 16px;
	--rd5: 24px;
}

/* Common Styles */
::selection {
	background-color: var(--cp1);
	color: var(--cw);
}

/* Utility Classes */
.tac { text-align: center; }
.tar { text-align: right; }
.tal { text-align: left; }
.ttu { text-transform: uppercase; }
.ttc { text-transform: capitalize; }

.title {
	font-size: var(--fs9);
	line-height: 1.2;
	font-weight: 600;
}

.sub-title {
	font-size: var(--fs6);
	font-weight: 500;
}

.maxw {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.maxws {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.lmt {
	width: calc(100% - 48px);
	margin-left: auto;
	margin-right: auto;
}

/* Display utilities */
.po { display: block; }
.mo { display: none; }

/* Spacing utilities */
.nmt { margin-top: 0; }
.nmb { margin-bottom: 0; }
.npt { padding-top: 0; }
.npb { padding-bottom: 0; }

/* Flexbox utilities */
.fx {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 24px;
}

.nogap { gap: 0; }
.gap4 { gap: 4px; }
.gap8 { gap: 8px; }
.gap12 { gap: 12px; }
.gap24 { gap: 24px; }
.gap32 { gap: 32px; }

.flx1 { flex: 1; }
.flx3 { flex: 3; }

.fx2 > * { width: calc(50% - 12px); }
.fx3 > * { width: calc(33.33333333333% - 16px); }
.fx4 > * { width: calc(25% - 18px); }

.fxjc { justify-content: center; }
.fxjs { justify-content: space-between; }
.fxac { align-items: center; }
.fxafs { align-items: flex-start; }
.fxafe { align-items: flex-end; }
.fxas { align-items: stretch; }
.fxdc { flex-direction: column; }
.fxdr { flex-direction: row; }
.fxnw { flex-wrap: nowrap; }

/* Position utilities */
.ctw {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.cth {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.cent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Text overflow */
.ell {
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	word-wrap: normal;
	display: block;
}

.ellmx {
	display: -webkit-box;
	max-height: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* Material Icons */
.material-symbols-outlined {
	font-size: 32px;
	color: var(--cb);
	opacity: 0;
	transition: var(--tts);
}

.fonts-loaded .material-symbols-outlined {
	opacity: 1;
}

.xs.material-symbols-outlined {
	color: var(--cb);
	font-size: var(--fs3);
	vertical-align: text-bottom;
	font-variation-settings:
		'FILL' 0,
		'wght' 300,
		'GRAD' 0,
		'opsz' 20;
}

.xm.material-symbols-outlined {
	color: var(--cg3);
	font-size: var(--fs4);
	vertical-align: text-bottom;
	font-variation-settings:
		'FILL' 0,
		'wght' 300,
		'GRAD' 0,
		'opsz' 20;
}

.ico-arr {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 48;
}

.ico16 { font-size: 16px; }
.ico20 { font-size: 20px; }
.ico24 { font-size: 24px; }

hr {
	width: 100%;
	background: var(--cb);
	height: 1px;
	border: none;
	margin: 0;
}

/* Layout */
body {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	word-break: keep-all;
	font-family: var(--ff-pretendard);
	font-weight: 400;
	font-size: var(--fs3);
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var(--cg1);
	background-color: var(--cw);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.site-header {
	position: fixed;
	top: 12px;
	left: 20px;
	right: 20px;
	z-index: 1000;
	padding: 16px 0;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid transparent;

	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.site-header::before { 
	content: '';
	position: absolute;
	inset: 0;
	opacity: .2;
	border-radius: 8px;
	padding: 1px;
	background: linear-gradient(to right, #D1EFEC, #09ECC6);
	-webkit-mask: linear-gradient(#fff 0 0) content-box,
	linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.site-header.scrolled {
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

.site-logo img {
	height: 24px;
	display: block;
	width: auto;
	transition: all 0.3s ease;
	filter: invert(1);
}

.main-navigation .main-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	gap: 24px;
}

.main-navigation .main-menu li a {
	display: block;
	line-height: 1;
	color: var(--cw);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--fs2);
	transition: color 0.3s ease;
	text-transform: capitalize;
	cursor: pointer;
}
.main-navigation .main-menu li a:hover {
	color: var(--cp1);
}
.nav-toggle, .nav-overlay, #btn-download-m{ display:none !important; }

#btn-download {
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(9, 236, 198, 0.2);
	padding: 8px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	background: linear-gradient(135deg, rgba(9, 236, 198, 0.4), rgba(9, 236, 198, 0.15));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

}
#btn-download:hover {
	background: linear-gradient(135deg, rgba(9, 236, 198, 0.6), rgba(9, 236, 198, 0.15));
	transition: all 0.3s ease;
}
#btn-download span {
	color: var(--cg2);
	font-size: var(--fs1);
}
#btn-download span.ico {
	font-size: var(--fs4);
}

.hero-section {
	position: relative;
	min-height: 120vh;
	overflow: hidden;
	background: linear-gradient(180deg, #0A0A0F 0%, #222627 100%);
}
.hero-section .cloud {
	position: absolute;
	top: -10%;
	right: 10%;
	left: auto;
	filter: blur(80px);
	width: 40%;
	animation: cloudFloat 40s ease-in-out infinite;
}
@keyframes cloudFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50px, -45px) scale(1.08);
  }
  50% {
    transform: translate(50px, -25px) scale(0.95);
  }
  75% {
    transform: translate(-55px, -10px) scale(1.05);
  }
}
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--cg2);
	margin-top: 14vh;
}

.hero-title {
	font-size: var(--fs8);
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 48px;
	color: var(--cw);
	opacity: 0;
	animation: fadeInUp 1s ease 0.3s forwards;
}
.title-line {
	display: block;
}
.title-line b {
	color: var(--cp1);
}

.hero-cta {
	opacity: 0;
	animation: fadeInUp 1s ease 0.9s forwards;

}
.cta-button {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.2);
	gap: 8px;
	align-items: center;
	color: #D1EFEC;
	padding: 8px 16px;
	border-radius: 4px;
	text-decoration: none;
	width: 120px;
	font-size: var(--fs1);
	justify-content: center;
	font-weight: 500;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15));

	border: 1px solid rgba(176, 255, 244, 0.15);
	background: linear-gradient(303deg, rgba(189, 255, 244, 0.30) 24.92%, rgba(237, 255, 252, 0.30) 70.54%);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.cta-button .ico {
	font-size: 20px;
	color: #D1EFEC;
}
.cta-button:hover {
	border: 1px solid #09ECC6;
	background: linear-gradient(303deg, rgba(189, 255, 244, 0.30) 24.92%, rgba(237, 255, 252, 0.30) 70.54%);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}
#draw {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 0;
    background: linear-gradient(to right, #09ECC6, #fafafa);
    z-index: 1;
}
.section-header {
	text-align: center;
	margin-bottom: 72px;
}

.section-label {
	color: var(--cp2);
	font-size: var(--fs3);
	font-weight: 500;
	text-transform: capitalize;
	display: block;
	margin-bottom: 15px;
}

.section-title {
	font-size: var(--fs8);
	font-weight: 500;
	color: var(--cg2);
	line-height: 1.4;
	margin: 0;
}
/* Triangle Section */
.triangle-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 20px;
	overflow: hidden;
	background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
	background: var(--cw);

}

.triangle-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 700px;
	opacity: 0.6;
	z-index: 1;
}
.triangle-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: blur(30px);
	transition: filter 0.8s ease-out;
}


.triangle-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	width: 100%;
}

.triangle-intro {
	text-align: center;
	font-size: var(--fs7);
	font-weight: 600;
	line-height: 1.6;
	color: var(--cg2);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
}

.triangle-items {
	position: relative;
	width: 100%;
	height: 800px;
}

.triangle-item {
	position: absolute;
	opacity: 0;
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.triangle-top {
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
}

.triangle-left {
	bottom: 0;
	left: 10%;
	transform: translate(-17px, 10px);
}

.triangle-right {
	bottom: 0;
	right: 10%;
	transform: translate(17px, 10px);
}

.triangle-circle {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(209, 239, 236, 0.4),
		rgba(255, 255, 255, 0.2)
	);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	border: 1px solid rgba(9, 236, 198, 0.2);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	text-align: center;
}

.triangle-circle h3 {
	font-size: var(--fs6);
	color: var(--cg3);
	font-weight: 600;
}

.triangle-circle p {
	font-size: var(--fs5);
	color: var(--cg4);
	font-weight: 500;
}

/* 반응형 */
@media (max-width: 1024px) {
	.triangle-bg {
		width: 600px;
		height: 500px;
	}
	
	.triangle-items {
		height: 500px;
	}
	
	.triangle-circle {
		width: 220px;
		height: 220px;
		padding: 30px;
	}
	
	.triangle-circle h3 {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.triangle-intro {
		font-size: 22px;
		margin-bottom: 60px;
	}
	
	.triangle-bg {
		width: 400px;
		height: 350px;
	}
	
	.triangle-items {
		height: 400px;
	}
	
	.triangle-circle {
		width: 180px;
		height: 180px;
		padding: 20px;
	}
	
	.triangle-circle h3 {
		font-size: 18px;
	}
	
	.triangle-circle p {
		font-size: 14px;
	}
	
	.triangle-left {
		left: 5%;
	}
	
	.triangle-right {
		right: 5%;
	}
}

/* Education Section */
.education-section {
	background: #1a1a1a;
	color: #ffffff;
	padding: 120px 20px;
	position: relative;
}

.education-container {
	max-width: 1400px;
	margin: 0 auto;
}

.education-section .section-label {
	display: inline-block;
	color: #09ECC6;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.section-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 80px;
}

.education-section .section-title {
	flex: 1;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
	max-width: 800px;
}

.education-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	backdrop-filter: blur(10px);
}

.education-cta:hover {
	background: rgba(9, 236, 198, 0.15);
	border-color: #09ECC6;
	transform: translateY(-2px);
}

.education-cta .ico {
	font-size: 20px;
}

/* Education Cards */
.education-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.education-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px;
	transition: all 0.3s ease;
}

.education-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(9, 236, 198, 0.3);
	transform: translateY(-4px);
}

.education-card-highlight {
	border-color: #09ECC6;
	background: rgba(9, 236, 198, 0.05);
}

.card-icon {
	position: relative;
	margin-bottom: 40px;
}

.icon-shape {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(9, 236, 198, 0.2);
}

.icon-badge {
	position: absolute;
	bottom: -8px;
	right: -8px;
	width: 32px;
	height: 32px;
	background: #FFB800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	border: 3px solid #1a1a1a;
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.card-title {
	font-size: 40px;
	font-weight: 400;
	color: #ffffff;
	margin: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-target,
.card-curriculum {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.target-label,
.curriculum-label {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.target-text {
	font-size: 15px;
	color: #ffffff;
	line-height: 1.6;
	margin: 0;
}

.curriculum-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.curriculum-list li {
	font-size: 15px;
	color: #cccccc;
	line-height: 1.6;
	padding-left: 16px;
	position: relative;
}

.curriculum-list li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: #09ECC6;
	font-size: 20px;
}

/* 반응형 */
@media (max-width: 1200px) {
	.education-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.section-title-wrap {
		flex-direction: column;
		gap: 24px;
	}
	
	.education-cta {
		align-self: flex-start;
	}
}

@media (max-width: 768px) {
	.education-section {
		padding: 80px 20px;
	}
	
	.education-section .section-title {
		font-size: 24px;
	}
	
	.section-title-wrap {
		margin-bottom: 60px;
	}
	
	.education-card {
		padding: 32px;
	}
	
	.card-title {
		font-size: 32px;
	}
}

/* Consulting Section */
.consulting-section {
	background: #1a1a1a;
	color: #ffffff;
	padding: 120px 20px;
	position: relative;
}

.consulting-container {
	max-width: 1400px;
	margin: 0 auto;
}

.consulting-section .section-label {
	display: inline-block;
	color: #09ECC6;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.consulting-section .section-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 60px;
}

.consulting-section .section-title {
	flex: 1;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
	max-width: 800px;
}

.consulting-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	backdrop-filter: blur(10px);
}

.consulting-cta:hover {
	background: rgba(9, 236, 198, 0.15);
	border-color: #09ECC6;
	transform: translateY(-2px);
}

.consulting-cta .ico {
	font-size: 20px;
}

/* Tabs */
.consulting-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
	flex: 1;
	padding: 20px 24px;
	background: transparent;
	border: none;
	color: #999;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
}

.tab-button::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: #09ECC6;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.tab-button:hover {
	color: #ffffff;
}

.tab-button.active {
	color: #09ECC6;
}

.tab-button.active::after {
	transform: scaleX(1);
}

/* Video Container */
.consulting-video-container {
	position: relative;
	width: 100%;
	height: 700px;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(135deg, #09ECC6 0%, #00564a 100%);
}

.video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-wrapper.active {
	opacity: 1;
	visibility: visible;
}

.consulting-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Coming Soon Modal */
.coming-soon-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.coming-soon-modal.show {
	opacity: 1;
	visibility: visible;
}

.coming-soon-modal .modal-content {
	background: #2a2a2a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 60px 50px;
	max-width: 500px;
	text-align: center;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.coming-soon-modal.show .modal-content {
	transform: scale(1);
}

.modal-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(9, 236, 198, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.modal-icon .material-symbols-outlined {
	font-size: 40px;
	color: #09ECC6;
}

.coming-soon-modal h3 {
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 16px;
}

.coming-soon-modal p {
	font-size: 16px;
	color: #999;
	line-height: 1.6;
	margin-bottom: 32px;
}

.modal-close-btn {
	padding: 14px 40px;
	background: #09ECC6;
	border: none;
	border-radius: 8px;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.modal-close-btn:hover {
	background: #00D9B5;
	transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 1200px) {
	.consulting-section .section-title-wrap {
		flex-direction: column;
		gap: 24px;
	}
	
	.consulting-cta {
		align-self: flex-start;
	}
	
	.consulting-video-container {
		height: 500px;
	}
}

@media (max-width: 768px) {
	.consulting-section {
		padding: 80px 20px;
	}
	
	.consulting-section .section-title {
		font-size: 24px;
	}
	
	.consulting-tabs {
		flex-direction: column;
		gap: 0;
	}
	
	.tab-button {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.tab-button::after {
		height: 100%;
		width: 3px;
		left: 0;
		bottom: 0;
		transform: scaleY(0);
	}
	
	.tab-button.active::after {
		transform: scaleY(1);
	}
	
	.consulting-video-container {
		height: 400px;
		border-radius: 16px;
	}
	
	.coming-soon-modal .modal-content {
		margin: 20px;
		padding: 40px 30px;
	}
}

/* Agent Section */
.agent-section {
	background: #f5f9f8;
	padding: 120px 20px;
	position: relative;
}

.agent-container {
	max-width: 1400px;
	margin: 0 auto;
}

.agent-section .section-label {
	display: inline-block;
	color: #09ECC6;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.agent-section .section-title-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 80px;
}

.agent-section .section-title {
	flex: 1;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
	max-width: 800px;
}

.agent-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #09ECC6;
	border: 1px solid #09ECC6;
	border-radius: 8px;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.agent-cta:hover {
	background: #00D9B5;
	border-color: #00D9B5;
	transform: translateY(-2px);
}

.agent-cta .ico {
	font-size: 20px;
}

/* Agent Grid */
.agent-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.agent-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(9, 236, 198, 0.2);
	border-radius: 24px;
	padding: 48px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	transform: translateY(30px);
}

.agent-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.agent-card-left.animate {
	animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.agent-card-right.animate {
	animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px) translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0) translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px) translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0) translateY(0);
	}
}

.agent-card:hover {
	transform: translateY(-8px);
	border-color: rgba(9, 236, 198, 0.5);
	box-shadow: 0 20px 60px rgba(9, 236, 198, 0.15);
}

.agent-card-highlight {
	background: rgba(9, 236, 198, 0.08);
	border-color: rgba(9, 236, 198, 0.4);
}

.card-icon {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 60px;
	height: 60px;
}

.icon-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, #09ECC6 0%, #D1EFEC 100%);
	opacity: 0.3;
	transition: all 0.3s ease;
}

.agent-card:hover .icon-circle {
	opacity: 0.6;
	transform: scale(1.1);
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	padding-right: 80px;
}

.card-description {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

/* 반응형 */
@media (max-width: 1024px) {
	.agent-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.agent-section .section-title-wrap {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 60px;
	}
	
	.agent-cta {
		align-self: flex-start;
	}
	
	.agent-card-left.animate,
	.agent-card-right.animate {
		animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	}
	
	@keyframes slideInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

@media (max-width: 768px) {
	.agent-section {
		padding: 80px 20px;
	}
	
	.agent-section .section-title {
		font-size: 24px;
	}
	
	.agent-card {
		padding: 32px;
	}
	
	.card-icon {
		top: 32px;
		right: 32px;
		width: 50px;
		height: 50px;
	}
	
	.card-title {
		font-size: 20px;
		padding-right: 70px;
	}
	
	.card-description {
		font-size: 14px;
	}
}

.tech-section {
    padding: 150px 40px 100px;
    background: var(--cg1);
    color: var(--cg7);
}

.tech-section .section-title {
    color: var(--cw);
}

.tech-section .section-title span {
    display: block;
}

.tech-item {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.tech-item:last-child {
    margin-bottom: 0;
}

.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.autobe .tech-content-wrapper .tech-info {
    order: 1;
}

.autobe .tech-content-wrapper .tech-image {
    order: 2;
}

.autoview .tech-content-wrapper .tech-info {
    order: 2;
}

.autoview .tech-content-wrapper .tech-image {
    order: 1;
}

.tech-info h3 {
    font-size: var(--fs6);
	font-weight: 500;
    margin: 0 0 8px;
    color: var(--cp1);
}

.tech-info p {
    line-height: 1.6;
	font-size: var(--fs3);
}

.tech-image {
    width: 100%;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: var(--rd2);
    object-fit: cover;
}

.tech-accordion {
    margin-top: 50px;
}

.accordion-item {
    border: 1px solid var(--cg2);
	padding: 16px 20px;
	border-radius: var(--rd3);
    margin-bottom: 10px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-header h4 {
    margin: 0;
    font-size: var(--fs3);
    color: var(--cg5);
}
.active .accordion-header h4, 
.active .accordion-content p {
    color: var(--cw);
}

.accordion-toggle {
    font-size: var(--fs7);
    font-weight: 300;
    color: var(--cg5);
    min-width: 20px;
	line-height: 20px;
    text-align: center;
}
.active .accordion-toggle {
    color: var(--cp1);
}

.accordion-content {
    opacity: 0.7;
    line-height: 1.5;
    display: none;
	margin-top: 12px;
	transition: .5s;
}
.accordion-content p {
	color: var(--cg7);
	font-size: var(--fs1);
}

.accordion-item.active .accordion-content {
    display: block;
	opacity: 1;
	transition: .5s;
}

.accordion-item.active {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--rd3);
    margin: 20px 0;
	transition: .5s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header h4 {
    color: #00D4AA;
    margin: 0;
}

.modal-close {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--cp1);
}

@media (max-width: 768px) {
    .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .autobe .tech-content-wrapper .tech-info,
    .autoview .tech-content-wrapper .tech-info {
        order: 2;
    }
    
    .autobe .tech-content-wrapper .tech-image,
    .autoview .tech-content-wrapper .tech-image {
        order: 1;
    }
    
    .tech-item {
        margin-bottom: 80px;
    }
}
.support-section {
	padding: 150px 0px 100px;
	background: var(--cg2);
	color: white;
}

.support-section .section-title {
	color: white;
}

.support-grid {
    margin: 0 auto;
}

.support-item {
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0.4;
    padding: 0 20px;
    box-sizing: border-box;
}

.support-item.active,
.support-item.slick-center {
    opacity: 1;
    transform: scale(1.1);
}

.support-icon {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.support-icon img {
	border-radius: var(--rd3);
	width: 100%;
}

.support-item h3 {
	font-weight: 600;
	font-size: var(--fs4);
	margin-bottom: 4px;
}

.support-item p {
	line-height: 1.5;
	font-size: var(--fs2);
	color: var(--cg5);
}
.slick-list {
    margin: 0 -20px;
}
.slick-slide {
    padding: 0 20px;
}
.slick-track {
    display: flex;
    align-items: stretch;
}

.faq-section {
	padding: 150px 40px 100px;
	background: var(--cg8);
}

.faq-container {
	max-width: 1080px;
	margin: 0 auto;
}

.faq-item {
	background: var(--cg7);
	border: 1px solid var(--cg6);
	border-radius: var(--rd3);
	margin-bottom: 20px;
	transition: .3s;
	overflow: hidden;
}

.faq-item.active {
	transition: .5s;
	background: var(--cp2);
}

.faq-item.active .faq-header h3,
.faq-item.active .faq-toggle {
	color: var(--cw);
}

.faq-header {
	padding: 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-header h3 {
	margin: 0;
	font-size: var(--fs4);
	font-weight: 600;
	color: var(--cg3);
}

.faq-toggle {
	font-size: var(--fs7);
	font-weight: 300;
	color: var(--cg3);
	min-width: 30px;
	line-height: 24px;
	text-align: center;
}

.faq-content {
	padding: 0 40px 30px;
	color: var(--cw);
	display: none;
}
.faq-content p {
	color: var(--cg7);
}

.faq-item.active .faq-content {
	display: block;
}

.faq-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-content li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
	line-height: 1.6;
	color: var(--cg7);
	font-size: var(--fs3);
}
.faq-content li a {
	border-bottom: 1px solid;
	color: var(--cw);
	font-weight: bold;
}

.faq-content li:before {
	content: "•";
	color: rgba(255, 255, 255, 0.8);
	position: absolute;
	left: 0;
}

.cta-section {
	background: var(--cg8);
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	text-align: center;
}

.cta-background {
	max-width: 1080px;
	background: var(--cp1);
	border-radius: var(--rd4);
	height: 100%;
}

.cta-content {
	padding: 20vh 40px;
	max-height: 600px;
	position: relative;
	z-index: 2;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
    flex-direction: column;
    align-items: center;
	color: var(--cg3);
}

.cta-subtitle {
	font-weight: 700;
	font-size: var(--fs4);
	color: var(--cg2);
	opacity: 1;
}

.cta-description {
	font-size: var(--fs4);
	line-height: 1.5;
	margin: 0 0 24px;
}

.site-footer {
	background: var(--cg1);
	padding: 40px 24px;
	height: 100%;
}
.footer-content {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.footer-content>* {
	flex: 1;
}
.footer-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}
.footer-right {
}
.footer-logo img {
	height: 24px;
	filter: invert(1);
	width: auto;
}
.footer-copyright {
	color: var(--cg4);
	font-size: var(--fs1);
	margin: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	row-gap: 0;
	width: 100%;
}
.footer-menu li {
	width: 100%;
}	
.footer-menu li a {
	color: var(--cg7);
	text-decoration: none;
	font-size: var(--fs2);
	text-transform: capitalize;
	transition: color 0.3s ease;
}

.footer-menu li a:hover {
	color: var(--cp2);
}
.to-top-btn {
    position: fixed;
    bottom: 22px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--cp3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.to-top-btn:hover {
    background: var(--cp2);
    transform: translateY(-3px);
}

.to-top-btn .material-symbols-outlined {
    color: white;
    font-size: 24px;
}

/* Animations */
@keyframes gradientShift {
	0%, 100% {
		background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.6) 50%,
			rgba(0, 212, 170, 0.8) 100%);
	}
	50% {
		background: linear-gradient(135deg,
			rgba(0, 212, 170, 0.8) 0%,
			rgba(255, 255, 255, 0.8) 100%);
	}
}

@keyframes waveFloat {
	0%, 100% {
		transform: translateY(0) scaleY(1);
		opacity: 0.3;
	}
	50% {
		transform: translateY(-20px) scaleY(1.1);
		opacity: 0.2;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes waveRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* === Solution Modal === */
.mg-modal { position: fixed; inset: 0; display: none; z-index: 2000; }
.mg-modal.is-open { display: block;
  display: flex;
  align-items: center;   /* 세로 가운데 */
  justify-content: center; /* 가로 가운데 */
  }
  .mg-modal__header {
	  margin-bottom: 10px;
  }
.mg-modal__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
  opacity: 0; transition: var(--tts);
}
.mg-modal.is-open .mg-modal__overlay { opacity: 1; }

.mg-modal__dialog {
  position: relative; width: min(720px, calc(100% - 48px));
  margin: 4vh auto;
  background: var(--cw); border-radius: var(--rd4);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: translateY(20px); opacity: 0; transition: var(--ttm);
  padding: 24px;
}
.mg-modal__dialog--sm { width: min(420px, calc(100% - 48px)); }

.mg-modal.is-open .mg-modal__dialog { transform: translateY(0); opacity: 1; }

.mg-modal__close {
  position: absolute;
  top: 24px;
  right: 12px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.mg-modal__close span {
	font-size: var(--fs6);
  color: var(--cg3);
}

.mg-modal__header h3 { font-size: var(--fs5); margin: 0 0 8px; color: var(--cg1); }
.mg-modal__header p  { font-size: var(--fs2); color: var(--cg3); margin: 0 0 16px; }

.mg-modal .wpcf7 form { display: grid; gap: 0; }
.mg-modal label { display: block;
	margin-bottom: 8px;
	font-size: var(--fs0); color: var(--cg2);
}
.mg-modal label span {
	color: var(--cg3);
	margin-top: 3px;
	display: block;
}
.mg-modal .wpcf7 form .half>p {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.mg-modal .wpcf7 form .half>p label {
	width: calc(50% - 8px);
}
.mg-modal input[type="text"],
.mg-modal input[type="email"],
.mg-modal input[type="tel"],
.mg-modal textarea {
  width: 100%; border: 1px solid var(--cg6); border-radius: var(--rd2);
  padding: 10px 14px; font-size: var(--fs2); box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"]{
  -webkit-appearance: auto;
  appearance: auto;
  width: auto;
  height: auto;
  margin-right: .5em;
}
.mg-modal textarea {
	min-height: 100px;
	height: 120px;
	resize: vertical;
}

.mg-modal .privacy-box {
	height: 48px;
	overflow-y: scroll;
	background: var(--cg7);
	border: 1px solid var(--cg6);
  border-radius: var(--rd2); padding: 12px 14px; font-size: var(--fs1); color: var(--cg2); }
.mg-modal .privacy-box h6 { margin: 0 0 8px; font-size: var(--fs1); font-weight: 600; }

.mg-modal .privacy-box ul li {
	font-size: var(--fs0);
}
.mg-modal .agree { display: block; margin-top: 8px; }

.wpcf7-acceptance input[type="checkbox"]{
  appearance: auto; /* 또는 unset */
  width: auto; height: auto; margin-right: .5em;
}

.mg-modal .form-actions { text-align: right; margin-top: 8px; }
.mg-modal input[type="submit"], .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: var(--rd2);
  background: var(--cp2);
  border: 1px solid rgba(9,236,198,.2); color: var(--cw); font-size: var(--fs2);
  cursor: pointer; transition: .25s;
  width: 100%;
}
.mg-modal input[type="submit"]:hover, .btn-primary:hover { background: var(--cp3); }

/* 모바일 간격 */
@media (max-width: 768px) {
  .mg-modal__dialog { margin: 8vh auto; padding: 20px; }
}

.wpcf7-spinner {
	display: none;
}
.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.wpcf7-list-item {
	margin: 0;
	width: 100%;
}
.wpcf7-list-item>label {
	width: 100%;
	display: flex;
}


.client-section {
	padding: 0px 40px 100px;
	background: #fff;
	overflow: hidden;
}
.client-section ul {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1124px;
}
@media (min-width: 1680px) {
  .client-section ul {
    max-width: 1440px; /* 예: 1480px 이상일 때 */
  }
}

@media (min-width: 2000px) {
  .client-section ul {
    max-width: 1800px; /* 예: 2000px 이상일 때 */
  }
}
.client-section li {
	padding: 20px;
	text-align: center;
}
.client-section li img {
	width: 100%;
	filter: grayscale(1);
	opacity: .7;
}
