/* 导航、页脚、内页 Banner */

/* ── Header / Nav ── */
#nav {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 100px;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 64px;
	transition: box-shadow .3s;
}

#nav.scrolled {
	position: fixed;
	box-shadow: 0 2px 20px rgba(13, 43, 85, .08);
}

body.nav-fixed {
	padding-top: 100px;
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.nav-logo img,
.nav-logo-img,
.custom-logo {
	height: 50px;
	width: auto;
	display: block;
}

.nav-logo-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 2px;
	color: var(--navy);
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	display: block;
	padding: 0 20px;
	height: 68px;
	line-height: 68px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	letter-spacing: .8px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	transition: color .2s;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transition: transform .25s;
	pointer-events: none;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current_page_item > a {
	color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current-menu-ancestor > a::after,
.nav-links .current_page_item > a::after {
	transform: scaleX(1);
}

/* 下拉子菜单（桌面悬停 / 移动折叠） */
.nav-links .menu-item-has-children {
	position: relative;
}

.nav-links .menu-item-has-children > a {
	padding-right: 28px;
}

.nav-links .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: .55;
	pointer-events: none;
	transition: transform .2s;
}

.nav-links .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links .sub-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 1101px) {
	.nav-links .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		background: var(--white);
		border: 1px solid var(--border);
		box-shadow: 0 8px 24px rgba(13, 43, 85, .1);
		padding: 8px 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity .2s, visibility .2s, transform .2s;
		z-index: 220;
	}

	.nav-links .menu-item-has-children:hover > .sub-menu,
	.nav-links .menu-item-has-children:focus-within > .sub-menu,
	.nav-links .menu-item-has-children.submenu-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-links .sub-menu .sub-menu {
		top: 0;
		left: 100%;
	}

	.nav-links .sub-menu a {
		height: auto;
		line-height: 1.4;
		padding: 10px 20px;
		font-size: 13px;
		white-space: nowrap;
	}

	.nav-links .sub-menu a::after {
		display: none;
	}

	.nav-links .sub-menu .menu-item-has-children > a::before {
		transform: rotate(-45deg);
		margin-top: -2px;
	}

	/* 鼠标设备隐藏展开按钮；触屏宽屏保留按钮供点击展开 */
	@media (hover: hover) and (pointer: fine) {
		.nav-submenu-toggle {
			display: none;
		}
	}

	@media (hover: none) {
		.nav-links .menu-item-has-children > a {
			padding-right: 36px;
		}

		.nav-submenu-toggle {
			display: flex;
			align-items: center;
			justify-content: center;
			position: absolute;
			top: 0;
			right: 0;
			width: 32px;
			height: 68px;
			padding: 0;
			border: none;
			border-left: 1px solid var(--border);
			background: var(--white);
			color: var(--navy);
			cursor: pointer;
			z-index: 2;
			-webkit-tap-highlight-color: transparent;
		}

		.nav-submenu-toggle span {
			display: block;
			width: 6px;
			height: 6px;
			border-right: 1.5px solid currentColor;
			border-bottom: 1.5px solid currentColor;
			transform: rotate(45deg);
			margin-top: -3px;
			transition: transform .2s;
			pointer-events: none;
		}

		.nav-links .submenu-open > .nav-submenu-toggle span {
			transform: rotate(-135deg);
			margin-top: 1px;
		}
	}

	.nav-links .menu-item-has-children.submenu-open > .sub-menu .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lang-links {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--border);
	padding: 3px 4px;
}

.lang-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gray);
	text-decoration: none;
	transition: color .2s, background .2s;
	white-space: nowrap;
}

.lang-link:hover { color: var(--navy); }
.lang-link.active {
	background: var(--blue-light);
	color: var(--blue);
}

.lang-link img.flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	display: block;
	border: 1px solid rgba(0, 0, 0, .08);
}

.lang-divider {
	width: 1px;
	height: 16px;
	background: var(--border);
	flex-shrink: 0;
}

.nav-search-btn {
	width: 36px;
	height: 36px;
	background: none;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color .2s;
	border-radius: 0;
	padding: 0;
}

