:root {
	--bg: #f6fbff;
	--bg-soft: #eef6ff;
	--bg-tint: #e8f1ff;
	--card: rgba(255,255,255,0.9);
	--white: #ffffff;
	--line: #d8e6ff;
	--line-strong: #cadcff;
	--text: #0f2645;
	--muted: #66789a;
	--primary: #5d83ff;
	--primary-2: #69d7ff;
	--mint: #7be6d1;
	--violet: #8a8dff;
	--shadow: 0 24px 70px rgba(77, 111, 183, 0.12);
	--shadow-soft: 0 14px 34px rgba(77, 111, 183, 0.08);
	--radius-xl: 36px;
	--radius-lg: 26px;
	--radius-md: 20px;
	--max: 1280px;
	--hero-h: 100svh;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 12% 10%, rgba(105,215,255,0.16), transparent 24%),
		radial-gradient(circle at 86% 14%, rgba(93,131,255,0.12), transparent 24%),
		linear-gradient(180deg, #fbfdff 0%, #f6faff 42%, #eef5ff 100%);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.container {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 130;
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, backdrop-filter .25s ease;
	border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	background: rgba(255,255,255,0.84);
	backdrop-filter: blur(14px);
	border-color: rgba(216,230,255,0.95);
	box-shadow: 0 10px 28px rgba(77,111,183,0.08);
}

.nav {
	min-height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.nav-tools {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
}

.nav-tools .brand {
	margin-right: auto;
	flex: 0 1 auto;
	min-width: 0;
}

.nav-tools > .nav-action {
	flex: 0 0 auto;
	white-space: nowrap;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: white;
	transition: color .25s ease;
}

.site-header.scrolled .brand {
	color: var(--text);
}

.brand-logo {
	width: 132px;
	height: 48px;
	flex: 0 0 auto;
	position: relative;
	display: block;
	border-radius: 12px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.site-header.scrolled .brand-logo {
	background: rgba(246,251,255,0.9);
	border-color: rgba(216,230,255,0.95);
}

.brand-logo .logo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px 8px;
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
}

.brand-logo .logo-light {
	opacity: 1;
	transform: scale(1);
}

.brand-logo .logo-dark {
	opacity: 0;
	transform: scale(.98);
}

.site-header.scrolled .brand-logo .logo-light {
	opacity: 0;
	transform: scale(.98);
}

.site-header.scrolled .brand-logo .logo-dark {
	opacity: 1;
	transform: scale(1);
}

.brand-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.brand-copy strong {
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1;
}

.brand-copy span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.86;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	color: rgba(255,255,255,0.92);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: color .25s ease;
	flex: 0 0 auto;
}

.site-header.scrolled .nav-menu {
	color: var(--muted);
}

.nav-menu a {
	position: relative;
	padding: 8px 0;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.nav-menu a:hover::after {
	transform: scaleX(1);
}

.nav-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,0.14);
	border: 1px solid #e4d58a;
	color: white;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
	backdrop-filter: blur(10px);
	transition: .25s ease;
	white-space: nowrap;
}

.site-header.scrolled .nav-action {
	background: linear-gradient(135deg, var(--primary), #7994ff);
	border-color: transparent;
	box-shadow: 0 14px 28px rgba(93,131,255,0.18);
}

/* =========================
   Language
========================= */
.lang-toggle {
	display: inline-flex;
	align-items: center;
	padding: 4px;
	margin-left: 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.16);
	backdrop-filter: blur(10px);
	flex: 0 0 auto;
}

.site-header.scrolled .lang-toggle {
	background: rgba(255,255,255,0.9);
	border-color: rgba(216,230,255,0.95);
	box-shadow: 0 10px 20px rgba(77,111,183,0.08);
}

.lang-desktop {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lang-mobile-only {
	display: none;
}

.lang-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.92);
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-header.scrolled .lang-link {
	color: var(--muted);
}

