:root {
	--primary: #0f2b4a;
	--primary-mid: #1a3f6a;
	--accent: #2563eb;
	--accent-light: #3b82f6;
	--accent-glow: rgba(37, 99, 235, 0.18);
	--teal: #0d9488;
	--text: #0f172a;
	--text-mid: #334155;
	--muted: #64748b;
	--line: #e2e8f0;
	--soft: #f8fafc;
	--soft2: #f1f5f9;
	--white: #ffffff;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
	--shadow: 0 4px 24px rgba(15,43,74,0.10), 0 1px 4px rgba(15,43,74,0.06);
	--shadow-lg: 0 20px 60px rgba(15,43,74,0.14), 0 4px 16px rgba(15,43,74,0.08);
	--container: 1160px;
	--radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
	font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	height: 72px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.logo img {
	display: block;
	width: 156px;
	height: auto;
}

.nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1 1 auto;
	justify-content: center;
}

.nav a {
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-mid);
	transition: background 0.15s, color 0.15s;
}

.nav a:hover {
	background: var(--soft2);
	color: var(--primary);
}

.header-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.15s, transform 0.15s;
}

.header-contact:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
}

.mobile-menu-btn {
	display: none;
	width: 40px;
	height: 40px;
	margin-left: auto;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.mobile-menu-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--primary);
	border-radius: 10px;
	transition: 0.2s;
}

.mobile-nav {
	display: none;
	border-top: 1px solid var(--line);
	background: #fff;
}

.mobile-nav a {
	display: block;
	padding: 14px 24px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	font-weight: 700;
	color: var(--text-mid);
}

/* ── HERO ── */
.hero {
	position: relative;
	min-height: 780px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--primary);
	padding: 100px 0 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
}

.blob1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #2563eb 0%, transparent 70%);
	top: -150px;
	right: -100px;
	animation: blobFloat 8s ease-in-out infinite;
}

.blob2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #0d9488 0%, transparent 70%);
	bottom: -100px;
	left: 30%;
	animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
	0%, 100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-grid-lines {
	position: absolute;
	inset: 0;
	background-image:
			linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
			linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.9);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 24px;
}

.badge-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.3); }
	50% { box-shadow: 0 0 0 5px rgba(74,222,128,0.1); }
}

.hero h1 {
	color: #fff;
	font-size: clamp(32px, 3.8vw, 52px);
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: -0.04em;
	margin-bottom: 24px;
}

