﻿@layer utilities {
	.text-gradient {
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.bg-glass {
		background: rgba(17, 24, 39, 0.92);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
	.glow {
		box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	}
	.glow-text {
		text-shadow: none;
	}
}

.animate-scroll-logo {
	animation: scroll-logo 30s linear infinite;
}

.animate-scroll-logo:hover {
	animation-play-state: paused;
}

@keyframes scroll-logo {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
.logo-item {
	transition: all 0.3s ease;
	filter: grayscale(100%);
	opacity: 0.7;
}
.logo-item:hover {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.05);
}

.nav-links {
	align-items: center;
	gap: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.56);
	padding: 0.35rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.nav-links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.55rem 0.85rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0;
	text-decoration: none;
	transition: color 0.25s ease, background 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0.32rem;
	width: 46%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(96, 165, 250, 0.86), rgba(37, 99, 235, 0));
	opacity: 0;
	transform: translateX(-50%) scaleX(0.35);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	text-shadow: none;
	transform: translateY(-1px);
	outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
	box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.22);
}



.hero-visual-breath {
	isolation: isolate;
}

.hero-visual-breath::before,
.hero-visual-breath::after {
	content: "";
	position: absolute;
	inset: -22px;
	z-index: 0;
	border-radius: 2rem;
	pointer-events: none;
}

.hero-visual-breath::before {
	background:
		radial-gradient(circle at 24% 20%, rgba(37, 99, 235, 0.16), transparent 44%),
		radial-gradient(circle at 78% 76%, rgba(15, 118, 110, 0.12), transparent 42%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(17, 24, 39, 0.18));
	filter: blur(18px);
	opacity: 0.7;
}

.hero-visual-breath::after {
	inset: -8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(15, 118, 110, 0.05));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
	opacity: 0.32;
	filter: blur(2px);
}

.hero-visual-breath img {
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.contact-phone-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transform: translateY(0);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(135deg, #2563eb, #1e40af);
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.contact-phone-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 45%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-20deg);
	transition: left 0.55s ease;
}

.contact-phone-btn::after {
	display: none;
}

.contact-phone-btn i,
.contact-phone-btn span {
	position: relative;
	z-index: 1;
}

.contact-phone-btn:hover,
.contact-phone-btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.contact-phone-btn:hover::before,
.contact-phone-btn:focus-visible::before {
	left: 130%;
}

.contact-phone-btn .fa-phone-square {
	position: relative;
	transition: transform 0.25s ease;
}

.contact-phone-btn:hover .fa-phone-square,
.contact-phone-btn:focus-visible .fa-phone-square {
	transform: translateY(-1px);
}

.lead-modal-backdrop {
	background:
		radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.14), transparent 34%),
		rgba(17, 24, 39, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.lead-modal-panel {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.94));
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	animation: lead-modal-in 0.28s ease-out;
}

.lead-modal-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.42), rgba(255, 255, 255, 0.08));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.lead-modal-panel::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
	pointer-events: none;
}

.lead-modal-close {
	position: absolute;
	right: 1.1rem;
	top: 1.1rem;
	z-index: 2;
	width: 2.65rem;
	height: 2.65rem;
	border: 1px solid rgba(37, 99, 235, 0.28);
	border-radius: 999px;
	background: rgba(219, 234, 254, 0.88);
	color: #1d4ed8;
	font-size: 1.75rem;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
	transition: all 0.2s ease;
}

.lead-modal-close:hover,
.lead-modal-close:focus-visible {
	color: #fff;
	background: #2563eb;
	border-color: #2563eb;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
	transform: rotate(90deg);
}

.lead-modal-header {
	position: relative;
	z-index: 1;
	padding: 2rem 2rem 1.25rem;
}

.lead-modal-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.75rem;
	border: 1px solid rgba(147, 197, 253, 0.28);
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.12);
	padding: 0.25rem 0.75rem;
	color: #bfdbfe;
	font-size: 0.8rem;
	font-weight: 700;
}

.lead-modal-header h3 {
	margin: 0;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0;
}

.lead-modal-header p {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.95rem;
	line-height: 1.7;
}

.lead-form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1rem;
	padding: 0 2rem 2rem;
}

.lead-field label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 700;
}

.lead-field label span {
	color: #fb7185;
}