.lang-link.is-active {
	background: rgba(255,255,255,0.92);
	color: var(--text);
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.site-header.scrolled .lang-link.is-active {
	background: linear-gradient(135deg, rgba(93,131,255,0.12), rgba(105,215,255,0.16));
	color: var(--text);
	box-shadow: none;
}

.hero {
	position: relative;
	min-height: var(--hero-h);
	overflow: hidden;
	color: white;
}

.hero-media,
.hero-overlay,
.hero-lights {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-media {
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #dfe8f5;
	opacity: 0;
	transform: scale(1.02) translate3d(0, 1.2%, 0);
	animation: heroBgSwap 18s cubic-bezier(0.42, 0, 0.2, 1) infinite;
	animation-fill-mode: both;
	will-change: opacity, transform;
}

.hero-bg-1 {
	background-image: url('/renew/img/main01.jpg');
	animation-delay: 0s;
}

.hero-bg-2 {
	background-image: url('/renew/img/main02.jpg?v1.2');
	animation-delay: 6s;
}

.hero-bg-3 {
	background-image: url('/renew/img/main03.jpg');
	animation-delay: 12s;
}

.hero-overlay {
	background:
		linear-gradient(90deg, rgba(10,29,56,0.46) 0%, rgba(10,29,56,0.20) 38%, rgba(10,29,56,0.08) 100%),
		linear-gradient(180deg, rgba(10,29,56,0.16) 0%, rgba(10,29,56,0.03) 36%, rgba(10,29,56,0.24) 100%);
}

.hero-lights {
	background:
		radial-gradient(circle at 16% 28%, rgba(123,230,209,0.18), transparent 18%),
		radial-gradient(circle at 78% 22%, rgba(105,215,255,0.16), transparent 20%),
		radial-gradient(circle at 86% 72%, rgba(93,131,255,0.12), transparent 18%);
	filter: blur(8px);
	animation: glowShift 10s ease-in-out infinite;
}

.hero-inner {
	position: relative;
	z-index: 2;
	min-height: var(--hero-h);
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 26px;
	align-items: end;
	padding-top: 110px;
	padding-bottom: 70px;
}

.hero-copy {
	max-width: 820px;
	padding-bottom: 12px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.18);
	backdrop-filter: blur(10px);
	color: rgba(255,255,255,0.94);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-headline-zone {
	position: relative;
	min-height: clamp(260px, 30vw, 420px);
	margin-bottom: 22px;
}

.hero-line {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: 10.5ch;
	font-family: "Outfit", sans-serif;
	font-size: clamp(42px, 5.4vw, 84px);
	line-height: 0.94;
	letter-spacing: -0.055em;
	font-weight: 500;
	opacity: 0;
	transform: translateY(28px);
	animation: heroTextCycle 14s ease-in-out infinite;
	text-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.hero-line:nth-child(2) { animation-delay: 3.5s; }
.hero-line:nth-child(3) { animation-delay: 7s; }
.hero-line:nth-child(4) { animation-delay: 10.5s; }

.hero-summary {
	max-width: 620px;
	color: rgba(255,255,255,0.92);
	font-size: 15px;
	line-height: 1.92;
	font-weight: 500;
	margin-bottom: 28px;
	margin-top: 6px;
	text-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 22px;
	border-radius: 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), #7d95ff);
	color: white;
	box-shadow: 0 16px 30px rgba(93,131,255,0.22);
}

.btn-secondary {
	background: rgba(255,255,255,0.16);
	border: 1px solid rgba(255,255,255,0.18);
	color: white;
	backdrop-filter: blur(10px);
}

.hero-foot {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.hero-foot-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.92);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mint);
	box-shadow: 0 0 14px rgba(123,230,209,0.65);
}

.hero-side {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	min-height: 100%;
}

.side-stack {
	width: min(100%, 470px);
	display: grid;
	gap: 14px;
	perspective: 1200px;
}