.nav-search-btn:hover { border-color: var(--blue); }
.nav-search-btn svg { stroke: var(--gray); }
.nav-search-btn[aria-expanded="true"] {
	border-color: var(--blue);
	background: var(--blue-pale);
}

/* 搜索面板 */
.nav-search-panel {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 100px 20px 40px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
}

body.nav-search-open .nav-search-panel {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.nav-search-panel__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 43, 85, .55);
	border: none;
	padding: 0;
	cursor: pointer;
}

.nav-search-panel__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 16px 48px rgba(13, 43, 85, .18);
	padding: 28px 28px 24px;
	transform: translateY(-12px);
	transition: transform .25s ease;
}

body.nav-search-open .nav-search-panel__box {
	transform: translateY(0);
}

.nav-search-panel__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border);
	background: none;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: border-color .2s, color .2s;
}

.nav-search-panel__close:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.nav-search-panel__label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 16px;
}

.nav-search-panel__form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.nav-search-panel__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 1px solid var(--border);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--gray-dark);
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
}

.nav-search-panel__input:focus {
	border-color: var(--blue);
}

.nav-search-panel__input::placeholder {
	color: var(--gray-light);
}

.nav-search-panel__submit {
	flex-shrink: 0;
	height: 48px;
	padding: 0 24px;
	background: var(--blue);
	color: #fff;
	border: none;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s;
}

.nav-search-panel__submit:hover {
	background: var(--navy);
}

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

@media (max-width: 640px) {
	.nav-search-panel {
		padding-top: 88px;
		align-items: stretch;
	}

	.nav-search-panel__box {
		max-width: none;
		margin: 0 4px;
	}

	.nav-search-panel__form {
		flex-direction: column;
	}

	.nav-search-panel__submit {
		width: 100%;
	}
}

/* 搜索结果页 */
.site-search {
	padding: 48px 0 80px;
}

.search-results-head {
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.search-results-head .s-tag {
	margin-bottom: 8px;
}

.search-results-count {
	font-size: 14px;
	color: var(--gray);
	margin-top: 8px;
}

.search-result-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--border);
}

.search-result-item {
	padding: 22px 24px;
	border-bottom: 1px solid var(--border);
	transition: background .2s;
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-item:hover {
	background: var(--blue-pale);
}

.search-result-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 6px;
}

.search-result-item .entry-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.search-result-item .entry-title a {
	color: var(--navy);
	text-decoration: none;
	transition: color .2s;
}

.search-result-item .entry-title a:hover {
	color: var(--blue);
}

.search-result-excerpt {
	font-size: 13px;
	line-height: 1.7;
	color: var(--gray);
}

.search-no-results {
	padding: 40px 0;
	text-align: center;
	color: var(--gray);
}

.search-no-results p {
	margin-bottom: 16px;
}

.search-inline-form {
	display: flex;
	gap: 10px;
	max-width: 480px;
	margin: 0 auto;
}

.search-inline-form input[type="search"] {
	flex: 1;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--border);
	font-size: 14px;
}

.search-inline-form button {
	height: 44px;
	padding: 0 20px;
	background: var(--blue);
	color: #fff;
	border: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

.nav-quote {
	background: var(--blue);
	color: #fff;
	padding: 0 22px;
	height: 36px;
	line-height: 36px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .2s;
	white-space: nowrap;
}

.nav-quote:hover {
	background: var(--navy);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	background: none;
	border: 1px solid var(--border);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--navy);
	transition: transform .25s, opacity .25s;
}

body.nav-menu-open { overflow: hidden; }
body.nav-menu-open #nav { z-index: 310; }

.nav-drawer { display: contents; }
.nav-drawer-head { display: none; }

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(13, 43, 85, .45);
	z-index: 250;
	opacity: 0;
	transition: opacity .3s;
	border: none;
	padding: 0;
	cursor: pointer;
}

body.nav-menu-open .nav-overlay {
	display: block;
	opacity: 1;
}

.nav-drawer-quote { display: none; }

