* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #1a2a3a;
	background: #ffffff;
	line-height: 1.6;
}

.container {
	max-width: 80%;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0066ff;
	color: #fff;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: 0.25s ease;
	box-shadow: 0 4px 16px rgba(0,102,255,0.20);
}

.btn-primary:hover {
	background: #0052cc;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0,102,255,0.30);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #1a2a3a;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: 1.5px solid rgba(0,102,255,0.15);
	cursor: pointer;
	transition: 0.25s ease;
}

.btn-outline:hover {
	background: rgba(0,102,255,0.04);
	border-color: #0066ff;
	transform: translateY(-2px);
}

.navbar {
	background: #ffffff;
	border-bottom: 1px solid rgba(0,102,255,0.05);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.logo-area img {
	height: 38px;
	width: auto;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 1.6rem;
	color: #1a2a3a;
	cursor: pointer;
	padding: 4px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.nav-links a {
	padding: 8px 16px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #2f5478;
	border-radius: 30px;
	transition: 0.2s;
}

.nav-links a:hover {
	background: rgba(0,102,255,0.05);
	color: #0066ff;
}

.nav-links .btn-nav {
	background: #0066ff;
	color: #fff;
	padding: 8px 22px;
	border-radius: 30px;
	font-weight: 600;
}

.nav-links .btn-nav:hover {
	background: #0052cc;
	color: #fff;
}

.footer {
	background: #f7faff;
	border-top: 1px solid rgba(0,102,255,0.04);
	padding: 50px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer .logo {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0a2540;
}

.footer .logo span {
	color: #0066ff;
}

.footer .brand-col p {
	color: #2f5478;
	font-size: 0.92rem;
	line-height: 1.8;
	margin-top: 10px;
	max-width: 380px;
}

.footer .col h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #0a2540;
	margin-bottom: 14px;
}

.footer .col ul {
	list-style: none;
}

.footer .col ul li {
	margin-bottom: 8px;
}

.footer .col ul li a {
	color: #2f5478;
	font-size: 0.9rem;
	transition: 0.2s;
}

.footer .col ul li a:hover {
	color: #0066ff;
}

.footer-bottom {
	border-top: 1px solid rgba(0,102,255,0.04);
	padding-top: 20px;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom .icp {
	font-size: 0.8rem;
	color: #94a3b8;
}

.footer-bottom .icp a {
	color: #94a3b8;
}

.footer-bottom .icp .sep {
	margin: 0 10px;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #0066ff;
	color: #fff;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0,102,255,0.25);
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	opacity: 0;
	pointer-events: none;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}

.back-to-top:hover {
	background: #0052cc;
	transform: translateY(-3px);
}

@media(max-width:1024px) {

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px
	}

	.nav-links a {
		padding: 6px 12px;
		font-size: 0.85rem
	}
}

@media(max-width:768px) {
	.container {
		max-width: 100%;
		padding: 0 20px;
	}

	.hamburger {
		display: block
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		padding: 16px 0 8px;
		border-top: 1px solid rgba(0,102,255,0.06);
		margin-top: 4px;
		align-items: center;
		gap: 4px
	}

	.nav-links.open {
		display: flex
	}

	.nav-links .btn-nav {
		width: 100%;
		text-align: center;
		justify-content: center
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px
	}

	.footer .brand-col p {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 44px;
		height: 44px;
		font-size: 1rem
	}
}

@media(max-width:480px) {
	.container {
		max-width: 100%;
		padding: 0 16px;
	}
}* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #1a2a3a;
	background: #ffffff;
	line-height: 1.6;
}

.container {
	max-width: 80%;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0066ff;
	color: #fff;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: 0.25s ease;
	box-shadow: 0 4px 16px rgba(0,102,255,0.20);
}

.btn-primary:hover {
	background: #0052cc;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0,102,255,0.30);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #1a2a3a;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: 1.5px solid rgba(0,102,255,0.15);
	cursor: pointer;
	transition: 0.25s ease;
}

.btn-outline:hover {
	background: rgba(0,102,255,0.04);
	border-color: #0066ff;
	transform: translateY(-2px);
}

.navbar {
	background: #ffffff;
	border-bottom: 1px solid rgba(0,102,255,0.05);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.logo-area img {
	height: 38px;
	width: auto;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 1.6rem;
	color: #1a2a3a;
	cursor: pointer;
	padding: 4px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.nav-links a {
	padding: 8px 16px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #2f5478;
	border-radius: 30px;
	transition: 0.2s;
}

.nav-links a:hover {
	background: rgba(0,102,255,0.05);
	color: #0066ff;
}

.nav-links .btn-nav {
	background: #0066ff;
	color: #fff;
	padding: 8px 22px;
	border-radius: 30px;
	font-weight: 600;
}

.nav-links .btn-nav:hover {
	background: #0052cc;
	color: #fff;
}

.footer {
	background: #f7faff;
	border-top: 1px solid rgba(0,102,255,0.04);
	padding: 50px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer .logo {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0a2540;
}

.footer .logo span {
	color: #0066ff;
}

.footer .brand-col p {
	color: #2f5478;
	font-size: 0.92rem;
	line-height: 1.8;
	margin-top: 10px;
	max-width: 380px;
}

.footer .col h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #0a2540;
	margin-bottom: 14px;
}

.footer .col ul {
	list-style: none;
}

.footer .col ul li {
	margin-bottom: 8px;
}

.footer .col ul li a {
	color: #2f5478;
	font-size: 0.9rem;
	transition: 0.2s;
}

.footer .col ul li a:hover {
	color: #0066ff;
}

.footer-bottom {
	border-top: 1px solid rgba(0,102,255,0.04);
	padding-top: 20px;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom .icp {
	font-size: 0.8rem;
	color: #94a3b8;
}

.footer-bottom .icp a {
	color: #94a3b8;
}

.footer-bottom .icp .sep {
	margin: 0 10px;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #0066ff;
	color: #fff;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0,102,255,0.25);
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	opacity: 0;
	pointer-events: none;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}

.back-to-top:hover {
	background: #0052cc;
	transform: translateY(-3px);
}

@media(max-width:1024px) {

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px
	}

	.nav-links a {
		padding: 6px 12px;
		font-size: 0.85rem
	}
}

@media(max-width:768px) {
	.container {
		max-width: 100%;
		padding: 0 20px;
	}

	.hamburger {
		display: block
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		padding: 16px 0 8px;
		border-top: 1px solid rgba(0,102,255,0.06);
		margin-top: 4px;
		align-items: center;
		gap: 4px
	}

	.nav-links.open {
		display: flex
	}

	.nav-links .btn-nav {
		width: 100%;
		text-align: center;
		justify-content: center
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px
	}

	.footer .brand-col p {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center
	}

	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 44px;
		height: 44px;
		font-size: 1rem
	}
}

@media(max-width:480px) {
	.container {
		max-width: 100%;
		padding: 0 16px;
	}
}