.side-card,
.side-panel {
	border-radius: 26px;
	background: rgba(255,255,255,0.16);
	border: 1px solid rgba(255,255,255,0.18);
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 34px rgba(0,0,0,0.12);
	overflow: hidden;
}

.side-card {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	min-height: 196px;
	transform: rotate(-1.5deg);
	animation: floatPanel 8s ease-in-out infinite;
}

.side-card:nth-child(2) {
	transform: rotate(1.6deg);
	animation-delay: -2.5s;
}

.side-card .visual {
	min-height: 100%;
	overflow: hidden;
}

.side-card .visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.side-card .content {
	padding: 18px;
	display: grid;
	align-content: center;
	gap: 8px;
}

.side-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.82);
}

.side-title {
	font-family: "Outfit", sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.side-copy {
	font-size: 12px;
	line-height: 1.75;
	color: rgba(255,255,255,0.84);
	font-weight: 500;
}

.side-panel {
	padding: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.mini-block {
	padding: 14px;
	border-radius: 20px;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.16);
}

.mini-block strong {
	display: block;
	font-family: "Outfit", sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 8px;
}

.mini-block span {
	display: block;
	font-size: 11px;
	line-height: 1.6;
	color: rgba(255,255,255,0.86);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.18);
	color: white;
	font-size: 22px;
	backdrop-filter: blur(10px);
	animation: bounceCue 2s ease-in-out infinite;
	z-index: 3;
}

.marquee {
	padding: 8px 0 24px;
}

.marquee-wrap {
	overflow: hidden;
	border-top: 1px solid rgba(216,230,255,0.95);
	border-bottom: 1px solid rgba(216,230,255,0.95);
	background: rgba(255,255,255,0.64);
	backdrop-filter: blur(10px);
}

.marquee-track {
	display: flex;
	gap: 16px;
	width: max-content;
	padding: 16px 0;
	animation: marquee 24s linear infinite;
}

.marquee-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	color: #4c6488;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.section {
	padding: 40px 0;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 16px;
	margin-bottom: 18px;
}

.section-head h2 {
	font-family: "Outfit", sans-serif;
	font-size: clamp(32px, 4vw, 60px);
	line-height: 1.02;
	letter-spacing: -0.05em;
	margin-bottom: 10px;
	font-weight: 500;
}

.section-head p {
	max-width: 100%;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.92;
	font-weight: 500;
}

.section-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.reveal {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
	will-change: opacity, transform;
	backface-visibility: hidden;
}

.reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.ecosystem-shell {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

#ecosystem .section-head {
	margin-bottom: 0;
}

.ecosystem-stage {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 18px;
	width: 100%;
}

.feature-panel,
.solution-grid-wrap,
.service-wrap,
.process-wrap,
.cta-shell {
	background: var(--card);
	border: 1px solid rgba(216,230,255,0.95);
	box-shadow: var(--shadow-soft);
}

.feature-panel {
	border-radius: var(--radius-xl);
	padding: 24px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
	will-change: transform;
}

.panel-tag {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(123,230,209,0.16);
	color: #3f7d70;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
	align-self: flex-start;
}

.feature-panel h3 {
	font-family: "Outfit", sans-serif;
	font-size: clamp(28px, 3vw, 46px);
	line-height: 1.06;
	letter-spacing: -0.05em;
	margin-bottom: 12px;
	font-weight: 500;
	max-width: 560px;
}

.feature-panel p {
	max-width: 560px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.92;
	font-weight: 500;
}

.panel-image {
	margin-top: 18px;
	height: 250px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	flex-shrink: 0;
}

.panel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s ease, filter .4s ease;
}

.panel-image-tall {
	height: 330px;
}

.ecosystem-stage .feature-panel:first-child {
	justify-content: space-between;
}

.panel-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 18px;
}

.panel-split .panel-image {
	margin-top: 0;
	height: 150px;
}

