:root {
	--wl-red: #c8161d;
	--wl-red-dark: #a81218;
	--wl-text: #111111;
	--wl-muted: #111111;
	--wl-bg: #f5f5f5;
	--wl-dark: #1a1a1a;
	--wl-container: 1200px;
	--wl-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--wl-font-text: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--wl-font-text);
	font-size: 18px;
	color: var(--wl-text);
	background: #fff;
	line-height: 1.6;
	width: 100%;
	max-width: 100%;
}

body.wl-nav-open {
	overflow: hidden;
}

html {
	width: 100%;
	max-width: 100%;
	scrollbar-gutter: stable;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.wl-container {
	width: min(100% - 40px, var(--wl-container));
	margin-inline: auto;
}

.wl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--wl-red);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.04em;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s;
}

.wl-btn:hover {
	background: var(--wl-red-dark);
}

.wl-btn--quote {
	padding: 12px 22px;
	border-radius: 4px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: normal;
}

.wl-btn--sm {
	padding: 12px 20px;
	font-size: 18px;
}

.wl-btn--submit {
	margin-top: 8px;
}

.wl-section {
	padding: 72px 0;
}

.wl-section-title {
	font-family: var(--wl-font);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.wl-section-title--center {
	text-align: center;
}

.wl-section-title--light {
	color: #fff;
}

.wl-section-sub {
	text-align: center;
	color: var(--wl-muted);
	margin: 0 0 40px;
	font-size: 18px;
}

/* Header */
.wl-header {
	position: sticky;
	top: 0;
	z-index: 320;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.wl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 12px 3%;
}

.wl-header__search-row {
	display: none;
}

.wl-header-search-bar {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 44px;
	border-radius: 999px;
	background: #f3f3f3;
	overflow: hidden;
}

.wl-header-search-bar input[type="search"] {
	flex: 1;
	min-width: 0;
	margin: 0;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 18px;
	line-height: 44px;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
}

.wl-header-search-bar input[type="search"]::-webkit-search-decoration,
.wl-header-search-bar input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.wl-nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: auto;
	min-width: 40px;
	height: auto;
	padding: 2px 4px;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
	color: #111;
}

.wl-nav-toggle__bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.wl-nav-toggle__bars span {
	display: block;
	height: 2px;
	width: 22px;
	background: currentColor;
	border-radius: 1px;
}

.wl-nav-toggle__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
}

.wl-logo {
	flex-shrink: 0;
}

.wl-logo img {
	display: block;
}

.wl-nav--desktop {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	padding-top: 10px;
	padding-left: 16px;
	padding-right: 16px;
}

.wl-nav__list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 8px 24px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: max-content;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (min-width: 1600px) {
	.wl-nav__list {
		font-size: 22px;
		gap: 8px 32px;
	}

	.wl-btn--quote {
		font-size: 22px;
	}
}

.wl-nav__list a {
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
	color: #111;
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.wl-nav__list a:hover {
	color: var(--wl-red);
}

.wl-nav__list a.is-active,
.wl-nav__list .current-menu-item > a,
.wl-nav__list li.is-active > a {
	color: var(--wl-red);
	font-weight: 700;
}

.wl-nav__list a.is-active::after,
.wl-nav__list .current-menu-item > a::after,
.wl-nav__list li.is-active > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 22px;
	height: 3px;
	background: var(--wl-red);
	border-radius: 2px;
}

.wl-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.wl-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.wl-icon-btn:hover,
.wl-icon-btn[aria-expanded="true"] {
	color: var(--wl-red);
}

.wl-search-modal {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 110px 20px 24px;
}

.wl-search-modal[hidden] {
	display: none;
}

.wl-search-modal__backdrop {
	position: absolute;
	inset: 0;
	background-color: #000;
	opacity: 0.8;
}

.wl-search-modal__panel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	width: min(560px, 100%);
}

.wl-search-modal__form {
	display: flex;
	align-items: stretch;
	flex: 1;
	min-width: 0;
	height: 48px;
	border: 1px solid #ddd;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.wl-search-modal__form input[type="search"] {
	flex: 1;
	min-width: 0;
	margin: 0;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 18px;
	line-height: 48px;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
}