.hero h1 em {
	font-style: normal;
	background: linear-gradient(135deg, #60a5fa, #34d399);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-desc {
	color: rgba(255,255,255,0.72);
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 44px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 24px;
	min-height: 50px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.18s ease;
	cursor: pointer;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(37,99,235,0.5);
}

.btn-outline {
	background: rgba(255,255,255,0.08);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}

.btn-white {
	background: #fff;
	color: var(--primary);
	box-shadow: var(--shadow);
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 28px;
}

.stat-item strong {
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.stat-item strong span {
	font-size: 16px;
	font-weight: 700;
	opacity: 0.7;
}

.stat-item > span {
	display: block;
	margin-top: 4px;
	color: rgba(255,255,255,0.55);
	font-size: 12px;
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 36px;
	background: rgba(255,255,255,0.15);
}

/* Dashboard mock */
.hero-visual {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dashboard-mock {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
	background: #1e293b;
	animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.mock-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #0f172a;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-dots {
	display: flex;
	gap: 6px;
}

.mock-dots span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #334155;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }

.mock-title {
	color: rgba(255,255,255,0.4);
	font-size: 12px;
}

.mock-body {
	display: grid;
	grid-template-columns: 140px 1fr;
}

.mock-sidebar {
	background: #0f172a;
	border-right: 1px solid rgba(255,255,255,0.06);
	padding: 12px 0;
}

.mock-nav-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	color: rgba(255,255,255,0.4);
	font-size: 11px;
	font-weight: 600;
	cursor: default;
	transition: 0.15s;
}

.mock-nav-item.active {
	background: rgba(37,99,235,0.2);
	color: #60a5fa;
	border-left: 2px solid #2563eb;
}

.mock-nav-item i {
	font-size: 10px;
	width: 12px;
}

.mock-content {
	padding: 14px;
	background: #1e293b;
}

.mock-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 12px;
}

.mock-card {
	padding: 10px 12px;
	background: #273548;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0.05);
}

.mock-card-label {
	color: rgba(255,255,255,0.4);
	font-size: 9px;
	font-weight: 600;
	margin-bottom: 4px;
}

.mock-card-value {
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 4px;
}

.mock-card-trend {
	font-size: 9px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 3px;
}

.mock-card-trend.up { color: #4ade80; }
.mock-card-trend.neutral { color: #94a3b8; }

.mock-chart {
	background: #273548;
	border-radius: 6px;
	padding: 10px 12px;
	margin-bottom: 10px;
	border: 1px solid rgba(255,255,255,0.05);
}

.chart-label {
	color: rgba(255,255,255,0.4);
	font-size: 9px;
	font-weight: 600;
	margin-bottom: 8px;
}

.chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 44px;
}

.bar {
	flex: 1;
	height: var(--h);
	background: rgba(37,99,235,0.4);
	border-radius: 3px 3px 0 0;
	position: relative;
	transition: 0.3s;
}

.bar.active {
	background: #2563eb;
	box-shadow: 0 0 8px rgba(37,99,235,0.6);
}

.bar span {
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.3);
	font-size: 8px;
	white-space: nowrap;
}

.mock-table-head {
	display: grid;
	grid-template-columns: 2fr 1.5fr 2fr 1fr;
	gap: 4px;
	padding: 5px 8px;
	background: rgba(255,255,255,0.04);
	border-radius: 4px 4px 0 0;
	color: rgba(255,255,255,0.3);
	font-size: 9px;
	font-weight: 700;
}

.mock-table-row {
	display: grid;
	grid-template-columns: 2fr 1.5fr 2fr 1fr;
	gap: 4px;
	padding: 6px 8px;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	color: rgba(255,255,255,0.7);
	font-size: 9px;
	align-items: center;
}

.tag-done {
	display: inline-block;
	padding: 2px 6px;
	background: rgba(74,222,128,0.15);
	color: #4ade80;
	border-radius: 3px;
	font-size: 8px;
	font-weight: 700;
}

.tag-wait {
	display: inline-block;
	padding: 2px 6px;
	background: rgba(251,191,36,0.15);
	color: #fbbf24;
	border-radius: 3px;
	font-size: 8px;
	font-weight: 700;
}

.hero-stack-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hero-stack-tags span {
	padding: 6px 12px;
	border-radius: 6px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.7);
	font-size: 12px;
	font-weight: 700;
}

/* ── SECTION COMMONS ── */
.section { padding: 96px 0; }

.section-label {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.section-label.center { display: block; text-align: center; }
.section-label.light { color: rgba(255,255,255,0.5); }

.section-title {
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: -0.04em;
	color: var(--text);
	margin-bottom: 16px;
}

.section-title.center { text-align: center; }
.section-title.left { text-align: left; }

.section-sub {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.section-sub.center { text-align: center; }
.section-sub.left { text-align: left; }

/* ── PROBLEM ── */
.problem-section {
	background: var(--soft);
}

.problem-section .section-label,
.problem-section .section-title,
.problem-section .section-sub {
	text-align: center;
	display: block;
}

.problem-section .section-title { margin-bottom: 12px; }
.problem-section .section-sub { margin-bottom: 52px; }

.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.problem-card {
	padding: 32px 28px;
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	transition: all 0.2s ease;
}

.problem-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: #cbd5e1;
}

.problem-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #eff6ff, #dbeafe);
	color: var(--accent);
	font-size: 20px;
	margin-bottom: 20px;
}

.problem-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.problem-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
}

/* ── SOLUTION ── */
.solution-section {
	background: #fff;
}

.solution-top {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 72px;
	align-items: start;
}

