.corp-main {
	--navy: #0f172a;
	--blue: #0056b3;
	--blue-dark: #004085;
	--text: #1e293b;
	--muted: #64748b;
	--line: #e2e8f0;
	--soft: #f8fafc;
	background: #fff;
	color: var(--text);
	font-family: var(--font-primary);
	overflow: hidden;
}

.corp-main * {
	box-sizing: border-box;
}

.corp-main a {
	color: inherit;
	text-decoration: none;
}

.corp-inner {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
}

.corp-eyebrow {
	margin: 0 0 14px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.corp-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef3f7;
	overflow: hidden;
	color: #fff;
	text-align: center;
}

.corp-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.corp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.78));
}

.corp-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding-top: 72px;
	opacity: 0;
	transform: translateY(28px);
	animation: heroFadeUp 0.9s ease forwards;
}

@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-tag {
	display: inline-block;
	margin-bottom: 20px;
	padding: 6px 16px;
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: 20px;
	background: rgba(56, 189, 248, 0.1);
	color: #38bdf8;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 3px;
}

.corp-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4.8vw, 48px);
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0;
	word-break: keep-all;
}

.corp-hero p:not(.corp-eyebrow) {
	max-width: 650px;
	margin: 25px auto 0;
	color: #cbd5e1;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 300;
	word-break: keep-all;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.hero-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 148px;
	height: 54px;
	padding: 0 28px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-actions a:first-child {
	border-color: #0056b3;
	background: #0056b3;
	color: #fff;
}

.hero-actions a:first-child:hover {
	background: #004085;
	box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.hero-actions a:not(:first-child) {
	background: transparent;
	color: #fff;
}

.hero-actions a:not(:first-child):hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.figure-bar {
	background: var(--navy);
	color: #fff;
}

.figure-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.figure-item {
	min-height: 150px;
	padding: 34px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.figure-item:last-child {
	border-right: 0;
}

.figure-item strong {
	display: block;
	font-size: 46px;
	font-weight: 900;
	line-height: 1;
}

.figure-item p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	font-weight: 700;
}

.about-section,
.business-section,
.process-section,
.project-section,
.inquiry-section {
	padding: 112px 0;
}

.about-section {
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.process-section,
.inquiry-section {
	background: var(--soft);
}

.process-section {
	background: #fff;
}

.section-heading {
	margin-bottom: 38px;
}

.process-section .section-heading,
.inquiry-section .inquiry-copy {
	text-align: center;
}

.process-section .section-heading,
.inquiry-section .inquiry-copy {
	margin-bottom: 60px;
}

.process-section .section-heading h2,
.inquiry-section .inquiry-copy h2 {
	font-size: clamp(30px, 3.2vw, 36px);
	font-weight: 700;
	color: var(--navy);
}

.process-section .section-heading span,
.inquiry-section .inquiry-copy p {
	font-size: 16px;
	color: var(--muted);
}

.section-heading h2,
.project-copy h2,
.inquiry-copy h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.22;
	font-weight: 900;
	letter-spacing: 0;
	word-break: keep-all;
}

.section-heading span,
.project-copy p,
.inquiry-copy p {
	display: block;
	margin-top: 16px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.7;
	word-break: keep-all;
}

.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 64px;
	align-items: start;
}

.about-copy {
	position: sticky;
	top: 120px;
}

.about-copy h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(30px, 3.2vw, 36px);
	line-height: 1.28;
	font-weight: 700;
	letter-spacing: 0;
	word-break: keep-all;
}

.about-copy p:not(.corp-eyebrow) {
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.8;
	word-break: keep-all;
}

.why-panel {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--soft);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.why-item {
	min-height: 210px;
	padding: 26px;
	border: 1px solid #dfe6ee;
	border-radius: 6px;
	background: #fff;
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.why-item:hover {
	transform: translateY(-6px);
	border-color: #c8d6e3;
	box-shadow: 0 18px 36px rgba(11, 37, 69, 0.1);
}

.why-item span {
	display: block;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
}

.why-item strong {
	display: block;
	margin-top: 18px;
	color: var(--navy);
	font-size: 21px;
	font-weight: 900;
}

.why-item p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
	word-break: keep-all;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.business-card {
	position: relative;
	height: 430px;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--line);
	background: #111;
}