.wl-search-modal__form input[type="search"]::-webkit-search-decoration,
.wl-search-modal__form input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.wl-search-modal__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-left: 1px solid #eee;
	background: #fff;
	color: #111;
	cursor: pointer;
}

.wl-search-modal__form button:hover {
	color: var(--wl-red);
}

.wl-search-modal__close {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.wl-search-modal__close:hover {
	color: var(--wl-red);
}

body.wl-search-open {
	overflow: hidden;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wl-lang {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 18px;
	font-weight: 600;
	padding: 0;
	border: 0;
	background: transparent;
}

.wl-gtranslate {
	line-height: 1;
}

.wl-gtranslate span,
.wl-gtranslate a,
a.glink span,
.gt_switcher-popup span {
	font-size: 18px !important;
}

.wl-gtranslate .gtranslate_wrapper,
.wl-gtranslate .gt_selector,
.wl-gtranslate select {
	max-width: 180px;
}

.wl-lang__caret {
	opacity: 0.5;
}

/* Mobile off-canvas nav */
.wl-mobile-nav {
	position: fixed;
	top: var(--wl-header-bar-height, 70px);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 300;
	pointer-events: none;
	visibility: hidden;
}

.wl-mobile-nav.is-open {
	pointer-events: auto;
	visibility: visible;
}

.wl-mobile-nav__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.wl-mobile-nav.is-open .wl-mobile-nav__overlay {
	opacity: 1;
}

.wl-mobile-nav__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 78%;
	max-width: 340px;
	height: 100%;
	background: #fff;
	box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
	transform: translateX(-100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
}

.wl-mobile-nav.is-open .wl-mobile-nav__panel {
	transform: translateX(0);
}

.wl-mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid #eee;
}

.wl-mobile-nav__title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--wl-red);
}

.wl-mobile-nav__close {
	border: none;
	background: none;
	font-size: 28px;
	line-height: 1;
	padding: 0 4px;
	cursor: pointer;
	color: #111;
}

.wl-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wl-mobile-nav__list a {
	display: block;
	padding: 16px 18px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-bottom: 1px solid #eee;
}

.wl-mobile-nav__list a:hover,
.wl-mobile-nav__list a:focus {
	color: var(--wl-red);
}

.wl-mobile-nav__list a.is-active,
.wl-mobile-nav__list .current-menu-item > a,
.wl-mobile-nav__list li.is-active > a {
	color: var(--wl-red);
	font-weight: 700;
}

/* Hero */
.wl-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #8a8a8a;
	overflow: hidden;
}

.wl-hero--slider {
	display: block;
	height: min(72vh, 680px);
	min-height: 420px;
}

.wl-hero__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.wl-hero__slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	color: inherit;
	text-decoration: none;
}

.wl-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.wl-hero__bg,
.wl-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #8a8a8a;
}

.wl-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.5));
	z-index: 1;
}

.wl-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 80px 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wl-hero__play {
	background: none;
	border: none;
	cursor: pointer;
	margin: 0 auto 24px;
	padding: 0;
}

.wl-hero__tag {
	font-family: var(--wl-font);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
}

.wl-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	line-height: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transform: translateY(-50%);
	transition: background 0.2s ease;
}

.wl-hero__arrow svg {
	display: block;
	flex-shrink: 0;
}

.wl-hero__arrow:hover {
	background: rgba(200, 22, 29, 0.9);
}

.wl-hero__arrow--prev {
	left: 20px;
}

.wl-hero__arrow--next {
	right: 20px;
}

.wl-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.wl-hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.wl-hero__dot.is-active {
	background: #fff;
	width: 22px;
	border-radius: 6px;
}

/* About */
.wl-about {
	background: #fff;
	overflow: hidden;
}

.wl-about__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 36px;
	align-items: stretch;
}

.wl-about__media {
	position: relative;
	min-width: 0;
	min-height: 100%;
}

