@font-face {
	font-family: Inter-Regular;
	src: url("../font/Inter-Regular.ttf");
}

@font-face {
	font-family: Inter-Medium;
	src: url("../font/Inter-Medium.ttf");
}

@font-face {
	font-family: Inter-SemiBold;
	src: url("../font/Inter-SemiBold.ttf");
}

@font-face {
	font-family: Inter-Bold;
	src: url("../font/Inter-Bold.ttf");
}

h1,
h2,
h3 {
	color: var(--heading-color1);
	margin-bottom: 0;
	font-family: "Inter-Bold";
	font-weight: normal;
}

h3 {
	font-size: 15px;
	color: var(--heading-color1);
}

h4,
h5 {
	color: var(--heading-color);
	margin-bottom: 0;
	font-family: "Inter-Regular";
	font-weight: normal;
}

p {
	margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.footer-link-list{
    list-style: none;
	margin: 0;
	padding: 0;
}

#header_buttons {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 100000;
}


.mr-1 {
	margin-right: 1rem;
}

.p-overlaypanel-content {
	border-radius: 10px;
	position: absolute;
	background-color: #fff;
	padding: 10px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
	z-index: 100000;
}

.triangle-down {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: 20px;
	top: -10px;
	transform: scaleY(-1);
	border-style: solid;
	border-color: #dedede transparent transparent transparent;
}

.triangle-down em {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: -10px;
	top: -11px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}

.triangle-right {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: -15px;
	top: 15px;
	transform: scaleY(-1) rotate(270deg);
	border-style: solid;
	border-color: #dedede transparent transparent transparent;
}

.triangle-right em {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: -10px;
	top: -10px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}

.theme-btn {
	border-radius: 12px;
	text-align: center;
	border: none;
	max-width: max-content;
	width: auto;
	padding: 5px 15px;
	position: relative;
	align-items: center;
	font-family: "Inter-Regular";
	font-weight: normal;
	display: flex;
	justify-content: space-between;
}

.btn-main {
	color: #fff;
	background: var(--theme-color-1);
	transition: all .5s ease-out;
	white-space: nowrap;
	min-width: 100px;
}

.btn-main:hover {
	background-position: left bottom;
	color: #fff;
	background: #1a7967;
	transition: all .5s ease-out;
}

.btn-secondary {
	color: var(--font-white);
	background-color: var(--theme-color-2);
	transition: all .5s ease-out;
}

.btn-secondary:hover {
	background-position: left bottom;
	color: #fff;
	background: #171389;
	transition: all .5s ease-out;
}

.btn-outline-success {
	font-weight: 700;
	color: var(--green-500);
	border: 1.5px solid var(--green-500);
	transition: all .5s ease-out;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
	background-color: rgba(255, 255, 255, 0);
}

.btn-outline-success:hover {
	font-weight: 700;
	color: var(--green-400);
	border: 1.5px solid var(--green-400);
	transition: all .5s ease-out;
}

.btn-info {
	font-weight: 700;
	color: var(--font-white);
	background-color: var(--blue-500);
	transition: all .5s ease-out;
}

.btn-info:hover {
	background-position: left bottom;
	color: #fff;
	background: var(--blue-400);
	transition: all .5s ease-out;
}

.btn-outline-info {
	font-weight: 700;
	color: var(--blue-500);
	border: 1.5px solid var(--blue-500);
	transition: all .5s ease-out;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
	background-color: rgba(255, 255, 255, 0);
}

.btn-outline-info:hover {
	font-weight: 700;
	color: var(--blue-400);
	border: 1.5px solid var(--blue-400);
	transition: all .5s ease-out;
}

.btn-outline-danger {
	font-weight: 700;
	color: var(--red-500);
	border: 1.5px solid var(--red-500);
	transition: all .5s ease-out;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
	background-color: rgba(255, 255, 255, 0);
}

.btn-outline-danger:hover {
	font-weight: 700;
	color: var(--red-400);
	border: 1.5px solid var(--red-400);
	transition: all .5s ease-out;
}

.btn-help {
	font-weight: 700;
	color: var(--font-white);
	background-color: var(--purple-500);
	transition: all .5s ease-out;
}

.btn-help:hover {
	background-position: left bottom;
	color: #fff;
	background: var(--purple-400);
	transition: all .5s ease-out;
}