.business-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.business-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 37, 69, 0.06) 0%, rgba(11, 37, 69, 0.84) 100%);
}

.business-card div {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 28px;
	color: #fff;
	transform: translateY(52px);
	transition: transform 0.34s ease;
}

.business-card span {
	color: #b8dcf1;
	font-size: 15px;
	font-weight: 900;
}

.business-card h3 {
	margin: 12px 0 14px;
	font-size: 28px;
	font-weight: 900;
}

.business-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.6;
	word-break: keep-all;
	opacity: 0;
	transition: opacity 0.34s ease;
}

.business-card:hover img {
	transform: scale(1.08);
}

.business-card:hover div {
	transform: translateY(0);
}

.business-card:hover p {
	opacity: 1;
}

.pipeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 62px;
}

.pipeline::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 50px;
	right: 50px;
	z-index: 1;
	height: 2px;
	background: linear-gradient(to right, #cbd5e1 50%, rgba(255, 255, 255, 0) 0%);
	background-size: 15px 2px;
	background-repeat: repeat-x;
}

.pipeline-track {
	display: none;
}

.pipeline-step {
	position: relative;
	z-index: 2;
	padding: 20px;
	background: #fff;
	text-align: center;
}

.pipeline-step i {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	background: #f1f5f9;
	color: #64748b;
	font-style: normal;
	font-size: 16px;
	font-weight: 700;
	transition: border-color 0.34s ease, background 0.34s ease, color 0.34s ease, box-shadow 0.34s ease;
}

.pipeline-step:hover i {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 6px rgba(0, 86, 179, 0.15);
}

.pipeline-step strong {
	display: block;
	margin: 0 0 12px;
	color: var(--text);
	font-size: 18px;
	font-weight: 700;
}

.pipeline-step p {
	margin: 0 auto;
	max-width: 210px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	word-break: keep-all;
}

.project-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 68px;
	align-items: center;
}

.project-info {
	margin-top: 30px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(11, 37, 69, 0.08);
}

.project-info span,
.project-info strong,
.project-info p {
	display: block;
}

.project-info span {
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
}

.project-info strong {
	margin-top: 10px;
	color: var(--navy);
	font-size: 24px;
	line-height: 1.35;
	font-weight: 900;
}

.project-info p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 16px;
	font-weight: 700;
}

.project-live {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--soft);
}

.project-live > strong {
	display: inline-block;
	color: var(--navy);
	font-size: 17px;
	font-weight: 900;
}

.project-live > a {
	float: right;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
}

.project-live ul {
	clear: both;
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.project-live li {
	padding-top: 10px;
	border-top: 1px solid #dce4ec;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
}

.project-live li b {
	display: block;
	color: var(--text);
	font-size: 16px;
	font-weight: 900;
}

.project-live li span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
}

.map-box {
	position: relative;
	min-height: 590px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}

.korea-map {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(500px, 88%);
	height: min(560px, 90%);
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.korea-map > span {
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
}

.korea-map svg {
	width: 100%;
	height: 100%;
	display: block;
}

.korea-map .map-area {
	cursor: pointer;
	outline: none;
	transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
}

.korea-map .map-area:focus,
.korea-map .map-area:focus-visible,
.korea-map svg:focus {
	outline: none;
}

.korea-map .map-area:hover,
.korea-map .map-area:focus-visible,
.korea-map .map-area.active {
	fill: #0077b6 !important;
	stroke: #0b2545 !important;
	filter: drop-shadow(0 8px 10px rgba(0, 119, 182, 0.22));
}

.partner-area {
	margin-top: 76px;
	padding: 100px 0;
	border-top: 1px solid var(--line);
	background: #f8fafc;
	overflow: hidden;
}

.partner-heading {
	display: block;
	margin: 0 auto 42px;
	max-width: 760px;
	text-align: center;
}

.partner-heading .corp-eyebrow {
	margin: 0 0 10px;
}

.partner-heading h3 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(30px, 3.5vw, 44px);
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0;
	word-break: keep-all;
}

.partner-heading span {
	display: block;
	margin-top: 12px;
	color: #64748b;
	font-size: 15px;
	line-height: 1.7;
	word-break: keep-all;
}

.partner-heading span b {
	color: var(--blue);
	font-size: 18px;
	font-weight: 900;
}