.solution-items {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.solution-item {
	display: flex;
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.solution-item:first-child {
	border-top: 1px solid var(--line);
}

.sol-num {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	margin-top: 2px;
}

.sol-body strong {
	display: block;
	font-size: 17px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}

.sol-body p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
}

/* ── SERVICES ── */
.services-section {
	background: var(--primary);
}

.services-section .section-label { color: rgba(255,255,255,0.5); }
.services-section .section-title { color: #fff; }
.services-section .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 52px; }

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.service-card {
	padding: 28px 24px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius);
	transition: all 0.2s ease;
}

.service-card:hover {
	background: rgba(255,255,255,0.09);
	border-color: rgba(255,255,255,0.16);
	transform: translateY(-4px);
}

.service-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(37,99,235,0.3);
	color: #60a5fa;
	font-size: 20px;
	margin-bottom: 18px;
}

.service-card h3 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.service-card p {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	line-height: 1.7;
	margin-bottom: 14px;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.service-tags span {
	padding: 3px 8px;
	border-radius: 4px;
	background: rgba(37,99,235,0.2);
	color: #93c5fd;
	font-size: 11px;
	font-weight: 700;
}

/* ── PROCESS ── */
.process-section {
	background: var(--soft);
}

.process-section .section-label { color: var(--accent); }

.process-steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-top: 52px;
	position: relative;
}

.process-step {
	flex: 1;
	text-align: center;
	padding: 32px 16px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	position: relative;
	transition: all 0.2s ease;
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.process-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	flex: 0 0 32px;
	color: var(--accent);
	font-size: 14px;
	margin-top: 40px;
}

.step-num {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}

.step-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, #eff6ff, #dbeafe);
	color: var(--accent);
	font-size: 20px;
	margin: 0 auto 16px;
}

.process-step strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.process-step p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.65;
}

/* ── EXPERIENCE ── */
.experience-section {
	background: #fff;
}

.experience-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.exp-highlight {
	display: flex;
	gap: 32px;
	margin-top: 32px;
}

.exp-num strong {
	display: block;
	font-size: 40px;
	font-weight: 900;
	color: var(--accent);
	letter-spacing: -0.04em;
	line-height: 1;
}

.exp-num strong em {
	font-style: normal;
	font-size: 22px;
	opacity: 0.6;
}

.exp-num span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
}

.exp-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.exp-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 20px;
	background: #fff;
	font-size: 15px;
	font-weight: 700;
	color: var(--text-mid);
	transition: background 0.15s;
}

.exp-item:hover {
	background: var(--soft);
}

.exp-item i {
	color: var(--accent);
	font-size: 14px;
	flex-shrink: 0;
}

/* ── PREPARE ── */
.prepare-section {
	background: var(--soft);
}

.prepare-box {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 64px;
	align-items: start;
	padding: 52px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.prepare-left h2 {
	font-size: clamp(24px, 2.8vw, 36px);
	font-weight: 900;
	color: var(--text);
	line-height: 1.25;
	letter-spacing: -0.04em;
	margin-bottom: 12px;
}

.prepare-left p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
}

.prepare-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.prepare-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: var(--soft);
	border-radius: 8px;
	border: 1px solid var(--line);
	font-size: 14px;
	font-weight: 700;
	color: var(--text-mid);
}

.prepare-item i {
	color: var(--accent);
	font-size: 16px;
	flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-section {
	padding: 96px 0 110px;
	background: var(--primary);
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
	pointer-events: none;
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.contact-left .section-label { color: rgba(255,255,255,0.45); }

.contact-left h2 {
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}

.contact-left p {
	color: rgba(255,255,255,0.6);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 32px;
}

.contact-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	transition: all 0.2s ease;
}

.contact-card:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.2);
	transform: translateX(4px);
}

.contact-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(37,99,235,0.3);
	color: #60a5fa;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-card span {
	display: block;
	color: rgba(255,255,255,0.45);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
}