.ecosystem-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
}

.ecosystem-pill {
	padding: 18px 16px;
	min-height: 84px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(246,250,255,0.96));
	border: 1px solid rgba(216,230,255,0.95);
	box-shadow: 0 12px 24px rgba(77,111,183,0.08);
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
	will-change: transform;
}

.ecosystem-pill strong {
	display: block;
	width: 100%;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
	margin-bottom: 0;
	text-align: center;
}

.ecosystem-pill span {
	display: block;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 600;
}

.ecosystem-strip .ecosystem-pill:nth-child(1) {
	background: linear-gradient(135deg, rgba(221,243,255,0.92), rgba(240,248,255,0.98));
	border-color: rgba(190,220,255,0.95);
}

.ecosystem-strip .ecosystem-pill:nth-child(2) {
	background: linear-gradient(135deg, rgba(232,246,237,0.92), rgba(245,252,247,0.98));
	border-color: rgba(201,231,211,0.95);
}

.ecosystem-strip .ecosystem-pill:nth-child(3) {
	background: linear-gradient(135deg, rgba(255,240,230,0.92), rgba(255,248,243,0.98));
	border-color: rgba(247,220,200,0.95);
}

.ecosystem-strip .ecosystem-pill:nth-child(4) {
	background: linear-gradient(135deg, rgba(242,236,255,0.92), rgba(249,246,255,0.98));
	border-color: rgba(220,209,247,0.95);
}

.solution-grid-wrap {
	border-radius: var(--radius-xl);
	padding: 20px;
}

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

.solution-card {
	overflow: hidden;
	border-radius: 26px;
	border: 1px solid rgba(216,230,255,0.95);
	background: rgba(255,255,255,0.92);
	box-shadow: var(--shadow-soft);
	transition: transform .22s ease, box-shadow .22s ease;
}

.solution-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 44px rgba(77,111,183,0.13);
}

.solution-thumb {
	height: 138px;
	overflow: hidden;
	position: relative;
}

.solution-thumb img {
	transition: transform .5s ease;
}

.solution-card:hover .solution-thumb img {
	transform: scale(1.06);
}

.solution-body {
	padding: 16px;
}

.solution-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6d83af;
	margin-bottom: 8px;
}

.solution-name {
	font-family: "Outfit", sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.04em;
	margin-bottom: 10px;
}

.solution-desc {
	min-height: 56px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.82;
	font-weight: 500;
	margin-bottom: 14px;
}

.solution-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.08em;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(93,131,255,0.08);
	color: #5673b6;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.solution-tag__arrow {
	padding-left: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.62em;
	height: 0.72em;
	margin-left: 0;
	font-size: 1.85em;
	line-height: 0.72;
	font-weight: 700;
	flex: 0 0 auto;
	transform: translateY(-0.02em);
}

.showcase-grid {
	display: grid;
	grid-template-columns: 1.24fr 0.76fr;
	gap: 18px;
}

.showcase-main {
	position: relative;
	min-height: 410px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.showcase-main::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,38,69,0.02), rgba(15,38,69,0.2));
	pointer-events: none;
}

.showcase-copy {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 1;
	padding: 20px;
	border-radius: 24px;
	background: rgba(255,255,255,0.86);
	border: 1px solid rgba(216,230,255,0.95);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-soft);
}

.showcase-copy strong {
	display: block;
	font-family: "Outfit", sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.04;
	margin-bottom: 8px;
	letter-spacing: -0.03em;
}

.showcase-copy span {
	display: block;
	font-size: 14px;
	line-height: 1.82;
	color: var(--muted);
	font-weight: 500;
}

.showcase-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 18px;
}

.showcase-side .stacked-photo {
	min-height: 196px;
}

.service-wrap {
	border-radius: var(--radius-xl);
	padding: 20px;
}

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