.btn-outline-warning {
	font-weight: 700;
	color: var(--orange-500);
	border: 1.5px solid var(--orange-500);
	transition: all .5s ease-out;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
	background-color: rgba(255, 255, 255, 0);
}

.btn-outline-warning:hover {
	font-weight: 700;
	color: var(--orange-400);
	border: 1.5px solid var(--orange-400);
	transition: all .5s ease-out;
}

.btn-no-design {
	color: #000000;
	transition: ease-in 0.3s;
}

.btn-no-design i {
	margin-left: 8px;
}

.btn-no-design:hover {
	color: var(--theme-color-2);
	transition: ease-in 0.3s;
}

.navbar.fixed-top {
	position: fixed;
	transition-duration: 0.5s;
	transition: all 0.35s ease;
}

.navbar.fixed-top .layer-header {
	background: rgba(255, 255, 255, 0.8) !important;
}

.navbar-dark .navbar-nav .nav-link {
	color: #000000;
	font-family: "Inter-Medium";
	font-weight: normal;
	height: 100%;
	position: relative;
	font-size: 14px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link {
	color: var(--theme-color-1);
}

.navbar-dark .navbar-brand {
	color: #fff;
	width: 150px;
}

.dropdown .nav-link:after {
	font-family: "Fontawesome";
	font-weight: 400;
	content: "";
	margin-left: 5px;
	font-size: 13px;
}

.navbar-nav .nav-item {
	margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--theme-color-1);
}

@media (min-width: 768px) {
	.animate {
		animation-duration: 0.3s;
		-webkit-animation-duration: 0.3s;
		animation-fill-mode: both;
		-webkit-animation-fill-mode: both;
	}
}

@keyframes slideIn {
	100% {
		transform: translateY(0rem);
		opacity: 1;
	}

	0% {
		transform: translateY(1rem);
		opacity: 0;
	}
}

@-webkit-keyframes slideIn {
	100% {
		-webkit-transform: translateY(0);
		-webkit-opacity: 1;
	}

	0% {
		-webkit-transform: translateY(1rem);
		-webkit-opacity: 0;
	}
}

.slideIn {
	-webkit-animation-name: slideIn;
	animation-name: slideIn;
}

.navbar {
	position: absolute;
	width: 100%;
	z-index: 1030;
	left: 0;
	transition-duration: 0.5s;
	transition: all 0.35s ease;
	background: transparent;
	height: 60px;
	margin-top: 25px;
}

.dropdown-menu li {
	margin: 5px 0px 5px 0px;
}

.dropdown-menu li a {
	color: var(--heading-color1);
	font-size: 14px;
	font-family: "Inter-Medium";
	font-weight: normal;
	transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu {
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
	border: none;
	background-color: #fff;
}

.dropdown-menu li a:hover {
	color: var(--theme-color-1);
	transition: ease-in-out 0.3s;
	margin-left: 5px;
	background-color: transparent;
}

.dropdown-menu {
	min-width: 12rem;
	transition: ease-in-out 0.3s;
}

.layer-header {
	display: flex;
	width: 100%;
	min-width: 100%;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.46);
	box-shadow: 5px 5px 10px 0px rgba(31, 0, 80, 0.05);
	padding: 5px;
}

.main-content-wrapper {
	width: 100%;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.error-page {
	height: calc(100vh - 1px);
	display: inline-block;
	width: 100%;
}

.error-page-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-page-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	text-align: left;
}

.error-page-content h1 {
	font-size: 90px;
	color: var(--theme-color-1);
}

.error-page-content h3 {
	font-size: 28px;
	font-family: "Inter-Bold";
	color: var(--theme-color-2);
	text-align: left;
}

.error-page-content p {
	font-size: 16px;
	margin: 20px 0px;
	color: var(--heading-color1);
	text-align: left;
}

.faq .accordion-item {
	margin-bottom: 0px;
	border: 1px solid var(--font-white);
	background-color: transparent;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	border-radius: 12px;
}

.faq .accordion-button {
	border: transparent;
	border-radius: 12px !important;
	background-color: transparent;
	padding: 1.5rem 1rem;
	color: var(--heading-color1);
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.5;
}

.faq .accordion-button span {
	margin-right: 10px;
}