/* 抽屉内搜索（桌面隐藏，移动端展示） */
.nav-drawer-search {
	display: none;
}

@media (max-width: 1100px) {
	#nav { padding: 0 20px; height: 80px; }
	body.nav-fixed { padding-top: 80px; }
	.nav-logo img,
	.nav-logo-img { height: 42px; }
	.nav-toggle { display: flex; }
	.nav-right > .lang-links,
	.nav-right > .nav-search-btn,
	.nav-right > .nav-quote { display: none; }

	.nav-drawer {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: min(320px, 88vw);
		height: 100vh;
		height: 100dvh;
		background: var(--white);
		z-index: 300;
		padding: 20px 0 24px;
		box-shadow: 4px 0 24px rgba(13, 43, 85, .12);
		transform: translateX(-100%);
		transition: transform .3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.nav-menu-open .nav-drawer { transform: translateX(0); }

	.nav-drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--border);
		flex-shrink: 0;
	}

	.nav-drawer-close {
		width: 36px;
		height: 36px;
		flex-shrink: 0;
		border: 1px solid var(--border);
		background: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--navy);
		padding: 0;
		transition: border-color .2s, color .2s;
	}

	.nav-drawer-close:hover { border-color: var(--blue); color: var(--blue); }

	.nav-drawer-actions {
		display: flex;
		align-items: center;
		gap: 8px;
		flex: 1;
		justify-content: flex-end;
	}

	.lang-links--drawer { display: flex; }

	.nav-drawer-search {
		display: block;
		padding: 0 16px 14px;
		margin-bottom: 6px;
		border-bottom: 1px solid var(--border);
		flex-shrink: 0;
	}

	.nav-drawer-search__form {
		display: flex;
		gap: 8px;
		align-items: stretch;
	}

	.nav-drawer-search__input {
		flex: 1;
		min-width: 0;
		height: 40px;
		padding: 0 12px;
		border: 1px solid var(--border);
		font-family: 'Inter', sans-serif;
		font-size: 14px;
		color: var(--gray-dark);
		background: var(--white);
		outline: none;
		transition: border-color .2s;
		-webkit-appearance: none;
	}

	.nav-drawer-search__input:focus {
		border-color: var(--blue);
	}

	.nav-drawer-search__input::placeholder {
		color: var(--gray-light);
	}

	.nav-drawer-search__submit {
		flex-shrink: 0;
		width: 40px;
		height: 40px;
		padding: 0;
		background: var(--blue);
		color: #fff;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background .2s;
	}

	.nav-drawer-search__submit:hover {
		background: var(--navy);
	}

	.nav-drawer-search__submit svg {
		stroke: currentColor;
	}

	.nav-links {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		position: static;
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		box-shadow: none;
		transform: none;
		overflow: visible;
		flex: 1;
		gap: 0;
	}

	.nav-links li { width: 100%; }

	.nav-links a {
		height: auto;
		line-height: 1.4;
		padding: 15px 28px;
		font-size: 13px;
		border-bottom: 1px solid var(--border);
		white-space: normal;
	}

	.nav-links a::after { display: none; }

	/* 有子菜单：链接与展开按钮并排，避免链接盖住按钮 */
	.nav-links .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.nav-links .menu-item-has-children > a {
		flex: 1 1 calc(100% - 48px);
		min-width: 0;
		width: calc(100% - 48px);
		max-width: calc(100% - 48px);
		padding-right: 12px;
		box-sizing: border-box;
	}

	.nav-links .menu-item-has-children > a::before {
		display: none;
	}

	.nav-submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		flex: 0 0 48px;
		width: 48px;
		min-height: 48px;
		height: auto;
		align-self: stretch;
		padding: 0;
		border: none;
		border-left: 1px solid var(--border);
		border-bottom: 1px solid var(--border);
		background: var(--white);
		color: var(--navy);
		cursor: pointer;
		z-index: 2;
		-webkit-tap-highlight-color: transparent;
	}

	.nav-submenu-toggle span {
		display: block;
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		margin-top: -3px;
		transition: transform .2s;
		pointer-events: none;
	}

	.nav-links .submenu-open > .nav-submenu-toggle span {
		transform: rotate(-135deg);
		margin-top: 2px;
	}

	.nav-links .menu-item-has-children > .sub-menu {
		flex: 0 0 100%;
		width: 100%;
	}

	.nav-links .sub-menu {
		display: none;
		position: static;
		width: 100%;
		min-width: 0;
		background: var(--blue-pale);
		box-shadow: none;
		border: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav-links .submenu-open > .sub-menu {
		display: block;
	}

	.nav-links .sub-menu a {
		padding: 12px 12px 12px 40px;
		font-size: 12px;
		border-bottom-color: rgba(0, 0, 0, .06);
	}

	.nav-links .sub-menu .menu-item-has-children > a {
		padding-left: 40px;
	}

	.nav-links .sub-menu .nav-submenu-toggle {
		background: rgba(255, 255, 255, .65);
		border-bottom-color: rgba(0, 0, 0, .06);
	}

	.nav-links .sub-menu .sub-menu a {
		padding-left: 52px;
	}

	.nav-links .sub-menu .sub-menu .menu-item-has-children > a {
		padding-left: 52px;
	}

	.nav-links a.active,
	.nav-links .current-menu-item > a,
	.nav-links .current-menu-ancestor > a,
	.nav-links .current_page_item > a {
		background: var(--blue-pale);
		color: var(--blue);
		font-weight: 700;
	}

	.nav-drawer-quote {
		display: list-item;
		margin-top: 8px;
		padding: 0 28px;
	}

	.nav-drawer-quote a {
		display: block;
		background: var(--blue);
		color: #fff !important;
		text-align: center;
		font-weight: 700;
		letter-spacing: 1.5px;
		padding: 14px 20px !important;
		border: none !important;
		height: auto;
		line-height: 1.4;
	}

	.nav-drawer-quote a:hover { background: var(--navy); }
}