.contact-card strong {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

/* ── FOOTER ── */
.site-footer {
	padding: 32px 0;
	background: #070f1a;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.footer-info strong {
	display: block;
	margin-bottom: 10px;
	color: rgba(255,255,255,0.7);
	font-size: 15px;
	font-weight: 800;
}

.footer-info p {
	margin: 3px 0;
	color: rgba(255,255,255,0.3);
	font-size: 13px;
}

.footer-info a {
	color: rgba(255,255,255,0.35);
	transition: color 0.15s;
}

.footer-info a:hover {
	color: rgba(255,255,255,0.7);
}

.footer-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	color: rgba(255,255,255,0.35);
	font-size: 13px;
	font-weight: 700;
	transition: color 0.15s;
	white-space: nowrap;
}

.footer-top:hover {
	color: rgba(255,255,255,0.7);
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
	.hero-inner,
	.solution-top,
	.experience-inner,
	.prepare-box,
	.contact-inner {
		grid-template-columns: 1fr;
	}

	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.problem-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		flex-wrap: wrap;
		gap: 12px;
	}

	.process-arrow { display: none; }
	.process-step { flex: 0 0 calc(33.333% - 8px); }

	.hero-visual { display: none; }

	.hero-inner { grid-template-columns: 1fr; }
	.hero { min-height: auto; }
}

@media (max-width: 860px) {
	.nav, .header-contact { display: none; }
	.mobile-menu-btn { display: flex; }
	.mobile-nav.is-open { display: block; }

	.logo img { width: 140px; }

	.problem-grid { grid-template-columns: 1fr; }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.exp-list { grid-template-columns: 1fr; }
	.prepare-right { grid-template-columns: 1fr; }

	.process-step { flex: 0 0 calc(50% - 6px); }

	.prepare-box { padding: 32px 24px; gap: 32px; }
}

@media (max-width: 600px) {
	.container { width: calc(100% - 32px); }
	.header-inner { height: 62px; }
	.section { padding: 68px 0; }
	.hero { padding: 72px 0 64px; }

	.hero h1 { font-size: clamp(28px, 8vw, 40px); }
	.hero-desc { font-size: 15px; }
	.hero-stats { gap: 16px; }
	.stat-item strong { font-size: 22px; }

	.hero-actions { flex-direction: column; }
	.btn { width: 100%; }

	.service-grid { grid-template-columns: 1fr; }
	.process-step { flex: 0 0 100%; }

	.experience-inner { gap: 40px; }
	.exp-highlight { gap: 20px; }

	.contact-inner { gap: 40px; }

	.footer-inner { flex-direction: column; }
}

/* ── CONTACT FORM ── */
.contact-form {
	margin-bottom: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
}

.form-group label {
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	font-weight: 700;
}

.form-group label em {
	color: #f87171;
	font-style: normal;
	margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 11px 14px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	transition: border 0.15s, background 0.15s;
	outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255,255,255,0.25);
}

.form-group select option {
	background: #1a3f6a;
	color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(59,130,246,0.6);
	background: rgba(255,255,255,0.10);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.18s;
	box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.btn-submit:hover:not(:disabled) {
	background: #1d4ed8;
	transform: translateY(-1px);
}

.btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form-result {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
	min-height: 20px;
	text-align: center;
}

.form-result.success { color: #4ade80; }
.form-result.error   { color: #f87171; }

.contact-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media (max-width: 600px) {
	.form-row { grid-template-columns: 1fr; }
}
/* ── ALSO SECTION ── */
.also-section {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.also-label {
	text-align: center;
	color: rgba(255,255,255,0.45);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 24px;
}

.also-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 24px;
}

.also-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 10px;
	transition: all 0.2s;
}

.also-card:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.13);
}

.also-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(13,148,136,0.2);
	color: #2dd4bf;
	font-size: 15px;
	flex-shrink: 0;
}

.also-body strong {
	display: block;
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
}

.also-body p {
	color: rgba(255,255,255,0.4);
	font-size: 12px;
	line-height: 1.6;
	margin: 0;
}

.also-note {
	text-align: center;
	color: rgba(255,255,255,0.35);
	font-size: 13px;
	margin: 0;
}

.also-note a {
	color: #2dd4bf;
	font-weight: 700;
	margin-left: 4px;
}

.also-note a:hover {
	color: #5eead4;
}

@media (max-width: 860px) {
	.also-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.also-grid { grid-template-columns: 1fr; }
}