.wl-about__visual {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.wl-about__copy-wrap {
	padding-right: 4%;
	padding-left: 8px;
	min-width: 0;
	display: flex;
}

.wl-about__copy {
	display: flex;
	flex-direction: column;
	flex: 1;
	max-width: none;
}

.wl-about__copy .wl-section-title {
	font-size: 28px;
	margin-bottom: 14px;
}

.wl-about__copy p {
	color: #111;
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 1.6;
}

.wl-about__intro {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wl-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.wl-checklist li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.4;
}

.wl-checklist__icon {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

/* check-4 图标右下角圆角（与设计稿橙色方框一致） */
.wl-checklist li:nth-child(4) .wl-checklist__icon {
	border-bottom-right-radius: 6px;
}

.wl-about__copy .wl-btn {
	align-self: flex-start;
}

.wl-about__contact {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 28px 40px;
	align-items: flex-start;
}

.wl-about__phone-row {
	display: grid;
	grid-template-columns: 32px 1fr;
	column-gap: 10px;
	align-items: center;
}

.wl-about__phone-icon-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.wl-about__phone-icon {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.wl-about__phone-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wl-about__phone-label {
	font-size: 18px;
	color: #111;
	line-height: 1.2;
}

.wl-about__phone-number {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}

/* Abilities — 优势2 layout */
.wl-abilities {
	background: #eef2f6;
}

.wl-abilities__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 24px;
}

.wl-ability-card {
	background: #fff;
	border: none;
	border-radius: 8px;
	padding: 0 0 36px;
	position: relative;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s;
}

.wl-ability-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wl-ability-card__img {
	display: block;
	height: 220px;
	margin: 0;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	background: #e8e8e8;
}

.wl-ability-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wl-ability-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 18px 16px 10px;
	line-height: 1.35;
}

.wl-ability-card p {
	font-size: 18px;
	color: var(--wl-muted);
	margin: 0 16px;
	line-height: 1.55;
}

.wl-ability-card__arrow {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 2;
	transform: translate(-50%, 50%);
	width: 48px;
	height: 48px;
	background: var(--wl-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(200, 22, 29, 0.35);
	text-decoration: none;
}

.wl-ability-card__arrow:hover {
	background: var(--wl-red-dark);
	color: #fff;
}

.wl-ability-card__arrow svg {
	display: block;
}

/* Products */
.wl-products {
	padding: 0;
}

.wl-section.wl-products {
	padding: 0;
}

.wl-products__dark {
	position: relative;
	min-height: 0;
	display: block;
	padding: 36px 0 40px;
	color: #fff;
	background: #1c1c1c;
	box-sizing: border-box;
	overflow: hidden;
}

.wl-products__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	pointer-events: none;
}

.wl-products__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
	display: block;
}

.wl-products__title {
	font-family: var(--wl-font);
	text-align: center;
	width: 100%;
	margin: 30px 0 40px;
	font-size: 26px;
	line-height: 1.2;
}

.wl-products__mosaic {
	display: grid;
	grid-template-columns: minmax(0, 469fr) minmax(0, 417fr) minmax(0, 417fr);
	grid-template-rows: auto auto;
	gap: 16px;
	align-items: stretch;
	width: 75%;
	max-width: 920px;
	margin: 0 auto;
	line-height: 0;
}

.wl-products__mosaic-aside {
	display: contents;
}

.wl-products__mosaic-main {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 100%;
	height: 100%;
	min-height: 100%;
	display: block;
	line-height: 0;
}

.wl-products__mosaic-main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.wl-products__mosaic-aside a {
	display: block;
	line-height: 0;
}

.wl-products__mosaic-aside img {
	width: 100%;
	height: auto;
	display: block;
}

.wl-products__row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 28px auto 0;
	width: 75%;
	max-width: 920px;
	align-items: stretch;
}

.wl-product-card {
	position: relative;
	display: block;
	line-height: 0;
	color: inherit;
	text-decoration: none;
}

.wl-product-card__img {
	width: 100%;
	height: auto;
	display: block;
}

.wl-product-card__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 11%;
	margin: 0;
	padding: 0 8px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #111;
	pointer-events: none;
}

/* Cases — carousel (dreamshore popular-products style) */
.wl-cases__carousel {
	max-width: min(100%, var(--wl-container));
	margin: 0 auto;
}

.wl-cases__viewport {
	position: relative;
	overflow: hidden;
	padding: 16px 40px 24px;
}