/* ── Footer ── */
#footer {
	position: relative;
	background: var(--navy) center center / cover no-repeat;
	color: #fff;
	border-top: 3px solid var(--blue);
}

#footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 147, 208, .85);
}

.footer-body {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 64px;
}

.footer-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 28px 0 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.f-logo-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 3px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1;
}

.f-logo-sub {
	font-size: 9px;
	color: rgba(255, 255, 255, .28);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-top: 2px;
}

.f-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.f-cert {
	border: 1px solid rgba(255, 255, 255, .54);
	padding: 4px 10px;
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .58);
	letter-spacing: 1.5px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.4fr 1.8fr;
	gap: 0;
	padding: 64px 0 52px;
	border-bottom: 1px solid rgba(255, 255, 255, .52);
}

.f-col {
	padding: 28px 48px 28px 0;
	border-right: 1px solid rgba(255, 255, 255, .44);
}

.f-col:last-child {
	border-right: none;
	padding-right: 0;
	padding-left: 48px;
}

.f-col:nth-child(2) { padding-left: 32px; }
.f-col:nth-child(3) { padding-left: 48px; }

.f-col-logo {
	width: 200px;
	height: auto;
	margin-bottom: 18px;
	filter: brightness(0) invert(1);
}

.f-col-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 3px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.f-brand-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, .85);
	line-height: 1.8;
}

.f-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.f-links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.f-links a {
	font-size: 12px;
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 0;
	transition: color .2s;
	text-transform: capitalize;
}

.f-links a::before {
	content: '›';
	color: #fff;
	flex-shrink: 0;
	font-size: 14px;
}

.f-links a:hover { color: #fff; }

.f-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.f-c-icon {
	color: var(--blue-mid);
	font-size: 13px;
	flex: 0 0 16px;
	margin-top: 1px;
	line-height: 1.5;
}

.f-c-label {
	font-size: 9px;
	font-weight: 700;
	color: #21dd7f;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1px;
}

.f-c-val {
	font-size: 11.5px;
	color: rgba(255, 255, 255, .9);
	line-height: 1.55;
}

.f-c-val a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
}

.f-c-val a:hover { color: #fff; }

.inq-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	color: #fff;
	margin-bottom: 2px;
}

