/*
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, 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: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.85);
	padding: 15px 0 17px;
	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;
}

.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(--cg1);
	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; }

.nav-extra {
	display: none;
}
#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: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #fff 0%, #09ECC6 100%);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.gradient-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
		rgba(0, 212, 170, 0.8) 100%);
	animation: gradientShift 8s ease-in-out infinite;
}

.gradient-overlay {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 200px;
	background: radial-gradient(ellipse 100% 100% at center bottom,
		rgba(0, 212, 170, 0.3) 0%,
		transparent 100%);
	animation: waveFloat 6s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--cg2);
}

.hero-title {
	font-size: var(--fsmax);
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 80px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.3s forwards;
}
.title-line1,
.title-line2 {
	display: block;
}
.hero-subtitle {
	font-weight: 500;
	margin: 0 0 24px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.6s forwards;
}
.subtitle-en {
	font-weight: 700;
	font-size: var(--fs3);
	color: var(--cg2);
}
.subtitle-desc {
	font-size: var(--fs3);
	margin: 0;
	color: var(--cg3);
	line-height: 1.4;
}

.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: var(--cg1);
	padding: 8px 16px;
	border-radius: 4px;
	text-decoration: none;
	width: 108px;
	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));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

}

.cta-button .ico {
	font-size: 20px;
}
.cta-button:hover {
	background: rgba(255, 255, 255, 0.3);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
	transform: translateY(-2px);
}

.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;
}

.review-section {
	padding: 150px 0px 100px;
	background: #f8f9fa;
	overflow: hidden;
}
.review-section .slick-slide {
	display: flex !important;
	margin: 0 24px;
	background: 135% linear-gradient(to right, var(--cp4), var(--cp5));
	box-sizing: border-box;
	padding: 36px;
	max-width: 900px;
	max-height: 700px;
	height: 50vh;
	min-height: 400px;
	opacity: .2;
	flex-direction: column;
	transition: .5s;
	transform: scale(.9);
	justify-content: space-between;
}
.review-section .slick-slide.slick-active {
	transform: scale(1);
	opacity: 1;
}
.review-slider {
	margin: 0 auto;
	position: relative;
}
.review-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: var(--cg6);
	font-size: var(--fs3);
	align-items: flex-start;
}
.review-header h3 {
	font-size: var(--fs7);
	font-weight: 600;
	color: var(--cg7);
}
.review-text {
	line-height: 1.7;
	margin: 0 0 30px;
	flex: 1;
	font-size: var(--fs3r);
}
.reviewer {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: var(--fs2);
	font-weight: 500;
}

.reviewer strong {
	font-size: var(--fs3);
	color: var(--cg8);
	font-weight: 500;
}

.reviewer span {
	color: var(--cg4);
	font-size: var(--fs1);
}

.review-detail {
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(9, 236, 198, 0.2);
	padding: 8px 16px;
	border-radius: 4px;
	font-size: var(--fs1);
	color: var(--cg6);
	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);

	display: none;
}

.review-image {
	display: flex;
	width: 100%;
	overflow: hidden;
	justify-content: space-between;
	align-items: flex-end;
}
.review-image>div {
	display: flex;
	gap: 12px;
	align-items: center;
}
.review-image img {
	width: 80px;
	height: 80px;
	border-radius: var(--rd2);
	display: block;
	object-fit: cover;
}

.review-item {
    display: flex;
    background: var(--cg7);
	box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-radius: 16px;
    overflow: hidden;
    align-items: stretch;
    gap: 0;
}

.solution-section {
	display: flex;
	padding: 150px 40px 100px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #f0f0f0;
}
ul.card {
	max-width: 1400px;
    margin: 0 auto;
	align-items: flex-start;
}
ul.card li {
	flex: 1 0 48%;
    width: calc(50% - 16px);
	border-radius: var(--rd4);
    max-width: calc(50% - 16px);
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
ul.card li a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 32px;
	box-sizing: border-box;
	position: absolute;
	z-index: 2;
}
ul.card li a span {
	font-size: var(--fs8);
	color: var(--cw);
	position: absolute;
	right: 28px;
	bottom: 28px;
	font-weight: 300;
}
ul.card li a h3 {
	font-size: var(--fs5);
	font-weight: 600;
	color: var(--cw);
}
ul.card li article {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 32px;
	box-sizing: border-box;
	position: absolute;
	background: rgba(30, 30, 35, 0.7);
	color: var(--cg7);
	opacity: 0;
	align-content: space-between;
}
ul.card li:hover {
	cursor: pointer;
}
ul.card li:hover a {
	opacity: 0;
	transition: .4s;
}
ul.card li:hover article.view {
	opacity: 1;
	transition: .4s;
	z-index: 2;
}
ul.card li article p {
	font-size: var(--fs2);
	line-height: 1.5;
}
ul.card li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
ul.card li:hover img {
	filter: grayscale(1);
}

.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: 150px 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;
}