.wl-cases__track {
	display: flex;
	gap: 20px;
	width: max-content;
	overflow: visible;
	padding: 20px 0;
	will-change: transform;
	align-items: center;
}

.wl-cases__slide {
	flex: 0 0 var(--wl-cases-slide-width, 280px);
	min-width: var(--wl-cases-slide-width, 280px);
	transform: scale(1);
	opacity: 1;
	transition: transform 0.36s ease;
}

.wl-cases--resetting .wl-cases__slide {
	transition: none !important;
}

.wl-cases__slide.is-center {
	z-index: 2;
	transform: scale(1.14);
}

.wl-cases__slide.is-near {
	transform: scale(1);
}

.wl-cases__slide-link {
	position: relative;
	display: block;
	line-height: 0;
	text-decoration: none;
	color: inherit;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.wl-cases__slide.is-center .wl-cases__slide-link {
	border: 2px solid rgba(255, 255, 255, 0.92);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.06),
		0 10px 28px rgba(0, 0, 0, 0.18),
		0 20px 48px rgba(0, 0, 0, 0.22);
}

.wl-cases__slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.wl-cases__cta {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: none;
	padding: 8px 16px;
	background: rgba(40, 40, 40, 0.9);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 4px;
	line-height: 1.2;
	white-space: nowrap;
}

.wl-cases__slide.is-center .wl-cases__cta {
	display: inline-block;
}

.wl-cases__arrow {
	z-index: 4;
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.wl-cases__arrow:hover {
	background: rgba(0, 0, 0, 0.65);
}

.wl-cases__arrow--prev {
	left: 4px;
}

.wl-cases__arrow--next {
	right: 4px;
}

@media (max-width: 768px) {
	.wl-cases__viewport {
		padding: 12px 36px 20px;
	}

	.wl-cases__track {
		gap: 16px;
	}

	.wl-cases__cta {
		display: inline-block;
	}
}

/* CCTV */
.wl-cctv__top {
	position: relative;
	padding: 56px 0 48px;
	overflow: hidden;
}

.wl-section.wl-cctv {
	background: #d9e1eb;
	padding: 0;
}

.wl-cctv__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 32px 48px;
	align-items: center;
}

.wl-cctv__accent {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	pointer-events: none;
}

.wl-cctv__visual {
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wl-cctv__main,
.wl-cctv__player {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	height: auto;
	margin: 0 auto;
	border-radius: 6px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.wl-cctv__player {
	aspect-ratio: 16 / 9;
	background: #000;
	display: block;
	object-fit: contain;
}

.wl-cctv__main[hidden],
.wl-cctv__player[hidden] {
	display: none !important;
}

.wl-cctv__copy h2 {
	font-family: var(--wl-font);
	color: #111;
	font-size: 34px;
	font-weight: 700;
	margin: 16px 0 12px;
	line-height: 1.15;
}

.wl-cctv__copy p {
	color: #111;
	max-width: 520px;
	font-size: 18px;
	line-height: 1.65;
}

.wl-cctv__social {
	display: flex;
	gap: 16px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.wl-cctv__video {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: 140px;
	max-width: 140px;
	overflow: visible;
	line-height: normal;
	padding: 0;
	border: 0;
	background: transparent;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	font: inherit;
	transition: transform 0.2s ease;
}

.wl-cctv__video:hover {
	transform: translateY(-2px);
}

.wl-cctv__video-poster {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	transition: box-shadow 0.2s ease;
}

.wl-cctv__video:hover .wl-cctv__video-poster {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.wl-cctv__video-poster img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.wl-cctv__video-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: auto;
	min-height: auto;
	padding: 10px 0 0;
	overflow: visible;
	background: transparent;
	line-height: 1.2;
}

.wl-cctv__video-brand-icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	display: block;
	object-fit: contain;
}

.wl-cctv__video-brand-text {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	white-space: nowrap;
}

.wl-honors {
	padding: 50px 0;
	background: #d9e1eb;
}

.wl-honors .wl-section-title {
	margin-bottom: 28px;
}

.wl-honors__carousels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wl-honors__carousel {
	position: relative;
	padding: 0 40px;
}

.wl-honors__viewport {
	overflow: hidden;
}

.wl-honors__track {
	display: flex;
	gap: 22px;
	width: max-content;
	will-change: transform;
	transition: transform 360ms ease;
}

.wl-honors__cell {
	flex: 0 0 var(--wl-honors-cell-width, 120px);
	min-width: var(--wl-honors-cell-width, 120px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
}

.wl-honors__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wl-honors__zoom {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	line-height: 0;
}

.wl-honors__zoom:focus-visible {
	outline: 2px solid #3b9ae1;
	outline-offset: 2px;
}

.wl-honors__item img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.wl-honors__item--cert img {
	max-height: 172px;
	max-width: 108px;
}

.wl-honors__item--plaque img {
	max-height: 128px;
	max-width: 240px;
}

.wl-honors__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.wl-honors__arrow:hover {
	background: rgba(0, 0, 0, 0.65);
}

.wl-honors__arrow--prev {
	left: 0;
}

.wl-honors__arrow--next {
	right: 0;
}

.wl-honor-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.wl-honor-lightbox[hidden] {
	display: none !important;
}

.wl-honor-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
}

.wl-honor-lightbox__dialog {
	position: relative;
	z-index: 1;
	max-width: min(96vw, 1100px);
	max-height: 92vh;
	margin: 0;
}

.wl-honor-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: 92vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.wl-honor-lightbox__close {
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #111;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wl-honor-lightbox__close:hover {
	background: #f2f2f2;
}

/* News */
.wl-news .wl-section-title {
	text-transform: uppercase;
}

.wl-news__lead {
	color: var(--wl-muted);
	max-width: 820px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 18px;
	line-height: 1.6;
}

.wl-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 36px;
	align-items: start;
}

.wl-news-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	text-align: left;
}