.faq .accordion-body p span {
	margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after {
	background-image: none;
	content: "";
	font-family: Fontawesome;
	transform: none;
	color: var(--font-black);
}

.faq .accordion-button::after {
	background-image: none;
	content: "";
	font-family: Fontawesome;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--font-white);
}

.faq .accordion-button:focus {
	box-shadow: none;
}

.faq .accordion-body {
	padding: 1rem 1rem;
}

.faq .accordion-button:not(.collapsed) {
	box-shadow: none;
	color: var(--heading-color1);
	border-radius: 12px 12px 0px 0px !important;
	border: var(--border);
	border-bottom: transparent;
	background-color: var(--blue-100);
}

.faq .accordion-collapse.collapse.show .accordion-body {
	border-radius: 0px 0px 12px 12px !important;
	border: var(--indigo-200) !important;
	border-top: transparent !important;
	background-color: var(--blue-100);
	padding-top: 0;
}

#backTop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: var(--theme-color-2);
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
	width: 50px;
	height: 50px;
	line-height: 18px;
}

#backTop:hover {
	background-color: var(--theme-color-2);
}

.slick-slide {
	margin: 0 10px;
}

.slick-list {
	margin: 0 -10px;
}

.header-btns {
	display: flex;
	align-items: center;
}

.section-heading-wrapper {
	width: 100%;
	position: relative;
	display: inline-block;
	margin-bottom: 2.5rem;
}

.main-banner-container-clientmap {
	height: 100%;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: no-repeat center top;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../image/banner-bg.webp");
}

.footer-logo {
	width: 100%;
	margin-bottom: 2.5rem;
}

.footer-logo img {
	width: 150px;
}

.footer-item {
	color: rgb(2, 105, 200);
	font-size: 15px;
	font-weight: 800;
}

.footer-about {
	width: 100%;
	position: relative;
	display: inline-block;
}

.footer-contact-list {
	margin-bottom: 25px;
}

.footer-contact-list li {
	width: 100%;
	color: var(--font-color);
	margin-bottom: 15px;
}

.footer-social-list li {
	display: inline-block;
	margin-right: 5px;
}

.footer-social-list li a {
	width: 32px;
	height: 32px;
	background-color: var(--theme-color-1);
	border: 1px solid var(--theme-color-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--font-white);
	border-radius: 12px;
}

.footer-heading {
	font-size: 20px;
	color: var(--heading-color1);
	margin-bottom: 25px;
}

.footer-links {
	width: 100%;
	position: relative;
	display: inline-block;
}

.footer-link-list li {
	width: 100%;
	position: relative;
	margin-bottom: 15px;
	color: var(--font-color);
}

.footer-link-list li:last-child {
	margin-bottom: 0;
}

footer {
	width: 100%;
	position: relative;
	display: inline-block;
	padding-top: 2rem;
	background-color: var(--font-white);
}

.getstart-wrapper {
	border-radius: 12px;
	background: linear-gradient(135deg, #083b9b, #0878ff 65%, #00b9f4);
	width: 100%;
	height: 350px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}

.getstart-wrapper h3 {
	font-size: 46px;
	color: var(--font-white);
	margin-bottom: 20px;
}

.getstart-wrapper h4 {
	color: var(--font-white);
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 25px;
}

.features {
	margin-top: 4rem;
}

.background-img {
	position: absolute;
	top: -15rem;
	z-index: -1;
	left: -15rem;
}

.partners-heading {
	width: 100%;
	display: inline-block;
	position: relative;
	margin-bottom: 3rem;
}

.partners-heading h4 {
	color: rgba(104, 112, 140, 0.80);
	text-align: center;
	font-size: 18px;
	font-family: "Inter-SemiBold";
}

.section-small-hading {
	background-color: #F3F7FB;
	height: 35px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	position: relative;
	color: var(--heading-color1);
	width: fit-content;
	border-radius: 30px;
	margin: auto;
	margin-bottom: 15px;
}

.section-description {
	text-align: center;
}

.howitworks-content-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	z-index: 11;
}

.howitworks-content-wrapper h3 {
	font-size: 34px;
	margin-bottom: 10px;
}

.howitworks-content-wrapper p {
	margin-bottom: 20px;
}

.howitworks-content-wrapper ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: 5px;
}

.howitworks-content-wrapper ul li img {
	margin-right: 10px;
	position: absolute;
	margin-top: 5px;
	display: flex;
}