.lead-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.58);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-input-wrap:focus-within {
	border-color: rgba(96, 165, 250, 0.76);
	background: rgba(15, 23, 42, 0.82);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.lead-input-wrap i {
	width: 3rem;
	color: rgba(147, 197, 253, 0.82);
	text-align: center;
	font-size: 1.05rem;
}

.lead-input-wrap input,
.lead-input-wrap textarea {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 0.95rem 1rem 0.95rem 0;
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.5;
	outline: none;
}

.lead-input-wrap input::placeholder,
.lead-input-wrap textarea::placeholder {
	color: rgba(255, 255, 255, 0.34);
}

.lead-textarea-wrap {
	align-items: flex-start;
}

.lead-textarea-wrap i {
	padding-top: 1rem;
}

.lead-input-wrap textarea {
	min-height: 7rem;
	resize: vertical;
}

.lead-form-message {
	min-height: 1.25rem;
	font-size: 0.9rem;
}

.lead-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, #2563eb, #1e40af);
	padding: 1rem 1.25rem;
	color: #fff;
	font-weight: 800;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lead-submit-btn:hover,
.lead-submit-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.32);
	filter: brightness(1.05);
}

.lead-submit-btn:disabled {
	cursor: not-allowed;
	opacity: 0.72;
	transform: none;
}

.lead-submit-btn i {
	transition: transform 0.2s ease;
}

.lead-submit-btn:hover i,
.lead-submit-btn:focus-visible i {
	transform: translateX(4px);
}

@keyframes lead-modal-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 640px) {
	.lead-modal-header {
		padding: 1.6rem 1.25rem 1rem;
	}

	.lead-form {
		padding: 0 1.25rem 1.4rem;
	}

	.lead-modal-header h3 {
		font-size: 1.55rem;
	}
}

/* Light blue premium business theme overrides */
body {
	background:
		linear-gradient(180deg, #f6fbff 0%, #eaf4ff 42%, #f8fbff 100%) !important;
	color: #172033 !important;
}

#navbar {
	color: #172033;
}

#navbar.bg-glass,
.bg-glass {
	background: rgba(255, 255, 255, 0.86);
	border-bottom: 1px solid rgba(148, 163, 184, 0.18);
	box-shadow: 0 12px 36px rgba(30, 64, 175, 0.08);
}

.nav-links {
	border-color: rgba(96, 165, 250, 0.2);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 28px rgba(30, 64, 175, 0.07);
}

.nav-links a {
	color: rgba(30, 41, 59, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
	color: #1d4ed8;
	background: rgba(219, 234, 254, 0.72);
}

.nav-links a.active {
	box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.26);
}

section {
	color: #172033;
}

section.bg-gradient-to-b,
.bg-dark,
.bg-dark-light {
	background: transparent !important;
}

h1,
h2,
h3,
h4,
.text-white {
	color: #102033 !important;
}

.text-gray-300,
.text-gray-400,
.text-gray-500,
.text-white\/80,
.text-gray-400\/80 {
	color: #64748b !important;
}

.text-gradient {
	background-image: linear-gradient(90deg, #1e3a8a, #2563eb, #0f766e) !important;
}

.glow-text {
	text-shadow: none !important;
}

.glow {
	box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12), 0 12px 32px rgba(15, 23, 42, 0.08) !important;
}

.hero-visual-breath::before {
	background:
		radial-gradient(circle at 22% 18%, rgba(96, 165, 250, 0.22), transparent 45%),
		radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.12), transparent 42%);
	filter: blur(20px);
}

.hero-visual-breath::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 48%, rgba(191, 219, 254, 0.2));
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.12);
}

.hero-visual-breath img,
img.rounded-xl,
img.rounded-2xl {
	border: 1px solid rgba(255, 255, 255, 0.74);
	box-shadow: 0 22px 56px rgba(37, 99, 235, 0.12), 0 10px 24px rgba(15, 23, 42, 0.08) !important;
}

.contact-phone-btn,
.lead-submit-btn,
.bg-gradient-to-r.from-blue-600.to-blue-800,
.bg-gradient-to-r.from-blue-600.to-blue-800:hover {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22) !important;
}

.contact-phone-btn,
.contact-phone-btn *,
.lead-submit-btn,
.lead-submit-btn *,
.bg-gradient-to-r.from-blue-600.to-blue-800,
.bg-gradient-to-r.from-blue-600.to-blue-800 * {
	color: #fff !important;
}

button.border,
.border-white\/20 {
	border-color: rgba(37, 99, 235, 0.18) !important;
	background: rgba(255, 255, 255, 0.58);
	color: #1d4ed8 !important;
}

.reveal,
.rounded-2xl,
.rounded-xl {
	border-color: rgba(147, 197, 253, 0.18);
}

.bg-gradient-to-br.from-slate-700\/30.to-blue-900\/20 {
	background: rgba(255, 255, 255, 0.72) !important;
	border-color: rgba(147, 197, 253, 0.22) !important;
	box-shadow: 0 18px 48px rgba(37, 99, 235, 0.1);
}