.wl-news-card__media {
	display: block;
	line-height: 0;
	border-radius: 6px;
	overflow: hidden;
}

.wl-news-card__media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.wl-news-card__title {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
	margin: 14px 0 0;
	color: #111;
}

.wl-news-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wl-news-card__title a:hover {
	color: var(--wl-red);
}

.wl-news-card__meta {
	font-size: 18px;
	color: #111;
	margin: 10px 0 0;
	padding: 0;
}

.wl-news__more {
	margin: 40px 0 0;
	text-align: center;
}

.wl-news__more a {
	display: inline-block;
	padding: 10px 28px;
	border: 1px solid var(--wl-red);
	border-radius: 20px;
	color: var(--wl-red);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.wl-news__more a:hover {
	background: var(--wl-red);
	color: #fff;
}

/* Contact */
.wl-section.wl-contact {
	padding: 0;
}

.wl-contact {
	position: relative;
	padding: 72px 0 80px;
	color: #fff;
	min-height: 480px;
	overflow: hidden;
}

.wl-contact__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.wl-contact::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 18, 22, 0.52);
	z-index: 1;
	pointer-events: none;
}

.wl-contact__inner {
	position: relative;
	z-index: 2;
	max-width: 840px;
	margin: 0 auto;
}

.wl-contact .wl-section-title {
	margin: 36px 0;
	font-size: 30px;
	letter-spacing: 0.04em;
}

.wl-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.wl-field {
	display: block;
}

.wl-field--full {
	margin-bottom: 8px;
}

.wl-field input,
.wl-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid #e8e8e8;
	background: #fff;
	color: #111;
	font-family: inherit;
	font-size: 18px;
	border-radius: 2px;
}

.wl-field input::placeholder,
.wl-field textarea::placeholder {
	color: #111;
}

.wl-field textarea {
	min-height: 140px;
	resize: vertical;
}

.wl-form .wl-btn--submit {
	display: block;
	margin: 28px auto 0;
	min-width: 200px;
	padding: 14px 32px;
	font-size: 18px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 2px;
}