.howitworks-content-wrapper ul li p {
	margin-bottom: 0;
	margin-left: 25px;
}

.howitworks-image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.howitworks-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	transform: translate(-50%, -60%);
	width: 100%;
	height: 100%;
}

.howitworks-bg img {
	width: 92%;
}

.content-image {
	position: relative;
	z-index: 11;
}

.testi-card-wrapper {
	width: 100%;
	position: relative;
	display: inline-block;
	padding: 25px;
	border-radius: 12px;
}

.testi-card-wrapper p {
	color: #033BAC;
}

.testi-card-wrapper.voilet {
	background-color: #ECE5FF;
}

.testi-card-wrapper.yellow {
	background-color: #FBF7B8;
}

.testi-card-wrapper.green {
	background-color: #D9FFD8;
}

.testi-author {
	display: flex;
	align-items: center;
	margin-top: 25px;
}

.testi-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.testi-author p {
	color: #033BAC;
	font-family: "Inter-Medium";
	line-height: 20px;
}

.button-block {
	width: 100%;
	position: relative;
	display: flex;
	margin-top: 2.5rem;
}

.button-block.middle {
	justify-content: center;
}

.btn-norder-green {
	border: 1px solid var(--theme-color-1);
	color: var(--theme-color-1);
	transition: ease-in 0.3s;
}

.btn-norder-green:hover {
	border: 1px solid var(--theme-color-1);
	color: var(--font-white);
	background-color: var(--theme-color-1);
	transition: ease-in 0.3s;
}

.page-banner-container {
	width: 100%;
	position: relative;
	display: inline-block;
	background: linear-gradient(92deg, var(--theme-color-3) 5%, #069ce1 90%);
}

.page-banner-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 250px;
	flex-direction: column;
	padding-top: 5rem;
}

.page-banner-heading {
	text-align: center;
	width: 100%;
	font-size: 36px;
	color: var(--font-white);
	margin-bottom: 15px;
}

.page-banner-wrapper ul li {
	display: inline-block;
	color: var(--font-white);
	margin: 0px 5px;
}

.page-banner-wrapper ul li a {
	color: var(--font-white);
}

.text-left {
	text-align: left;
}

.benefits-list {
	width: 100%;
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
}

.benefits-list:last-child {
	margin-bottom: 0px;
}

.benefits-list-wrapper {
	width: 100%;
	position: relative;
	display: inline-block;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0px 5px 15px 10px rgb(221 221 221 / 50%);
}

.benefits-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--font-white);
	border-radius: 12px;
	font-size: 24px;
}

.benefits-icon.one {
	background-color: #3f3eed;
}

.benefits-icon.two {
	background-color: #39baf6;
}

.benefits-icon.three {
	background-color: #f7c239;
}

.benefits-icon.four {
	background-color: #ce5a56;
}

.benefits-list-wrapper h3 {
	font-size: 20px;
	margin: 15px 0px;
}

.benefits-left-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog-content .section-small-hading {
	margin: initial;
	margin-bottom: 15px;
}

.blog-content a h3 {
	font-size: 24px;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

::-webkit-scrollbar {
	height: 10px !important;
	width: 10px !important;
}

::-webkit-scrollbar-thumb {
	border-style: dashed;
	background-color: rgba(173, 181, 189, 1);
	padding: 5px;
	border-radius: 5px;
	border-color: #e2242400;
	border-width: 1.5px;
	background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #e5e7eb;
}

.name {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.title {
	font-size: 16px;
	color: #4b5563;
	margin-top: 6px;
}

.highlight {
	font-weight: 600;
}

@media (max-width: 640px) {
	.profile-header {
		flex-direction: column;
		text-align: center;
	}

	.info-section {
		grid-template-columns: 1fr;
	}

	.info-label {
		text-align: left;
		margin-top: 12px;
	}
}

:root {
	--blue-100: #d0e1fd;
	--blue-400: #609af8;
	--blue-500: #3b82f6;
	--green-400: #4cd07d;
	--green-500: #22c55e;
	--indigo-200: #bcbdf9;
	--orange-400: #fa8e42;
	--orange-500: #f97316;
	--purple-400: #b975f9;
	--purple-500: #a855f7;
	--red-400: #ff6259;
	--red-500: #ff3d32;
	--theme-color-1: #33B89F;
	--theme-color-2: #292962;
	--theme-color-3: #39BAF6;
	--body-bg: #ffffff;
	--font-color: #6B7989;
	--heading-color1: #292962;
	--font-white: #ffffff;
	--font-black: #293A51;
	--blue: #1268f6;
	--blue-2: #0054e6;
	--cyan: #19b9f5;
	--navy: #071b4b;
	--ink: #162649;
	--muted: #61708f;
	--line: rgba(36, 91, 175, .13);
	--shadow: 0 25px 70px rgba(31, 74, 143, .13);
	--shadow-sm: 0 13px 35px rgba(31, 74, 143, .10);
}

.video-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 16px;
	background: #000;
}

.video-wrapper iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--body-bg);
	padding: 0;
	font-size: 14px;
	line-height: 25px;
	font-weight: normal;
	margin: 0;
	overflow-x: hidden;
	color: var(--ink);
	background: #fff;
	font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-lang="zh"] .lang-en,
