html.scroll-smooth {
	scroll-behavior: smooth;
}

body.wangao-home-page {
	font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	background-color: #ffffff;
	color: var(--wangao-text, #1a1a1a);
}

body.wangao-home-page h1,
body.wangao-home-page h2,
body.wangao-home-page h3,
body.wangao-home-page .font-oswald {
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* Brand utilities (compatible with index_homepage.html) */
.text-wangao-green {
	color: var(--wangao-green, #009B4D);
}
.bg-wangao-green {
	background-color: var(--wangao-green, #009B4D);
}
.border-wangao-green {
	border-color: var(--wangao-green, #009B4D);
}
.text-wangao-blue {
	color: var(--wangao-blue, #0066CC);
}
.bg-wangao-blue {
	background-color: var(--wangao-blue, #0066CC);
}
.border-wangao-blue {
	border-color: var(--wangao-blue, #0066CC);
}

/* Main nav admin-bar offset */
#wangaoMainNav {
	top: 0;
	left: 0;
}
body.admin-bar #wangaoMainNav {
	top: 32px;
}
@media (max-width: 782px) {
	body.admin-bar #wangaoMainNav {
		top: 46px;
	}
}

/* Sticky subnav offset when admin bar is present */
body.admin-bar .wangao-subnav {
	top: calc(6rem + 32px);
}
@media (max-width: 782px) {
	body.admin-bar .wangao-subnav {
		top: calc(6rem + 46px);
	}
}

/* Hero parallax */
.hero-section {
	background-image: var(--wangao-hero-bg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 100vh;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.70));
	z-index: 1;
	pointer-events: none;
}

body.admin-bar .hero-section {
	height: calc(100vh - 32px);
	min-height: calc(100vh - 32px);
}
@media (max-width: 782px) {
	body.admin-bar .hero-section {
		height: calc(100vh - 46px);
		min-height: calc(100vh - 46px);
	}
}

.wangao-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.wangao-hero-title {
	color: var(--wangao-hero-title, #ffffff);
	font-size: var(--wangao-hero-title-mobile, 56px);
	line-height: 1.05;
}

.wangao-hero-lead {
	color: var(--wangao-hero-body, #e5e7eb);
}

@media (min-width: 768px) {
	.wangao-hero-title {
		font-size: var(--wangao-hero-title-desktop, 96px);
	}
}

.wangao-section-title {
	color: var(--wangao-section-title, #111827);
	font-size: var(--wangao-section-title-size, 48px);
}

.wangao-section-body {
	color: var(--wangao-section-body, #6B7280);
	font-size: var(--wangao-section-body-size, 18px);
}

/* Subnav active state */
.nav-link.active {
	color: var(--wangao-green, #009B4D);
	border-bottom: 3px solid var(--wangao-green, #009B4D);
}

/* Subnav tabs mode */
.wangao-subnav[data-mode="tabs"] {
	background: #f8fafc;
}

.wangao-subnav[data-mode="tabs"] .nav-link {
	border-radius: 999px;
	border: 1px solid transparent;
	padding: 8px 18px;
	font-size: 12px;
	letter-spacing: 0.08em;
	background: transparent;
	cursor: pointer;
}

.wangao-subnav[data-mode="tabs"] .nav-link.active {
	border-bottom: none;
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

.wangao-tab-hidden {
	display: none !important;
}

.wangao-tab-section {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 360ms ease, transform 360ms ease;
	will-change: opacity, transform;
}

.wangao-tab-section.is-active {
	opacity: 1;
	transform: translateY(0);
}

.wangao-tab-section.is-exiting {
	opacity: 0;
	transform: translateY(14px);
}

/* Image container */
.img-container {
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
}
.img-container img {
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-hover:hover .img-container img {
	transform: scale(1.05);
}

/* Module cards */
.module-card {
	transition: all 0.3s ease;
}
.module-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	border-color: var(--wangao-green, #009B4D);
}

/* Menu reset */
ul.wangao-top-menu > li {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
/* Anchor mega panels to the full nav container. */
.wangao-main-nav .container {
	position: relative;
}

ul.wangao-top-menu > li.wangao-has-mega {
	position: static;
}
ul.wangao-top-menu a {
	text-decoration: none;
}
ul.wangao-top-menu .current-menu-item > a,
ul.wangao-top-menu .current_page_item > a {
	color: var(--wangao-green, #009B4D);
	border-bottom: 2px solid var(--wangao-green, #009B4D);
	padding-bottom: 2px;
}

/* Dropdown submenu (hover/focus) */
ul.wangao-top-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -12px;
	min-width: 220px;
	padding: 10px;
	margin: 0;
	list-style: none;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	z-index: 999;
}
ul.wangao-top-menu li:hover > .sub-menu,
ul.wangao-top-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

ul.wangao-top-menu .sub-menu li {
	margin: 0;
	padding: 0;
}
ul.wangao-top-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	color: #0f172a;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: nowrap;
}
ul.wangao-top-menu .sub-menu a:hover,
ul.wangao-top-menu .sub-menu a:focus {
	background: rgba(0, 155, 77, 0.1);
	color: var(--wangao-green, #009B4D);
	transform: translateX(1px);
	outline: none;
}

/* Mega nav panels */
ul.wangao-top-menu > li.wangao-has-mega > .sub-menu {
	display: none;
}

ul.wangao-top-menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}

ul.wangao-top-menu > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 2px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0.55;
	transition: transform 160ms ease, opacity 160ms ease;
}

ul.wangao-top-menu > li.menu-item-has-children:hover > a::after,
ul.wangao-top-menu > li.menu-item-has-children:focus-within > a::after {
	transform: translateY(-50%) rotate(225deg);
	opacity: 0.85;
}

ul.wangao-top-menu .dropdown-menu-toggle,
ul.wangao-top-menu .ast-header-navigation-arrow,
ul.wangao-top-menu .icon-arrow {
	display: none !important;
}

.wangao-mega-panel {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	right: 0;
	width: 100%;
	transform: translateY(8px);
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
	padding: 26px;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	text-transform: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

ul.wangao-top-menu > li.wangao-has-mega:hover > .wangao-mega-panel,
ul.wangao-top-menu > li.wangao-has-mega:focus-within > .wangao-mega-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.wangao-mega-grid {
	display: grid;
	gap: 24px;
	align-items: start;
}

.wangao-mega-grid--solutions {
	grid-template-columns: minmax(200px, 0.9fr) minmax(260px, 1.1fr) minmax(220px, 1fr);
}

.wangao-mega-grid--series-1 {
	grid-template-columns: minmax(200px, 0.9fr) minmax(240px, 1.1fr) minmax(240px, 1fr);
}

.wangao-mega-grid--series-2 {
	grid-template-columns: minmax(200px, 0.9fr) repeat(2, minmax(220px, 1fr)) minmax(240px, 1.1fr);
}

.wangao-mega-grid > * + * {
	border-left: 1px solid rgba(15, 23, 42, 0.08);
	padding-left: 22px;
}

.wangao-mega-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #64748b;
}

.wangao-mega-title {
	display: inline-block;
	margin-top: 10px;
	font-size: 24px;
	font-weight: 700;
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #0f172a;
	text-decoration: none;
}

.wangao-mega-title:hover,
.wangao-mega-title:focus {
	color: var(--wangao-green, #009B4D);
}

.wangao-mega-desc {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.6;
	color: #64748b;
}

.wangao-mega-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(0, 155, 77, 0.3);
	color: var(--wangao-green, #009B4D);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease;
}

.wangao-mega-cta:hover,
.wangao-mega-cta:focus {
	background: rgba(0, 155, 77, 0.12);
	color: var(--wangao-green, #009B4D);
}

.wangao-mega-col-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 14px;
}

.wangao-mega-col-title a {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #0f172a;
	text-decoration: none;
}

.wangao-mega-col-title a:hover,
.wangao-mega-col-title a:focus {
	color: var(--wangao-blue, #0066CC);
}

.wangao-mega-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wangao-mega-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(160px, 1fr));
	gap: 10px 18px;
}

.wangao-mega-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.wangao-mega-item:hover,
.wangao-mega-item:focus {
	background: rgba(0, 155, 77, 0.12);
	color: var(--wangao-green, #009B4D);
	transform: translateX(1px);
}

.wangao-mega-item-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--wangao-green, #009B4D);
	flex: 0 0 auto;
}

.wangao-mega-item-text {
	flex: 1 1 auto;
}

.wangao-mega-item-meta {
	margin-left: auto;
	font-size: 11px;
	font-weight: 700;
	color: #94a3b8;
	flex: 0 0 auto;
	white-space: nowrap;
}

.wangao-mega-empty {
	font-size: 12px;
	color: #94a3b8;
}

.wangao-mega-media {
	border-radius: 18px;
	overflow: hidden;
	min-height: 210px;
	background: #0f172a;
	position: relative;
}

.wangao-mega-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wangao-mega-media-fallback {
	min-height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 155, 77, 0.85), rgba(0, 102, 204, 0.75));
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-size: 12px;
}

@media (max-width: 1024px) {
	.wangao-mega-panel {
		width: 100%;
	}

	.wangao-mega-grid--series-2,
	.wangao-mega-grid--series-1,
	.wangao-mega-grid--solutions {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}

	.wangao-mega-grid > * + * {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(15, 23, 42, 0.08);
		padding-top: 18px;
	}
}

@media (max-width: 768px) {
	.wangao-mega-panel {
		display: none;
	}
}

/* Hide scrollbars for overflow containers */
.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

/* Tailwind CDN doesn't always include line-clamp plugin */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Minimal "prose" fallback if typography plugin isn't available */
.prose {
	line-height: 1.75;
	color: #374151;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
	color: #111827;
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 2rem 0 1rem;
}
.prose p {
	margin: 0 0 1.25rem;
}
.prose a {
	color: var(--wangao-blue, #0066cc);
	font-weight: 700;
	text-decoration: none;
}
.prose a:hover {
	text-decoration: underline;
}
.prose ul,
.prose ol {
	margin: 0 0 1.25rem 1.25rem;
}
.prose li {
	margin: 0.25rem 0;
}
.prose blockquote {
	border-left: 4px solid var(--wangao-green, #009b4d);
	padding-left: 1rem;
	margin: 1.5rem 0;
	color: #4b5563;
}

.prose.prose-invert {
	color: rgba(229, 231, 235, 0.92);
}
.prose.prose-invert h1,
.prose.prose-invert h2,
.prose.prose-invert h3,
.prose.prose-invert h4 {
	color: #ffffff;
}
.prose.prose-invert a {
	color: #93c5fd;
}
.prose.prose-invert blockquote {
	color: rgba(229, 231, 235, 0.88);
	border-left-color: rgba(0, 155, 77, 0.85);
}

/* Simple entrance animation (missing from original HTML) */
@keyframes wangaoFadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 16px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.fade-in-up {
	animation: wangaoFadeInUp 700ms ease-out both;
}

/* Subtle nav "scroll" state */
#wangaoMainNav.is-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Product showcase */
.wangao-product-showcase {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.wangao-product-card {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	padding: 18px;
	transform-style: preserve-3d;
	transform: perspective(1000px) translateY(var(--float-y, 0px))
		rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
	transition: transform 240ms ease, box-shadow 240ms ease;
}
.wangao-product-card.is-visible {
	animation: wangaoFadeInUp 700ms ease-out both;
}
.wangao-product-card:hover {
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}
.wangao-product-media {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(0, 155, 77, 0.4));
	height: 180px;
}
.wangao-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}
.wangao-product-card:hover .wangao-product-image {
	transform: scale(1.08);
}
.wangao-product-image-placeholder {
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.15);
}
.wangao-product-glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(
		circle at calc(50% + var(--glow-x, 0%)) calc(50% + var(--glow-y, 0%)),
		rgba(0, 155, 77, 0.35),
		transparent 55%
	);
	opacity: 0;
	transition: opacity 240ms ease;
}
.wangao-product-card:hover .wangao-product-glow {
	opacity: 1;
}
.wangao-product-info {
	padding: 16px 6px 6px;
}
.wangao-product-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wangao-blue, #0066cc);
}
.wangao-product-title {
	margin: 10px 0 6px;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	text-transform: uppercase;
}
.wangao-product-model {
	font-size: 12px;
	color: #64748b;
	margin: 0 0 10px;
}
.wangao-product-cta {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--wangao-green, #009b4d);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.wangao-product-scroll-hint {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ROI modal */
.wangao-roi-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: max(12px, env(safe-area-inset-top)) 0 max(12px, env(safe-area-inset-bottom));
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease;
}
.wangao-roi-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}
.wangao-roi-modal__backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
	backdrop-filter: none;
}
.wangao-roi-modal__panel {
	position: relative;
	z-index: 2;
	width: auto;
	max-width: 92vw;
	max-height: calc(100vh - 24px);
	overflow: visible;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	margin: 0 auto;
}
.wangao-roi-modal__widget-shell {
	position: relative;
	display: inline-block;
	max-width: 92vw;
}
.wangao-roi-modal__widget-shell .roi-header {
	position: relative;
	padding-right: 64px;
}
.wangao-roi-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	border: none;
	background: rgba(15, 23, 42, 0.8);
	color: #ffffff;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	cursor: pointer;
	z-index: 20;
	box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.wangao-roi-modal__widget-shell .roi-widget {
	margin: 0;
	position: relative;
}
body.wangao-modal-open {
	overflow: hidden;
}

/* Company intro */
.wangao-company-intro {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	color: #ffffff;
}
.wangao-company-video {
	position: absolute;
	inset: 0;
}
.wangao-company-video__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wangao-company-video__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(0, 0, 0, 0.6));
}
.wangao-company-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 32px;
	align-items: center;
}
.wangao-company-intro__actions {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.wangao-company-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease;
}
.wangao-company-cta:hover {
	background: #ffffff;
	color: #0f172a;
}
.wangao-company-vr {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(0, 155, 77, 0.6);
	background: rgba(0, 155, 77, 0.18);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 180ms ease, transform 180ms ease;
}
.wangao-company-vr i {
	font-size: 14px;
}
.wangao-company-vr small {
	font-size: 10px;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.75);
}
.wangao-company-vr:hover {
	transform: translateY(-1px);
	background: rgba(0, 155, 77, 0.3);
}
.wangao-company-ali-badge {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.wangao-company-ali-badge i {
	font-size: 14px;
	color: #38bdf8;
}
.wangao-company-map {
	position: relative;
	background: rgba(15, 23, 42, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	padding: 14px;
	backdrop-filter: blur(3px);
}
.wangao-company-map__media {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
}
.wangao-company-map__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	opacity: 0.92;
}
.wangao-company-map__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.26), transparent 42%), radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.24), transparent 46%), rgba(2, 6, 23, 0.68);
	color: rgba(226, 232, 240, 0.92);
}
.wangao-company-map__placeholder i {
	font-size: 40px;
	color: #22c55e;
}
.wangao-company-map__placeholder span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.wangao-company-map__caption {
	margin: 12px 4px 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(226, 232, 240, 0.88);
}
.wangao-company-stats {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px;
}
.wangao-company-stats > div {
	padding: 18px 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
}
.wangao-company-stat-value {
	font-size: 32px;
	font-weight: 800;
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	color: #ffffff;
}
.wangao-company-stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(229, 231, 235, 0.8);
}

@media (max-width: 1024px) {
	.wangao-company-intro__grid {
		grid-template-columns: 1fr;
	}
}