.partner-strip {
	position: relative;
	margin-top: 0;
	border: 0;
	background: transparent;
	overflow: hidden;
}

.partner-strip::before,
.partner-strip::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 140px;
	pointer-events: none;
}

.partner-strip::before {
	left: 0;
	background: linear-gradient(90deg, #f6f8fb 0%, rgba(246, 248, 251, 0) 100%);
}

.partner-strip::after {
	right: 0;
	background: linear-gradient(270deg, #f6f8fb 0%, rgba(246, 248, 251, 0) 100%);
}

.partner-slider {
	display: grid;
	gap: 8px;
	padding: 10px 0;
}

.partner-track {
	display: flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	padding: 8px 0;
	will-change: transform;
}

.partner-track:hover {
	animation-play-state: paused;
}

.partner-track.row-left {
	animation: partnerSlideLeft 65s linear infinite;
}

.partner-track.row-right {
	animation: partnerSlideRight 58s linear infinite;
}

.partner-network-item,
.partner-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 220px;
	height: 90px;
	padding: 0 26px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
	color: #0b2545;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	filter: grayscale(1);
	opacity: 0.72;
	transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.partner-network-item:hover,
.partner-item:hover {
	border-color: var(--blue);
	box-shadow: 0 10px 15px -3px rgba(0, 86, 179, 0.1);
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-5px);
}

.partner-network-item img,
.partner-item img {
	width: 156px;
	height: 58px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.76;
}

@keyframes partnerSlideLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - 9px)); }
}

@keyframes partnerSlideRight {
	0% { transform: translateX(calc(-50% - 9px)); }
	100% { transform: translateX(0); }
}

.inquiry-section {
	position: relative;
	overflow: hidden;
	background: var(--navy);
	color: #fff;
}

.inquiry-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(0, 86, 179, 0.26), rgba(15, 23, 42, 0) 44%),
		radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.2), transparent 32%);
	pointer-events: none;
}

.inquiry-simple {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	max-width: 860px;
	text-align: center;
}

.inquiry-simple .corp-eyebrow {
	color: #7dd3fc;
}

.inquiry-simple h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: 0;
	word-break: keep-all;
}

.inquiry-simple p:not(.corp-eyebrow) {
	max-width: 620px;
	margin: 18px auto 0;
	color: rgba(226, 232, 240, 0.82);
	font-size: 18px;
	line-height: 1.7;
	word-break: keep-all;
}

.inquiry-simple-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 178px;
	height: 54px;
	margin-top: 34px;
	padding: 0 30px;
	border: 1px solid #fff;
	border-radius: 4px;
	background: #fff;
	color: var(--navy);
	font-size: 16px;
	font-weight: 900;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.inquiry-simple-link:hover {
	border-color: #7dd3fc;
	background: #7dd3fc;
	color: var(--navy);
	box-shadow: 0 16px 34px rgba(56, 189, 248, 0.22);
}

.contact-cta-section {
	padding: 120px 0;
	background-color: #0f172a;
	color: #fff;
	text-align: center;
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-cta-section span {
	display: block;
	margin-bottom: 15px;
	color: #38bdf8;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-cta-section h2 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
	word-break: keep-all;
}

.contact-cta-section p {
	margin: 0 0 40px;
	color: #94a3b8;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6;
	word-break: keep-all;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	border-radius: 8px;
	background-color: #0056b3;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
	background-color: #004085;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(0, 86, 179, 0.3);
}

.inquiry-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: start;
}

.inquiry-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: min(980px, 100%);
	margin: 0 auto;
	padding: 40px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.inquiry-form label {
	display: block;
}

.inquiry-form label.full,
.privacy-agree,
.form-message,
.inquiry-form button {
	grid-column: 1 / -1;
}