body[data-lang="en"] .lang-zh {
	display: none !important;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

.container {
	width: min(1240px, calc(100% - 20px));
	margin: 0 auto;
}

.section {
	position: relative;
	padding: 96px 0;
}

.section-soft {
	background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.section-heading {
	font-size: 36px;
	color: var(--heading-color1);
	margin-bottom: 20px;
	line-height: 55px;
	max-width: 980px;
	margin: 0 auto 54px;
	text-align: center;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 13px;
	border-radius: 999px;
	color: var(--blue);
	background: #edf4ff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.section-heading h2 {
	margin: 16px 0 14px;
	color: var(--navy);
	font-size: clamp(32px, 4.2vw, 52px);
	line-height: 1.12;
	letter-spacing: -.04em;
}

.section-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.8;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	transition: .25s ease;
}

.site-header.scrolled {
	border-color: var(--line);
	box-shadow: 0 10px 35px rgba(23, 59, 116, .07);
}

.header-inner {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex: 0 0 auto;
}

.brand img {
	width: 188px;
	height: auto;
	display: block;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
}

.desktop-nav a {
	position: relative;
	color: #273754;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.desktop-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -9px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue);
	transition: .2s ease;
}

.desktop-nav a:hover::after {
	right: 0;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.language-switch {
	display: flex;
	align-items: center;
	padding: 3px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
}

.language-switch button {
	min-width: 42px;
	height: 34px;
	padding: 0 11px;
	border: 0;
	border-radius: 999px;
	color: #687690;
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.language-switch button.active {
	color: #fff;
	background: var(--blue);
	box-shadow: 0 7px 18px rgba(18, 104, 246, .25);
}

.mobile-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}

.mobile-panel {
	display: none;
	padding: 0 20px 20px;
	background: #fff;
}

.mobile-panel.open {
	display: grid;
	gap: 10px;
}

.mobile-panel a {
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 98px;
	background: radial-gradient(circle at 12% 10%, rgba(25, 185, 245, .12), transparent 28%), radial-gradient(circle at 85% 12%, rgba(18, 104, 246, .13), transparent 30%), linear-gradient(145deg, #fff 0%, #f7fbff 48%, #f2f7ff 100%);
}

.hero::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 8px;
	width: 185px;
	height: 145px;
	opacity: .38;
	background-image: radial-gradient(circle, #90b9ff 3px, transparent 3.5px);
	background-size: 26px 26px;
}

.hero::after {
	content: "";
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: -235px;
	height: 440px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(34, 124, 255, .22), rgba(59, 151, 255, .08) 42%, transparent 70%);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .86fr 1.14fr;
	gap: 56px;
	align-items: center;
}

.hero-copy {
	padding-top: 12px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 14px;
	border: 1px solid rgba(18, 104, 246, .13);
	border-radius: 999px;
	color: var(--blue);
	background: rgba(255, 255, 255, .85);
	box-shadow: 0 10px 28px rgba(18, 104, 246, .08);
	font-size: 13px;
	font-weight: 800;
}

.hero-badge i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 5px rgba(18, 104, 246, .10);
}

.hero h1 {
	margin: 26px 0 14px;
	color: var(--navy);
	font-size: clamp(54px, 6vw, 82px);
	line-height: .98;
	letter-spacing: -.055em;
}

.hero h2 {
	margin: 0;
	color: var(--navy);
	font-size: clamp(30px, 3.2vw, 47px);
	line-height: 1.15;
	letter-spacing: -.035em;
}

.hero h2 strong {
	color: var(--blue);
}

.hero-lead {
	margin: 25px 0 0;
	color: #52617e;
	font-size: 18px;
	line-height: 1.78;
}

.capability-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 11px;
	margin: 30px 0 32px;
}