.wl-contact__success {
	margin: 20px 0 0;
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.wl-contact__feedback {
	margin: 20px 0 0;
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.wl-contact__feedback[hidden] {
	display: none;
}

.wl-contact__feedback.is-error {
	color: #ffb4b4;
}

.wl-btn--submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Footer */
.wl-footer {
	position: relative;
	background: #d9d9d9;
	color: #111;
	font-size: 18px;
	padding-top: 48px;
	overflow: hidden;
}

.wl-footer__bg {
	position: absolute;
	inset: 0;
	background: url("../images/footer-bg.png") center bottom / cover no-repeat;
	opacity: 0.35;
	pointer-events: none;
}

.wl-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.85fr 0.85fr 0.95fr 1.15fr;
	gap: 28px 32px;
	padding-bottom: 40px;
}

.wl-footer h3 {
	color: #111;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 14px;
}

.wl-footer a {
	color: #111;
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.wl-footer li {
	margin-bottom: 7px;
	line-height: 1.45;
}

.wl-footer a:hover {
	color: var(--wl-red);
}

.wl-footer__logo {
	display: block;
	max-width: 188px;
	height: auto;
}

.wl-footer__tagline {
	margin: 30px 0;
	line-height: 1.55;
	font-size: 18px;
	color: #111;
	max-width: 330px;
}

.wl-footer__social-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
}

.wl-footer__social-label {
	margin: 0;
	font-size: 18px;
	color: #111;
	flex: 0 0 auto;
}

.wl-footer__social {
	display: flex;
	gap: 10px;
	align-items: center;
	flex: 0 0 auto;
}

.wl-footer__social a {
	display: block;
	line-height: 0;
}

.wl-footer__social img {
	width: 36px;
	height: 36px;
	display: block;
	object-fit: contain;
}

.wl-footer__address {
	margin: 0 0 14px;
	line-height: 1.55;
	color: #111;
}

.wl-footer__contact-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 10px 0 0;
	line-height: 1.5;
	color: #111;
}

.wl-footer__contact-line img {
	flex: 0 0 auto;
	margin-top: 2px;
}

.wl-footer__phone-link {
	color: inherit;
	text-decoration: none;
}

.wl-footer__phone-link:hover {
	color: var(--wl-red);
}

.wl-subscribe {
	display: flex;
	gap: 0;
	margin: 0 0 4px;
	max-width: 100%;
}

.wl-subscribe input {
	flex: 1;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid #c8c8c8;
	background: #fff;
	color: #111;
	font-size: 18px;
	font-family: inherit;
}

.wl-subscribe input::placeholder {
	color: #111;
}

.wl-subscribe__feedback {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 1.4;
	color: #2e7d32;
}

.wl-subscribe__feedback[hidden] {
	display: none;
}

.wl-subscribe__feedback.is-error {
	color: #c62828;
}

.wl-footer .wl-btn--sm {
	flex: 0 0 auto;
	padding: 11px 18px;
	font-size: 18px;
	border-radius: 0;
}

.wl-footer__bar {
	position: relative;
	z-index: 1;
	border-top: 1px solid #b8b8b8;
	padding: 14px 0 18px;
	text-align: center;
	font-size: 18px;
	color: #111;
	background: transparent;
}