.inquiry-form span {
	display: block;
	margin-bottom: 8px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
	width: 100%;
	border: 1px solid #cfd8e3;
	border-radius: 8px;
	background: #f8fafc;
	color: var(--text);
	font: inherit;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.inquiry-form input,
.inquiry-form select {
	height: 48px;
	padding: 0 13px;
}

.inquiry-form input[type="file"] {
	height: auto;
	padding: 12px 13px;
}

.inquiry-form textarea {
	padding: 13px;
	resize: vertical;
}

.file-help {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.5;
}

.privacy-agree {
	padding: 20px;
	border: 1px solid #dfe6ee;
	border-radius: 6px;
	background: var(--soft);
}

.privacy-agree > strong {
	display: block;
	color: var(--navy);
	font-size: 15px;
	font-weight: 900;
}

.privacy-box {
	max-height: 116px;
	margin-top: 12px;
	padding: 14px;
	overflow-y: auto;
	border: 1px solid #d9e2ec;
	border-radius: 4px;
	background: #fff;
}

.privacy-box p {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}

.privacy-box p:last-child {
	margin-bottom: 0;
}

.privacy-check {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.privacy-check input {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.privacy-check span {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
}

.form-message {
	display: none;
	margin: 0;
	padding: 12px 14px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 800;
}

.form-message.active {
	display: block;
}

.form-message.success {
	background: #eef9f3;
	color: #147343;
}

.form-message.error {
	background: #fff1f1;
	color: #b42318;
}

.main-auto-classify-message {
	display: none;
	padding: 12px 14px;
	border: 1px solid #b8d9ec;
	border-radius: 4px;
	background: #f0f8fc;
	color: var(--blue-dark);
	font-size: 14px;
	font-weight: 800;
}

.main-auto-classify-message.active {
	display: block;
}

.main-inquiry-extra-fields {
	display: none;
	padding: 20px;
	border: 1px solid #dfe6ee;
	border-radius: 6px;
	background: var(--soft);
}

.main-extra-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #dfe6ee;
}

.main-extra-title strong {
	color: var(--navy);
	font-size: 15px;
	font-weight: 900;
}

.main-extra-title span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.main-extra-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.main-extra-grid label {
	display: block;
}

.main-extra-grid span {
	display: block;
	margin-bottom: 8px;
	color: var(--navy);
	font-size: 13px;
	font-weight: 900;
}

.main-extra-grid input,
.main-extra-grid select {
	width: 100%;
	height: 46px;
	padding: 0 13px;
	border: 1px solid #cfd8e3;
	border-radius: 4px;
	background: #fff;
	color: var(--text);
	font: inherit;
}

.main-detail-link {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 20px;
	align-items: center;
	padding: 20px 22px;
	border: 1px solid #dfe6ee;
	border-radius: 6px;
	background: #f8fafc;
}

.main-detail-link strong {
	color: var(--navy);
	font-size: 15px;
	font-weight: 900;
}

.main-detail-link p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.main-detail-link a {
	grid-row: 1 / span 2;
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 152px;
	height: 44px;
	padding: 0 18px;
	border: 1px solid var(--blue);
	border-radius: 4px;
	background: #fff;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.main-detail-link a:hover {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 20px rgba(0, 86, 179, 0.14);
}

.inquiry-form button {
	height: 52px;
	border: 0;
	border-radius: 4px;
	background: var(--navy);
	color: #fff;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.inquiry-form button:disabled {
	cursor: wait;
	opacity: 0.7;
}

.notice-popup-layer {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(15, 23, 42, 0.48);
}

.notice-popup {
	width: min(520px, 100%);
	max-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(11, 37, 69, 0.28);
}

.notice-popup-img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: contain;
	background: #f8fafc;
}

.notice-popup-body {
	padding: 26px;
	overflow-y: auto;
}

.notice-popup-body h2 {
	margin: 0;
	color: var(--navy);
	font-size: 24px;
	line-height: 1.35;
	font-weight: 900;
	word-break: keep-all;
}

.notice-popup-content {
	margin-top: 16px;
	color: #445061;
	font-size: 15px;
	line-height: 1.75;
	word-break: keep-all;
}

.notice-popup-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	border-top: 1px solid var(--line);
	background: #f8fafc;
}

.notice-popup-actions button {
	border: 0;
	background: transparent;
	color: #344054;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.notice-popup-actions button:last-child {
	min-width: 74px;
	height: 38px;
	border-radius: 4px;
	background: var(--navy);
	color: #fff;
}

.notice-popup-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 14px;
}

.notice-popup-close i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 3px;
	font-style: normal;
	font-size: 15px;
	line-height: 1;
}

/* =========================================================
   Typography refinement
========================================================= */
.corp-main {
	font-family: var(--font-primary);
	letter-spacing: var(--letter-body);
}

.corp-main p,
.corp-main span,
.corp-main li {
	font-weight: var(--font-body-weight);
	letter-spacing: var(--letter-body);
}