.capability-chip {
	min-width: 0;
	padding: 13px 8px;
	border: 1px solid rgba(18, 104, 246, .11);
	border-radius: 14px;
	background: rgba(255, 255, 255, .83);
	box-shadow: 0 8px 25px rgba(31, 74, 143, .06);
	text-align: center;
}

.capability-chip svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.capability-chip span {
	display: block;
	margin-top: 7px;
	color: #33415e;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid var(--blue);
	border-radius: 12px;
	color: var(--blue);
	background: #fff;
	font-weight: 850;
	text-decoration: none;
	transition: .2s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 13px 32px rgba(18, 104, 246, .18);
}

.btn.primary {
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--blue-2));
	box-shadow: 0 14px 32px rgba(18, 104, 246, .28);
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 25px;
	color: #78849a;
	font-size: 12px;
	font-weight: 700;
}

.trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.trust-row span::before {
	content: "✓";
	display: inline-flex;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--blue);
	background: #eaf2ff;
	font-size: 11px;
}

.product-stage {
	position: relative;
	min-width: 0;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .95);
	border-radius: 30px;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 35px 90px rgba(31, 74, 143, .23);
	backdrop-filter: blur(15px);
	transform: perspective(1500px) rotateY(-2deg);
}

.product-stage::before {
	content: "";
	position: absolute;
	inset: -18px;
	z-index: -1;
	border-radius: 38px;
	background: linear-gradient(135deg, rgba(18, 104, 246, .16), rgba(25, 185, 245, .09), rgba(18, 104, 246, .12));
	filter: blur(25px);
}

.product-toolbar {
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 6px 0 3px;
}

.window-dots {
	display: flex;
	gap: 7px;
}

.window-dots i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #d5dfef;
}

.toolbar-label {
	color: #8793a9;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}

.stage-image {
	position: relative;
	overflow: hidden;
	min-height: 510px;
	border: 1px solid rgba(37, 77, 142, .08);
	border-radius: 20px;
	background: linear-gradient(145deg, #fff, #eff5ff);
}

.stage-image img {
	width: 100%;
	height: 100%;
	min-height: 510px;
	display: block;
	object-fit: cover;
	object-position: center;
}

.stage-image img.lang-en {
	object-fit: contain;
	padding: 20px;
	background: #f5f8ff;
}

.float-panel {
	position: absolute;
	z-index: 4;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .95);
	border-radius: 16px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 17px 40px rgba(34, 68, 130, .16);
	backdrop-filter: blur(12px);
}

.float-panel.top {
	top: 118px;
	right: -22px;
	width: 172px;
}

.float-panel.bottom {
	left: -30px;
	bottom: 45px;
	width: 190px;
}

.float-panel strong {
	display: block;
	margin-bottom: 10px;
	color: #263654;
	font-size: 12px;
}

.float-input {
	height: 30px;
	margin-bottom: 8px;
	border: 1px solid #dbe5f5;
	border-radius: 8px;
	background: #f8fbff;
}

.float-controls {
	display: flex;
	gap: 7px;
}

.float-controls i {
	flex: 1;
	height: 28px;
	border-radius: 7px;
	background: #edf3ff;
}

.float-controls i:first-child {
	background: var(--blue);
}

.tool-dots {
	display: flex;
	gap: 8px;
}

.tool-dots i {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #ffcd38;
}

.tool-dots i:nth-child(2) {
	background: #2fc994;
}

.tool-dots i:nth-child(3) {
	background: #3476ff;
}

.tool-dots i:nth-child(4) {
	background: #9f5cf5;
}

.tool-line {
	height: 5px;
	margin-top: 13px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--blue) 60%, #e1e8f4 60%);
}

.brand-ribbon {
	position: absolute;
	z-index: 3;
	right: -100px;
	bottom: -85px;
	width: 410px;
	height: 125px;
	transform: rotate(-11deg);
}