.inq-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 14px;
}

.inq-row {
	margin-bottom: 8px;
}

.inq-field {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	color: #fff;
	padding: 9px 12px;
	font-size: 11.5px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color .2s;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}

.inq-field:focus { border-color: var(--blue-mid); }
.inq-field::placeholder { color: rgba(255, 255, 255, .83); }

.inq-btn {
	background: var(--blue);
	color: #fff;
	border: none;
	padding: 9px 20px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: background .2s;
	white-space: nowrap;
	flex-shrink: 0;
	border-radius: 0;
	line-height: normal;
	height: auto;
}

.inq-btn:hover { background: var(--blue-mid); }

/* Footer CF7 — 适配 CF7 将多个字段包在同一 <p> 内的结构 */
.f-col-inquiry .wpcf7 {
	margin: 0;
}

.f-col-inquiry .wpcf7 form.footer-inquiry-form {
	margin: 0;
}

.f-col-inquiry .hidden-fields-container {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.f-col-inquiry .inq-row,
.f-col-inquiry .inq-send-row {
	display: block;
}

.f-col-inquiry .inq-row {
	margin-bottom: 8px;
}

.f-col-inquiry .inq-row p,
.f-col-inquiry .inq-send-row p {
	margin: 0;
}

.f-col-inquiry .inq-row p {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.f-col-inquiry .inq-send-row p {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.f-col-inquiry .inq-row br,
.f-col-inquiry .inq-send-row br {
	display: none;
}

.f-col-inquiry .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
}

.f-col-inquiry .inq-send-row .wpcf7-form-control-wrap {
	flex: 1;
}

.f-col-inquiry .wpcf7-form-control.inq-field {
	width: 100%;
}

.f-col-inquiry input.wpcf7-submit.inq-btn {
	width: auto;
	min-width: 0;
}

.f-col-inquiry .wpcf7-spinner {
	display: none !important;
}

.f-col-inquiry .wpcf7-response-output {
	margin: 10px 0 0;
	padding: 8px 12px;
	font-size: 11px;
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	background: rgba(0, 0, 0, .15);
}

.f-col-inquiry .wpcf7-not-valid-tip {
	font-size: 10px;
	margin-top: 4px;
	color: #ffb4b4;
}

.f-col-inquiry .wpcf7 form .wpcf7-not-valid {
	border-color: #ffb4b4;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 14px 0;
}

.f-copy {
	font-size: 11px;
	color: rgba(255, 255, 255, .685);
}

.f-beian {
	margin-left: 8px;
}

.f-soc {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.f-soc a {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, .07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, .685);
	text-decoration: none;
	transition: all .2s;
	overflow: hidden;
}

.f-soc a img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.f-soc a:hover {
	background: var(--blue);
	color: #fff;
}

.f-soc-icon {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, .07);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.f-soc-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@media (max-width: 1400px) {
	.footer-body { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 1100px) {
	.footer-body { padding-left: 28px; padding-right: 28px; }
	.footer-main { grid-template-columns: 1fr 1fr; }
	.f-col:nth-child(3) { padding-left: 0; }
	.f-col:last-child {
		padding-left: 0;
		border-right: none;
		grid-column: 1 / -1;
		border-top: 1px solid rgba(255, 255, 255, .47);
		padding-top: 20px;
	}
}

@media (max-width: 640px) {
	.footer-main { grid-template-columns: 1fr; }
	.f-col {
		border-right: none;
		padding-right: 0;
		padding-left: 0 !important;
	}
	.inq-row p,
	.f-col-inquiry .inq-row p {
		grid-template-columns: 1fr;
	}

	.inq-send-row p,
	.f-col-inquiry .inq-send-row p {
		flex-direction: column;
	}
}

/* ── Page Banner ── */
#page-banner {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: var(--navy) center center / cover no-repeat;
	display: flex;
	align-items: flex-end;
}

#page-banner .banner-bg {
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 8s ease;
}

#page-banner .banner-bg.zoomed {
	transform: scale(1.06);
}