.corp-main h1,
.corp-main h2,
.corp-main h3,
.corp-main h4 {
	font-weight: var(--font-heading-weight);
	letter-spacing: var(--letter-heading);
}

.corp-eyebrow,
.hero-tag,
.hero-actions a,
.figure-item strong,
.business-card span,
.business-card h3,
.pipeline-step i,
.pipeline-step strong,
.project-info strong,
.project-live strong,
.project-live b,
.partner-heading h3,
.partner-heading b,
.partner-item,
.partner-network-item,
.cta-btn,
.notice-popup-actions button {
	font-weight: var(--font-emphasis-weight);
}

@media (max-width: 1024px) {
	.business-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-layout,
	.project-layout,
	.inquiry-layout {
		grid-template-columns: 1fr;
	}

	.partner-heading {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.about-copy {
		position: static;
	}
}

@media (max-width: 720px) {
	.corp-inner {
		width: calc(100% - 36px);
	}

	.contact-cta-section h2 {
		font-size: 28px;
	}

	.contact-cta-section p {
		font-size: 15px;
	}

	.corp-hero {
		min-height: 680px;
	}

	.corp-hero-overlay {
		background: linear-gradient(rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.82));
	}

	.corp-hero-content {
		padding-top: 64px;
	}

	.corp-hero h1 {
		font-size: 32px;
	}

	.hero-actions,
	.figure-grid,
	.business-grid,
	.why-grid,
	.works-grid,
	.pipeline,
	.inquiry-form,
	.main-extra-grid {
		grid-template-columns: 1fr;
	}

	.main-extra-title {
		display: grid;
	}

	.main-detail-link {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.main-detail-link a {
		grid-row: auto;
		grid-column: auto;
		width: 100%;
	}

	.hero-actions {
		display: grid;
	}

	.figure-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.figure-item:last-child {
		border-bottom: 0;
	}

	.about-section,
	.business-section,
	.process-section,
	.project-section,
	.inquiry-section {
		padding: 72px 0;
	}

	.why-panel {
		padding: 20px;
	}

	.why-item {
		min-height: 0;
		padding: 22px;
	}

	.business-card {
		height: 360px;
	}

	.business-card div {
		transform: translateY(0);
	}

	.business-card p {
		opacity: 1;
	}

	.pipeline::before {
		display: none;
	}

	.pipeline-step {
		min-height: 0;
		padding: 20px;
		text-align: center;
	}

	.pipeline-step i {
		margin: 0 auto 20px;
	}

	.pipeline-step p {
		margin-left: auto;
	}

	.map-box {
		min-height: 500px;
	}

	.korea-map {
		width: min(340px, 86%);
		height: min(440px, 88%);
	}

	.partner-area {
		margin-top: 52px;
		padding: 58px 0;
	}

	.partner-heading {
		margin-bottom: 30px;
	}

	.partner-strip::before,
	.partner-strip::after {
		width: 44px;
	}

	.partner-slider {
		gap: 12px;
	}

	.partner-track {
		padding: 6px 0;
	}

	.partner-track.row-left {
		animation-duration: 48s;
	}

	.partner-track.row-right {
		animation-duration: 52s;
	}

	.partner-network-item,
	.partner-item {
		width: 168px;
		height: 68px;
		padding: 0 18px;
		border-radius: 8px;
		font-size: 13px;
	}

	.partner-network-item img,
	.partner-item img {
		width: 138px;
		height: 46px;
	}

}

.trust-badges-wrapper {
	display: flex;
	flex-direction: column; /* 세로로 3개를 나열하여 아래쪽 빈 공간을 알차게 채웁니다 */
	gap: 15px;
	border-top: 1px solid #e2e8f0;
	padding-top: 30px;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #f8fafc;
	padding: 14px 20px;
	border-radius: 10px;
	border: 1px solid #f1f5f9;
	transition: all 0.3s ease;
}

.badge-item:hover {
	background: #ffffff;
	border-color: #0056b3;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.06);
}

.badge-icon {
	font-size: 22px;
	background: #ffffff;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
	border: 1px solid #e2e8f0;
}

.badge-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.badge-text strong {
	font-size: 15px;
	color: #0f172a;
	font-weight: 700;
}

.badge-text span {
	font-size: 13px;
	color: #64748b;
	font-weight: 400;
}