.brand-ribbon::before,
.brand-ribbon::after {
	content: "";
	position: absolute;
	inset: 40px 0 auto;
	height: 42px;
	border-radius: 50%;
	border-top: 28px solid var(--blue);
	transform: rotate(8deg);
	filter: drop-shadow(0 15px 18px rgba(18, 104, 246, .25));
}

.brand-ribbon::after {
	top: 10px;
	left: 90px;
	border-color: var(--cyan);
	transform: rotate(-7deg);
	opacity: .92;
}

.platform-strip {
	position: relative;
	z-index: 4;
	margin-top: -37px;
	margin-bottom: 30px;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--shadow);
}

.platform-item {
	padding: 24px 24px;
	border-right: 1px solid var(--line);
}

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

.platform-item strong {
	display: block;
	margin-bottom: 7px;
	color: var(--navy);
	font-size: 17px;
}

.platform-item span {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}

.feature-list {
	display: grid;
	gap: 32px;
}

.feature-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: 44px;
	align-items: center;
	min-height: 480px;
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: linear-gradient(145deg, #fff 0%, #fbfdff 70%, #f4f8ff 100%);
	box-shadow: var(--shadow-sm);
}

.feature-card.image-left {
	grid-template-columns: 1.22fr .78fr;
	display: grid;
}

.feature-card::before {
	content: "";
	position: absolute;
	left: -50px;
	bottom: -110px;
	width: 480px;
	height: 210px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(18, 104, 246, .12), transparent 68%);
}

.feature-copy {
	position: relative;
	z-index: 2;
	padding-left: 12px;
}

.feature-index {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 11px;
	border-radius: 12px;
	color: #fff;
	background: var(--blue);
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(18, 104, 246, .24);
}

.feature-copy h3 {
	margin: 19px 0 10px;
	color: var(--navy);
	font-size: clamp(34px, 4vw, 55px);
	line-height: 1.02;
}

.feature-copy h3 em {
	display: block;
	color: var(--blue);
	font-style: normal;
}

.feature-subtitle {
	margin: 0 0 23px;
	color: #52617e;
	font-size: 18px;
	font-weight: 800;
}

.feature-copy p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 24px;
}

.feature-tags span {
	padding: 4px 12px;
	border: 1px solid rgba(18, 104, 246, .13);
	border-radius: 999px;
	color: #3860a0;
	background: #f2f7ff;
	font-size: 12px;
	font-weight: 800;
}

.feature-visual {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.visual-frame {
	position: relative;
	overflow: hidden;
	padding: 10px;
	border: 1px solid rgba(39, 79, 143, .10);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 65px rgba(31, 74, 143, .16);
}

.visual-frame img {
	width: 100%;
	aspect-ratio: 16 / 10;
	display: block;
	object-fit: contain;
	padding: 18px;
	background: #f5f8ff;
}

.visual-badge {
	position: absolute;
	left: -18px;
	bottom: 28px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 17px;
	border: 1px solid rgba(255, 255, 255, .95);
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--blue-2));
	box-shadow: 0 16px 35px rgba(18, 104, 246, .28);
	font-size: 13px;
	font-weight: 850;
}

.visual-badge svg {
	width: 19px;
	height: 19px;
}

.architecture-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.architecture-item {
	padding: 30px 26px;
	border-right: 1px solid var(--line);
}

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

.architecture-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 17px;
	border-radius: 14px;
	color: var(--blue);
	background: #edf4ff;
}

.architecture-icon svg {
	width: 25px;
	height: 25px;
}

.architecture-item h3 {
	margin: 0 0 9px;
	color: var(--navy);
	font-size: 18px;
}

.architecture-item p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.65;
}

.demo-card {
	display: grid;
	grid-template-columns: 1.28fr .72fr;
	align-items: center;
	gap: 42px;
	padding: 38px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: linear-gradient(145deg, #071f56, #0c3f9f);
	color: #fff;
	box-shadow: 0 30px 75px rgba(11, 47, 117, .30);
}

.demo-copy h2 {
	margin: 0 0 15px;
	color: #fff;
	font-size: clamp(31px, 4vw, 50px);
	line-height: 1.12;
	letter-spacing: -.04em;
}

.demo-copy p {
	margin: 0 0 25px;
	color: rgba(255, 255, 255, .76);
	font-size: 17px;
	line-height: 1.75;
}

.demo-video {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .23);
	border-radius: 18px;
	background: #081a40;
	box-shadow: 0 20px 55px rgba(0, 0, 0, .24);
}