.service-card {
	padding: 20px;
	border-radius: 26px;
	border: 1px solid rgba(216,230,255,0.95);
	background: rgba(255,255,255,0.94);
	box-shadow: var(--shadow-soft);
	transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
	will-change: transform;
}

.service-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(93,131,255,0.12), rgba(123,230,209,0.14));
	border: 1px solid rgba(216,230,255,0.95);
	font-size: 24px;
	margin-bottom: 16px;
}

.service-card h3 {
	font-family: "Outfit", sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
}

.service-card p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.86;
	font-weight: 500;
	margin-bottom: 16px;
}

.service-list {
	display: grid;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4a6285;
}

.service-list div::before {
	content: "• ";
	color: var(--primary);
}

.process-wrap {
	border-radius: var(--radius-xl);
	padding: 18px;
	margin-top: 4px;
}

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

.process-card {
	padding: 18px;
	border-radius: 24px;
	border: 1px solid rgba(216,230,255,0.95);
	background: rgba(248,251,255,0.9);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
	will-change: transform;
}

.process-no {
	display: inline-flex;
	padding: 8px 10px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid rgba(216,230,255,0.95);
	color: var(--primary);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.process-card h4 {
	font-family: "Outfit", sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
}

.process-card p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.84;
	font-weight: 500;
}

.cta-shell {
	border-radius: var(--radius-xl);
	padding: 18px;
	margin-top: 4px;
}

.cta-block {
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	gap: 16px;
	padding: 24px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 84% 18%, rgba(105,215,255,0.12), transparent 18%),
		radial-gradient(circle at 72% 34%, rgba(93,131,255,0.1), transparent 18%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(216,230,255,0.95);
}

.cta-block h2 {
	font-family: "Outfit", sans-serif;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.05em;
	margin-bottom: 12px;
	max-width: 620px;
}

.cta-block p {
	max-width: 620px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.92;
	font-weight: 500;
}

.cta-list {
	display: grid;
	gap: 12px;
	align-content: start;
}

.cta-list div {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255,255,255,0.84);
	border: 1px solid rgba(216,230,255,0.95);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4a6485;
	box-shadow: var(--shadow-soft);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
	will-change: transform;
}

.feature-panel:hover,
.ecosystem-pill:hover,
.service-card:hover,
.process-card:hover,
.cta-list div:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(77,111,183,0.12);
	border-color: rgba(202,220,255,1);
}

.feature-panel:hover .panel-image img,
.showcase-main:hover img,
.showcase-side .stacked-photo:hover img,
.solution-card:hover .solution-thumb img {
	transform: scale(1.04);
	filter: saturate(1.04);
}

.showcase-main img,
.showcase-side .stacked-photo img {
	transition: transform .7s ease, filter .4s ease;
	border-radius: 24px;
}

.ecosystem-stage .feature-panel,
.ecosystem-strip .ecosystem-pill,
.solution-grid .solution-card,
.service-grid .service-card,
.process-grid .process-card,
.cta-list div {
	opacity: 0;
	will-change: transform, opacity;
}

.ecosystem-stage .feature-panel:first-child {
	transform: translateX(-30px);
}

.ecosystem-stage .feature-panel:last-child {
	transform: translateX(30px);
}

.ecosystem-strip .ecosystem-pill {
	transform: translateY(20px) scale(.985);
}

.solution-grid .solution-card:nth-child(odd) {
	transform: translateX(-22px);
}

.solution-grid .solution-card:nth-child(even) {
	transform: translateX(22px);
}

.service-grid .service-card {
	transform: translateY(24px) scale(.97);
}

.process-grid .process-card:nth-child(odd) {
	transform: translateY(24px);
}

.process-grid .process-card:nth-child(even) {
	transform: translateY(24px) scale(.985);
}

.cta-list div {
	transform: translateX(26px);
}

.ecosystem-stage.is-visible .feature-panel:first-child {
	animation: itemSlideLeft 1s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: .12s;
}