/* Float sidebar */
.wl-float {
	position: fixed;
	right: 12px;
	top: 40%;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	padding: 8px;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.wl-float a,
.wl-float__btn {
	display: block;
	line-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.wl-float img {
	width: 40px;
	height: 40px;
	display: block;
	object-fit: contain;
	border-radius: 50%;
}

.wl-float-modal {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.wl-float-modal[hidden] {
	display: none !important;
}

.wl-float-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.wl-float-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 360px;
	padding: 36px 28px 28px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
	text-align: center;
}

.wl-float-modal__close {
	position: absolute;
	top: 6px;
	right: 10px;
	border: 0;
	background: transparent;
	padding: 4px 8px;
	font-size: 28px;
	line-height: 1;
	color: #111;
	cursor: pointer;
}

.wl-float-modal__close:hover {
	color: #111;
}

.wl-float-modal__panel[hidden] {
	display: none !important;
}

.wl-float-modal__label {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
}

.wl-float-modal__value {
	margin: 0;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #111;
	text-decoration: none;
	word-break: break-all;
}

a.wl-float-modal__value:hover {
	color: var(--wl-red);
}

.wl-float-modal__qr {
	width: 220px;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

body.wl-float-modal-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.wl-container {
		width: 100%;
		max-width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.wl-header__inner {
		flex-wrap: nowrap;
		padding: 10px 3%;
	}

	.wl-logo {
		flex: 1;
		min-width: 0;
		text-align: left;
	}

	.wl-logo img {
		width: 150px;
		height: auto;
		margin: 0;
	}

	.wl-nav--desktop {
		display: none;
	}

	.wl-header__actions {
		flex-shrink: 0;
		gap: 4px;
	}

	.wl-btn--quote,
	.wl-icon-btn--search {
		display: none;
	}

	.wl-header__search-row {
		display: block;
		padding: 8px 3% 12px;
	}

	.wl-header__search-row .wl-container {
		width: 100%;
		max-width: none;
		padding-left: 0;
		padding-right: 0;
	}

	.wl-nav-toggle {
		display: flex;
	}

	.wl-about__layout {
		grid-template-columns: 1fr;
	}

	.wl-about__copy-wrap {
		padding-left: 16px;
		padding-right: 16px;
	}

	.wl-about__copy {
		max-width: none;
	}

	.wl-about__media {
		position: static;
		min-height: 0;
		padding-left: 0;
	}

	.wl-about__visual {
		position: static;
		height: auto;
		object-fit: cover;
	}
	.wl-cctv__grid {
		grid-template-columns: 1fr;
	}

	.wl-cctv__accent {
		width: 100%;
		object-position: center;
	}

	.wl-cctv__copy h2,
	.wl-cctv__video-brand-text {
		color: #fff;
	}

	.wl-cctv__copy p {
		color: rgba(255, 255, 255, 0.92);
	}

	.wl-honors__carousel {
		padding: 0 32px;
	}

	.wl-honors__item--cert img {
		max-height: 240px;
		max-width: min(72vw, 280px);
	}

	.wl-honors__item--plaque img {
		max-height: 200px;
		max-width: min(88vw, 340px);
	}

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

	.wl-products__dark {
		padding: 32px 0;
	}

	.wl-products__inner {
		display: block;
	}

	.wl-products__mosaic {
		width: 100%;
		max-width: none;
		gap: 12px;
	}

	.wl-products__row {
		width: 100%;
		max-width: none;
		margin-top: 20px;
	}

	.wl-products__row,
	.wl-news__grid {
		grid-template-columns: 1fr 1fr;
	}

	.wl-products__mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.wl-products__mosaic-main {
		grid-column: 1 / -1;
		grid-row: auto;
		height: auto;
		min-height: 0;
		max-height: 320px;
	}

	.wl-products__mosaic-main img {
		height: auto;
		max-height: 320px;
	}

	.wl-products__mosaic-aside {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-column: 1 / -1;
	}

	.wl-product-card__label {
		font-size: 18px;
		bottom: 10%;
	}

	.wl-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.wl-section {
		padding: 48px 0;
	}

	.wl-header__inner {
		gap: 12px;
	}

	.wl-logo img {
		width: 130px;
	}

	.wl-header__actions {
		gap: 8px;
	}

	.wl-btn--quote {
		padding: 10px 14px;
		font-size: 18px;
	}

	.wl-hero,
	.wl-hero--slider {
		min-height: 320px;
		height: 320px;
	}

	.wl-hero__content {
		padding: 48px 0;
	}

	.wl-hero__tag {
		font-size: 18px;
		letter-spacing: 0.08em;
	}

	.wl-hero__arrow {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}

	.wl-about__media {
		padding-bottom: 0;
		margin-bottom: 8px;
	}

	.wl-about__contact {
		flex-direction: column;
		gap: 16px;
	}

	.wl-abilities__grid,
	.wl-products__row,
	.wl-news__grid,
	.wl-form__row {
		grid-template-columns: 1fr;
	}

	.wl-products__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.wl-footer__grid {
		grid-template-columns: 1fr;
	}

	.wl-float {
		right: max(8px, env(safe-area-inset-right));
		padding: 6px;
		gap: 6px;
	}

	.wl-float img {
		width: 36px;
		height: 36px;
	}
}

.wl-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	min-width: 0;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
}

.wl-breadcrumb a {
	color: #111;
	text-decoration: none;
}

.wl-breadcrumb a:hover {
	color: var(--wl-red);
}

.wl-breadcrumb__sep {
	color: #111;
}

.wl-breadcrumb [aria-current="page"] {
	color: #111;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: min(100%, 52ch);
}