.demo-video video {
	width: 100%;
	display: block;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.profile-container {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: -20px auto 0;
	padding: 20px;
	border: 1px solid #eceff5;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 12px 42px rgba(0, 0, 0, .07);
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 32px;
}

.profile-name {
	margin: 0;
	color: #1f2937;
	font-size: 28px;
	font-weight: 750;
}

.profile-title {
	margin-top: 6px;
	color: #4b5563;
	font-size: 16px;
}

.divider {
	height: 1px;
	margin: 30px 0;
	background: #e5e7eb;
}

.info-section {
	display: grid;
	grid-template-columns: 150px 1fr;
	row-gap: 14px;
	column-gap: 18px;
	color: #1f2937;
	font-size: 15px;
}

.info-label {
	color: #6b7280;
	text-align: right;
}

.info-value {
	color: #111827;
}

.info-value p {
	margin: 0 0 5px;
}

.info-value a {
	color: var(--blue);
	font-weight: 650;
}

.footer-col h4 {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 16px;
}

.footer-col a {
	display: block;
	margin: 10px 0;
	color: var(--muted);
	font-size: 13px;
	text-decoration: none;
}

.footer-bottom {
	width: 100%;
	position: relative;
	text-align: center;
	padding: 25px 0px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 45px;
	padding-top: 23px;
	border-top: 1px solid var(--line);
	color: #8792a8;
	font-size: 12px;
}

@media (max-width: 1080px) {
	.desktop-nav {
		gap: 18px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 820px;
		margin: 0 auto;
		text-align: center;
	}

	.hero-lead {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions,
	.trust-row {
		justify-content: center;
	}

	.product-stage {
		max-width: 840px;
		margin: 15px auto 0;
		transform: none;
	}

	.feature-card {
		grid-template-columns: .9fr 1.1fr;
	}

	.architecture-card {
		grid-template-columns: repeat(2, 1fr);
	}

	.architecture-item:nth-child(2) {
		border-right: 0;
	}

	.architecture-item:nth-child(-n/**/+2) {
		border-bottom: 1px solid var(--line);
	}

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

@media (max-width: 820px) {
	.desktop-nav {
		display: none;
	}

	.mobile-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.hero {
		min-height: auto;
		padding-top: 65px;
	}

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

	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.platform-item:nth-child(2) {
		border-right: 0;
	}

	.platform-item:nth-child(-n/**/+2) {
		border-bottom: 1px solid var(--line);
	}

	.feature-card {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 27px;
	}

	.feature-card.image-left {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 27px;
	}

	.feature-copy {
		padding-left: 0;
		text-align: center;
	}

	.feature-tags {
		justify-content: center;
	}

	.visual-badge {
		left: 18px;
	}

	.profile-header {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 580px) {
	.container {
		width: min(100% - 24px, 1240px);
	}

	.section {
		padding: 72px 0;
	}

	.site-header .brand img {
		width: 154px;
	}

	.header-inner {
		min-height: 68px;
	}

	.language-switch button {
		min-width: 38px;
		padding: 0 8px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero h2 {
		font-size: 30px;
	}

	.capability-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.capability-chip:last-child {
		grid-column: 1 / -1;
	}

	.product-stage {
		padding: 10px;
		border-radius: 22px;
	}

	.stage-image,
	.stage-image img {
		min-height: 330px;
	}

	.float-panel {
		display: none;
	}

	.brand-ribbon {
		width: 270px;
		right: -80px;
		bottom: -70px;
	}

	.platform-grid {
		grid-template-columns: 1fr;
	}

	.platform-item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

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

	.feature-card {
		padding: 21px 16px;
		border-radius: 23px;
		gap: 25px;
	}

	.feature-copy h3 {
		font-size: 38px;
	}

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

	.architecture-item {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

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

	.demo-card {
		padding: 24px 17px;
		border-radius: 22px;
	}

	.profile-container {
		padding: 26px 19px;
	}

	.info-section {
		grid-template-columns: 1fr;
		row-gap: 5px;
	}

	.info-label {
		margin-top: 12px;
		text-align: left;
		font-weight: 750;
	}

	.footer-bottom {
		flex-direction: column;
	}
}