.ecosystem-stage.is-visible .feature-panel:last-child {
	animation: itemSlideRight 1s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: .28s;
}

.ecosystem-strip.is-visible .ecosystem-pill:nth-child(odd) {
	animation: itemFloatUp 1s cubic-bezier(.2,.8,.2,1) forwards;
}

.ecosystem-strip.is-visible .ecosystem-pill:nth-child(even) {
	animation: itemScaleIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}

.ecosystem-strip.is-visible .ecosystem-pill:nth-child(1) { animation-delay: .16s; }
.ecosystem-strip.is-visible .ecosystem-pill:nth-child(2) { animation-delay: .28s; }
.ecosystem-strip.is-visible .ecosystem-pill:nth-child(3) { animation-delay: .40s; }
.ecosystem-strip.is-visible .ecosystem-pill:nth-child(4) { animation-delay: .52s; }

.solution-grid-wrap.is-visible .solution-card:nth-child(odd) {
	animation: itemSlideLeft .95s cubic-bezier(.2,.8,.2,1) forwards;
}

.solution-grid-wrap.is-visible .solution-card:nth-child(even) {
	animation: itemSlideRight .95s cubic-bezier(.2,.8,.2,1) forwards;
}

.solution-grid-wrap.is-visible .solution-card:nth-child(1) { animation-delay: .14s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(2) { animation-delay: .22s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(3) { animation-delay: .30s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(4) { animation-delay: .38s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(5) { animation-delay: .46s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(6) { animation-delay: .54s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(7) { animation-delay: .62s; }
.solution-grid-wrap.is-visible .solution-card:nth-child(8) { animation-delay: .70s; }

.service-wrap.is-visible .service-card {
	animation: itemScaleIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}

.service-wrap.is-visible .service-card:nth-child(1) { animation-delay: .18s; }
.service-wrap.is-visible .service-card:nth-child(2) { animation-delay: .32s; }
.service-wrap.is-visible .service-card:nth-child(3) { animation-delay: .46s; }

.process-wrap.is-visible .process-card:nth-child(odd) {
	animation: itemFloatUp .95s cubic-bezier(.2,.8,.2,1) forwards;
}

.process-wrap.is-visible .process-card:nth-child(even) {
	animation: itemScaleIn .95s cubic-bezier(.2,.8,.2,1) forwards;
}

.process-wrap.is-visible .process-card:nth-child(1) { animation-delay: .16s; }
.process-wrap.is-visible .process-card:nth-child(2) { animation-delay: .28s; }
.process-wrap.is-visible .process-card:nth-child(3) { animation-delay: .40s; }
.process-wrap.is-visible .process-card:nth-child(4) { animation-delay: .52s; }

.cta-shell.is-visible .cta-list div {
	animation: itemSlideRight .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.cta-shell.is-visible .cta-list div:nth-child(1) { animation-delay: .18s; }
.cta-shell.is-visible .cta-list div:nth-child(2) { animation-delay: .28s; }
.cta-shell.is-visible .cta-list div:nth-child(3) { animation-delay: .38s; }
.cta-shell.is-visible .cta-list div:nth-child(4) { animation-delay: .48s; }
.cta-shell.is-visible .cta-list div:nth-child(5) { animation-delay: .58s; }
.cta-shell.is-visible .cta-list div:nth-child(6) { animation-delay: .68s; }

.site-footer {
	padding: 20px 0 38px;
	border-top: 1px solid rgba(216,230,255,0.95);
	background: rgba(255,255,255,0.56);
	color: #7285a4;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.site-footer .footer-contact-card img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.footer-contact-card {
	background: linear-gradient(135deg, #1f516d 0%, #214b63 100%);
	border-radius: 30px;
	padding: 34px 36px;
	box-shadow: 0 20px 44px rgba(20,55,78,0.18);
	color: rgba(255,255,255,0.96);
	margin-bottom: 18px;
}

.footer-contact-card h3 {
	font-family: "Outfit", sans-serif;
	font-size: clamp(22px, 3vw, 38px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 18px;
}

.footer-contact-card p {
	font-size: 14px;
	line-height: 1.7;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: rgba(255,255,255,0.94);
}

.footer-contact-card p + p {
	margin-top: 2px;
}

.footer-meta {
	color: #7285a4;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.snap-section {
	position: relative;
	scroll-margin-top: 96px;
}

.snap-section:not(.hero) {
	min-height: auto;
	display: block;
}

.snap-section.hero {
	scroll-margin-top: 0;
}

@keyframes glowShift {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(0, -10px, 0) scale(1.04); }
}

@keyframes heroBgSwap {
	0% {
		opacity: 0;
		transform: scale(1.02) translate3d(0, 1.2%, 0);
	}
	5% {
		opacity: 1;
		transform: scale(1.015) translate3d(0, 0.8%, 0);
	}
	30% {
		opacity: 1;
		transform: scale(1.00) translate3d(0, -0.3%, 0);
	}
	37% {
		opacity: 0;
		transform: scale(1.01) translate3d(0, -0.7%, 0);
	}
	100% {
		opacity: 0;
		transform: scale(1.01) translate3d(0, -0.7%, 0);
	}
}

@keyframes heroTextCycle {
	0% { opacity: 0; transform: translateY(28px); }
	7% { opacity: 1; transform: translateY(0); }
	20% { opacity: 1; transform: translateY(0); }
	27% { opacity: 0; transform: translateY(-18px); }
	100% { opacity: 0; transform: translateY(-18px); }
}

@keyframes floatPanel {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -10px, 0); }
}

@keyframes bounceCue {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes itemSlideLeft {
	0% {
		opacity: 0;
		transform: translateX(-26px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes itemSlideRight {
	0% {
		opacity: 0;
		transform: translateX(26px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes itemScaleIn {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(.965);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes itemFloatUp {
	0% {
		opacity: 0;
		transform: translateY(26px);
	}
	60% {
		opacity: 1;
		transform: translateY(-4px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1180px) {
	.snap-section:not(.hero) {
		min-height: auto;
		display: block;
	}

	.hero-inner,
	.ecosystem-stage,
	.showcase-grid,
	.service-grid,
	.process-grid,
	.cta-block {
		grid-template-columns: 1fr;
	}

	.solution-grid,
	.ecosystem-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-side {
		justify-content: flex-start;
	}

	.brand-copy {
		display: none;
	}
}

@media (max-width: 760px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.site-header {
		padding-top: 10px;
	}

	.nav {
		min-height: 76px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
		min-width: 0;
	}

	.nav-tools {
		flex: 0 0 100%;
		width: 100%;
		min-width: 0;
		gap: 8px;
	}

	.nav-tools .brand {
		margin-right: auto;
		min-width: 0;
	}

	/* 모바일: wrapper 흰 배경/흰 공백 제거 */
	.nav-tools .lang-toggle {
		padding: 0 !important;
		margin-left: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		backdrop-filter: none !important;
		overflow: visible !important;
	}

	.site-header.scrolled .nav-tools .lang-toggle {
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		backdrop-filter: none !important;
	}

	.nav-tools .lang-toggle::before,
	.nav-tools .lang-toggle::after,
	.site-header.scrolled .nav-tools .lang-toggle::before,
	.site-header.scrolled .nav-tools .lang-toggle::after {
		content: none !important;
		display: none !important;
	}

	.lang-desktop {
		display: none !important;
	}

	.lang-mobile-only {
		display: inline-flex !important;
	}

	/* 모바일 KR/EN: 기존 nav-action 유지 + 테두리만 파스텔 */
	.nav-tools .lang-mobile-only.nav-action {
		border-color: #e4d58a !important;
	}

	.site-header.scrolled .nav-tools .lang-mobile-only.nav-action {
		border-color: transparent !important;
	}

	.nav-menu {
		order: 3;
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		display: block !important;
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.nav-menu::-webkit-scrollbar {
		display: none;
	}

	.nav-menu a {
		display: inline-flex !important;
		align-items: center;
		white-space: nowrap;
		padding: 8px 0;
		margin-right: 12px;
		vertical-align: middle;
	}

	.nav-menu a:last-child {
		margin-right: 0;
	}

	.nav-menu .js-notice-layer {
		display: none !important;
	}

	a.section-link[href="#contact"] {
		display: none !important;
	}

	.brand-logo {
		width: 118px;
		height: 42px;
	}

	.hero-inner {
		padding-top: 118px;
		padding-bottom: 86px;
	}

	.hero-headline-zone {
		min-height: 240px;
	}

	.hero-line {
		font-size: 42px;
		max-width: 9.5ch;
		line-height: 0.96;
	}

	.solution-grid,
	.ecosystem-strip,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.side-panel {
		grid-template-columns: 1fr;
	}

	.side-card {
		grid-template-columns: 1fr;
	}

	.feature-panel,
	.solution-grid-wrap,
	.service-wrap,
	.process-wrap,
	.cta-shell,
	.cta-block {
		padding: 22px;
	}

	.panel-image,
	.panel-split {
		margin-top: 18px;
	}

	.panel-image {
		height: 200px;
	}

	.panel-image-tall {
		height: 240px;
	}

	.panel-split .panel-image {
		height: 132px;
	}

	.showcase-copy {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.section {
		padding: 56px 0;
	}

	.footer-contact-card {
		padding: 26px 22px;
	}

	.footer-contact-card h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.footer-contact-card p {
		font-size: 12px;
		line-height: 1.65;
	}
}

/* marquee tone */
.marquee-pill {
	background: rgba(248, 250, 255, 0.92) !important;
	border-color: rgba(214, 226, 245, 0.9) !important;
	box-shadow: 0 8px 18px rgba(122, 143, 179, 0.06) !important;
	color: #6a7f9f !important;
}

.marquee-pill:nth-child(8n+1) {
	background: rgba(231, 239, 255, 0.78) !important;
	border-color: rgba(207, 221, 247, 0.9) !important;
}

.marquee-pill:nth-child(8n+2) {
	background: rgba(233, 247, 242, 0.78) !important;
	border-color: rgba(212, 235, 226, 0.9) !important;
}

.marquee-pill:nth-child(8n+3) {
	background: rgba(255, 243, 235, 0.8) !important;
	border-color: rgba(243, 223, 211, 0.9) !important;
}

.marquee-pill:nth-child(8n+4) {
	background: rgba(245, 239, 255, 0.8) !important;
	border-color: rgba(227, 219, 245, 0.9) !important;
}

.marquee-pill:nth-child(8n+5) {
	background: rgba(239, 248, 255, 0.8) !important;
	border-color: rgba(219, 233, 244, 0.9) !important;
}

.marquee-pill:nth-child(8n+6) {
	background: rgba(245, 250, 236, 0.78) !important;
	border-color: rgba(227, 236, 215, 0.9) !important;
}

.marquee-pill:nth-child(8n+7) {
	background: rgba(255, 240, 245, 0.78) !important;
	border-color: rgba(241, 220, 228, 0.9) !important;
}

.marquee-pill:nth-child(8n+8) {
	background: rgba(240, 244, 255, 0.8) !important;
	border-color: rgba(220, 228, 245, 0.9) !important;
}

@media (min-width: 1025px){
	.nav-tools .nav-action{
		border-color:transparent !important;
		outline:none !important;
		box-shadow:none !important;
	}

	.nav-tools .nav-action:focus,
	.nav-tools .nav-action:active,
	.nav-tools .nav-action:hover{
		border-color:transparent !important;
		outline:none !important;
		box-shadow:none !important;
	}
}