#page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(0, 30, 60, .88) 0%,
		rgba(0, 30, 60, .55) 50%,
		rgba(0, 30, 60, .25) 100%
	);
}

.banner-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 64px 56px;
	max-width: 1400px;
	margin: 0 auto;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	flex-wrap: wrap;
}

.breadcrumb-nav a {
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	transition: color .2s;
}

.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { color: rgba(255, 255, 255, .3); font-size: 10px; }
.breadcrumb-nav .current {
	color: var(--blue);
	max-width: 480px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.banner-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: clamp(48px, 6vw, 80px);
	color: #fff;
	letter-spacing: 4px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 12px;
}

.banner-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	letter-spacing: 1px;
}

.page-banner--post .banner-title {
	font-size: clamp(28px, 3.4vw, 46px);
	letter-spacing: 1px;
	line-height: 1.15;
	max-width: 920px;
	margin-bottom: 18px;
	text-transform: none;
}

.page-banner--product .banner-title {
	font-size: clamp(36px, 4.5vw, 56px);
	letter-spacing: 2px;
	line-height: 1.1;
}

.banner-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.bm-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .7);
}

.bm-item svg {
	flex-shrink: 0;
}

.banner-rule {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--blue) 0%, var(--navy) 100%);
	z-index: 2;
}

@media (max-width: 1100px) {
	.banner-content { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 640px) {
	.banner-content { padding-left: 20px; padding-right: 20px; padding-bottom: 36px; }
	#page-banner { height: auto; min-height: 280px; }
	.banner-title { font-size: clamp(32px, 8vw, 48px); letter-spacing: 2px; }
	.page-banner--post .banner-title { font-size: clamp(24px, 6.5vw, 36px); }
	.page-banner--product .banner-title { font-size: clamp(28px, 7vw, 40px); }
	.breadcrumb-nav .current { max-width: 200px; }
}

/* ── 右侧浮动通讯栏 ── */
.float-contact {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
}

.float-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 52px;
	box-shadow: -4px 4px 24px rgba(0, 80, 130, .18);
}

.float-contact__item {
	position: relative;
	width: 52px;
}

.float-contact__item:hover {
	z-index: 2;
}

.float-contact__item + .float-contact__item {
	border-top: 1px solid rgba(255, 255, 255, .22);
}

.float-contact__link,
.float-contact__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--navy);
	color: #fff;
	text-decoration: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .4s ease, box-shadow .4s ease;
}

.float-contact__link:hover,
.float-contact__link:focus-visible {
	background: var(--blue);
	box-shadow: -6px 0 16px rgba(0, 147, 208, .25);
}

.float-contact__item--top .float-contact__btn:hover,
.float-contact__item--top .float-contact__btn:focus-visible {
	background: var(--blue);
	box-shadow: -6px 0 16px rgba(0, 147, 208, .25);
}

.float-contact__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.float-contact__icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.float-contact__text {
	position: absolute;
	right: 52px;
	top: 0;
	height: 52px;
	display: flex;
	align-items: center;
	padding: 0 4px 0 18px;
	background: var(--blue);
	white-space: nowrap;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	font-style: italic;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .2px;
	pointer-events: none;
	transition:
		max-width .6s cubic-bezier(.25, .46, .45, .94),
		opacity .45s ease .15s;
}

.float-contact__link:hover .float-contact__text,
.float-contact__link:focus-visible .float-contact__text {
	max-width: 280px;
	opacity: 1;
}

@media (max-width: 640px) {
	.float-contact__list {
		width: 48px;
	}

	.float-contact__item {
		width: 48px;
	}

	.float-contact__link,
	.float-contact__btn {
		width: 48px;
		height: 48px;
	}

	.float-contact__icon {
		width: 48px;
		height: 48px;
	}

	.float-contact__icon img {
		width: 28px;
		height: 28px;
	}

	.float-contact__text {
		right: 48px;
		height: 48px;
		font-size: 13px;
		padding-left: 14px;
	}

	.float-contact__link:hover .float-contact__text,
	.float-contact__link:focus-visible .float-contact__text {
		max-width: 220px;
	}
}