.knowledge-ai-icon {
	background: rgba(219, 234, 254, 0.76) !important;
	border: 1px solid rgba(147, 197, 253, 0.32);
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 24px rgba(37, 99, 235, 0.08);
}

.knowledge-ai-icon .fa-book {
	color: #2563eb !important;
	text-shadow: none;
}

.relative.bg-gradient-to-r.from-blue-600.to-blue-800 {
	background:
		linear-gradient(135deg, rgba(219, 234, 254, 0.92), rgba(191, 219, 254, 0.84)) !important;
	border: 1px solid rgba(96, 165, 250, 0.22);
	box-shadow: 0 22px 60px rgba(37, 99, 235, 0.12);
}

.relative.bg-gradient-to-r.from-blue-600.to-blue-800 button {
	background: #2563eb !important;
	color: #fff !important;
}

.cta-section {
	background:
		linear-gradient(180deg, rgba(239, 248, 255, 0), rgba(219, 234, 254, 0.68) 46%, rgba(239, 248, 255, 0));
}

.cta-panel {
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), transparent 34%),
		linear-gradient(135deg, #dbeafe 0%, #bfdbfe 48%, #e0f2fe 100%) !important;
	border: 1px solid rgba(96, 165, 250, 0.34) !important;
	box-shadow: 0 26px 70px rgba(37, 99, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.cta-panel h2 {
	background-image: linear-gradient(90deg, #1e3a8a, #2563eb, #0f766e) !important;
}

.cta-panel p {
	background-image: linear-gradient(90deg, #1e3a8a, #2563eb, #0f766e) !important;
}

.cta-panel button {
	background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
	color: #fff !important;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.trusted-clients-section {
	background:
		linear-gradient(180deg, rgba(239, 248, 255, 0.98), rgba(219, 234, 254, 0.82)) !important;
	border-top: 1px solid rgba(147, 197, 253, 0.26) !important;
	border-bottom: 1px solid rgba(147, 197, 253, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.trusted-clients-section h3 {
	color: #1e3a8a !important;
	font-weight: 700;
}

.trusted-clients-section .relative {
	padding: 0.5rem 0;
}

.trusted-clients-section .logo-item {
	min-width: 11rem;
	height: 4.5rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 14px;
	background:
		linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 54%, #0f766e 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
	padding: 1rem 1.35rem;
	box-shadow: 0 18px 42px rgba(30, 64, 175, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	filter: none;
	opacity: 1;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.trusted-clients-section .logo-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 42%),
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 30%);
	pointer-events: none;
}

.trusted-clients-section .logo-item img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 5px 12px rgba(15, 23, 42, 0.28));
}

.trusted-clients-section .logo-item:hover {
	border-color: rgba(255, 255, 255, 0.42);
	box-shadow: 0 22px 48px rgba(30, 64, 175, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.animate-scroll-logo {
	filter: none;
}

.logo-item {
	filter: grayscale(20%);
	opacity: 0.72;
}

footer {
	background: rgba(255, 255, 255, 0.66) !important;
	border-top-color: rgba(147, 197, 253, 0.22) !important;
	color: #64748b;
}

#backToTop {
	background: #2563eb !important;
	color: #fff !important;
}

#dragWx > .relative > .w-12 {
	border: 1px solid rgba(255, 255, 255, 0.68);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(219, 234, 254, 0.9)),
		linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.1)) !important;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#dragWx > .relative:hover > .w-12 {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

#dragWx .fa-wechat {
	color: #1d4ed8 !important;
	text-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}

#dragWx .absolute.right-full {
	border: 1px solid rgba(147, 197, 253, 0.34) !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: 0 20px 48px rgba(37, 99, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

#dragWx .absolute.right-full > div {
	background:
		linear-gradient(145deg, rgba(239, 248, 255, 0.96), rgba(219, 234, 254, 0.86)) !important;
	border: 1px solid rgba(147, 197, 253, 0.24);
}

#dragWx img {
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.lead-modal-backdrop {
	background: rgba(219, 234, 254, 0.64);
}

.lead-modal-panel {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(147, 197, 253, 0.26);
	color: #172033;
}

.lead-modal-header h3,
.lead-field label,
.lead-input-wrap input,
.lead-input-wrap textarea {
	color: #172033;
}

.lead-modal-header p,
.lead-form-message {
	color: #64748b;
}

.lead-input-wrap {
	background: rgba(241, 245, 249, 0.9);
	border-color: rgba(147, 197, 253, 0.22);
}

.lead-input-wrap:focus-within {
	background: #fff;
	border-color: rgba(37, 99, 235, 0.55);
}


