@charset "UTF-8";

.page-main {
	width: var(--container);
	margin: -38px auto 86px;
	position: relative;
	z-index: 5;
}

.about-grid-1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center
}

.about-grid-2 {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 40px;
	padding: 40px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(6, 43, 73, .03);
	transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s
}

.about-grid-3 {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: center;
	padding: 40px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(6, 43, 73, .03);
	transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s
}

.about-grid-2:hover,
.about-grid-3:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(6, 43, 73, .08);
	border-color: #d5e5ef
}

.about-intro-text {
	color: var(--muted);
	line-height: 1.9;
	margin-bottom: 5px;
	text-indent: 2em;
	font-size: 15px;
	text-align: justify
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.about-stat-card {
	background: var(--bg);
	padding: 14px 20px;
	border-radius: 18px;
	border: 1px solid var(--line);
	text-align: center;
	transition: .3s
}

.about-stat-card:hover {
	background: #fff;
	border-color: var(--cyan);
	box-shadow: 0 10px 20px rgba(54, 167, 216, .1);
	transform: translateY(-3px)
}

.about-stat-card strong {
	display: block;
	font-size: 32px;
	color: var(--navy);
	margin-bottom: 1px;
	font-weight: 900;
	letter-spacing: -.5px
}

.about-stat-card span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 500
}

.about-img-wrapper {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow-card);
	background: #f8fbfd
}

.about-img-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .6s cubic-bezier(.2, .8, .2, 1);
	transform: scale(1)
}

.about-img-wrapper:hover img {
	transform: scale(1.06)
}

.factory-label {
	position: absolute;
	bottom: 24px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px);
	padding: 10px 22px;
	border-radius: 14px;
	font-weight: 800;
	color: var(--navy);
	font-size: 15px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	letter-spacing: .5px;
	pointer-events: none
}

.factory-label.left {
	left: 24px
}

.factory-label.right {
	right: 24px
}

.factory-title {
	font-size: 32px;
	color: var(--navy);
	margin-bottom: 20px;
	font-weight: 900;
	letter-spacing: -.5px
}

.factory-subtitle {
	font-size: 15px;
	font-weight: 400;
	color: var(--muted);
	margin-left: 12px;
	letter-spacing: 0;
	border-left: 2px solid var(--line);
	padding-left: 12px
}

.factory-desc {
	color: var(--muted);
	line-height: 1.95;
	margin-bottom: 28px;
	font-size: 15px;
	text-align: justify;
	text-indent: 2em;
}

.factory-tags {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.factory-tag {
	padding: 6px 16px;
	background: #edf6fb;
	border: 1px solid #d5eaf6;
	border-radius: 999px;
	font-size: 13px;
	color: var(--blue);
	font-weight: 700;
	transition: .3s
}

.factory-tag:hover {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue)
}

.intro-header {
	margin-bottom: 25px
}

.intro-header small {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: #edf6fb;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 1px
}

.intro-header h2 {
	font-size: 36px;
	color: var(--navy);
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -.5px
}

.dual-base-head {
	text-align: center;
	margin-bottom: 45px
}

.dual-base-head small {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	letter-spacing: 2.5px;
	margin-bottom: 12px;
	position: relative
}

.dual-base-head small::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--blue);
	border-radius: 2px
}

.dual-base-head h2 {
	font-size: 34px;
	font-weight: 900;
	color: var(--navy);
	letter-spacing: -.5px
}

@media (max-width:992px) {

	.about-grid-1,
	.about-grid-2,
	.about-grid-3 {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.about-grid-3 .base-text {
		grid-row: 2
	}

	.about-grid-3 .base-img {
		grid-row: 1
	}

	.factory-title {
		font-size: 26px
	}

	.intro-header h2 {
		font-size: 28px
	}
}

.hero-inner {
	width: var(--container);
	display: flex;
	align-items: center
}

@media (max-width:760px) {
	.hero {
		min-height: 200px
	}

	.hero h1 {
		font-size: 2rem;
		margin-bottom: 10px
	}

	.hero-inner {
		padding: 40px 0 70px
	}
}

.product-detail-wrap {
	background: 0 0;
	padding-bottom: 100px
}

.product-detail-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: clamp(30px, 4vw, 50px);
	max-width: var(--container);
	margin: -50px auto 80px;
	position: relative;
	z-index: 10
}

.product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start
}

.product-image-box {
	width: 100%
}

.image-zoom-wrapper {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
	border: 1px solid var(--line);
	background-color: #f8f9fa;
	margin-bottom: 15px
}

.product-main-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4/3;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.image-zoom-wrapper:hover .product-main-img {
	transform: scale(1.08)
}

.product-info-box {
	display: flex;
	flex-direction: column
}

.product-title {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--navy-deep);
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 20px
}

.product-divider {
	height: 1px;
	background-color: var(--line);
	margin-bottom: 25px;
	width: 100%
}

.product-specs {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px
}

.product-specs li {
	display: flex;
	flex-direction: column;
	width: calc(50% - 8px);
	background: #f8f9fa;
	padding: 18px 20px;
	border-radius: 8px;
	border: 1px solid var(--line);
	transition: .3s
}

.product-specs li:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
	border-color: var(--cyan)
}

.spec-label {
	width: auto;
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px
}

.spec-value {
	color: var(--navy-deep);
	font-size: 16px;
	font-weight: 700;
	flex: 1
}

.product-desc {
	background: linear-gradient(135deg, #f6fbff 0, #edf5fa 100%);
	padding: 24px 30px;
	margin-bottom: 40px;
	border: 1px solid rgba(54, 167, 216, .15);
	border-radius: 12px
}

.product-desc p {
	font-size: 16px;
	color: var(--navy-deep);
	line-height: 1.9;
	margin: 0
}

.product-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 99px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: .3s;
	box-shadow: 0 6px 16px rgba(54, 167, 216, .3);
	border: none;
	cursor: pointer
}

.btn-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(54, 167, 216, .4);
	color: #fff
}

.btn-contact svg {
	width: 20px;
	height: 20px
}

.btn-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 99px;
	background: var(--line-soft);
	color: var(--navy-deep);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: .3s;
	border: none;
	cursor: pointer
}

.btn-back:hover {
	background: var(--navy);
	color: #fff;
	box-shadow: 0 8px 20px rgba(6, 43, 73, .15)
}

@media (max-width:900px) {
	.product-layout {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

@media (max-width:1280px) {
	:root {
		--container: min(1400px, 92vw)
	}

	.nav {
		gap: 22px
	}

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

	.hero-panel {
		max-width: 560px
	}

	.toolbar {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (max-width:1080px) {
	.layout {
		grid-template-columns: 1fr
	}

	.side {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, 1fr)
	}

	.float-bar {
		display: none
	}
}

@media (max-width:760px) {
	.product-detail-card {
		margin: 20px 12px 40px;
		border-radius: 16px;
		padding: 25px 15px
	}

	.product-detail-wrap {
		padding-bottom: 40px
	}

	.product-title {
		font-size: 1.6rem
	}

	.product-specs li {
		width: 100%
	}

	.product-actions {
		flex-direction: column
	}

	.btn-contact {
		width: 100%
	}

	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 16px 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 14px
	}

	.nav {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.nav a {
		padding: 10px 0
	}

	.header-action {
		display: none
	}

	.hero-inner {
		padding: 34px 0 54px
	}

	.layout {
		width: 92vw
	}

	.side {
		grid-template-columns: 1fr
	}

	.main-panel {
		padding: 16px;
		max-width: 100%;
		overflow: hidden;
	}

	.result-head {
		align-items: flex-start;
		flex-direction: column
	}

	.simple-search {
		width: 100%
	}

	.table-wrap {
		overflow-x: auto
	}

	table {
		min-width: 920px
	}

	ul.pagination {
		align-items: center;
		flex-direction: row;
		justify-content: center;
		gap: 6px
	}

	ul.pagination li a {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 13px;
		border-radius: 8px
	}
}

.preview-note {
	width: var(--container);
	margin: -48px auto 70px;
	text-align: center;
	color: #7b8c99;
	font-size: 14px;
	letter-spacing: .5px
}

.preview-note span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 26px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(226, 235, 241, .95);
	box-shadow: 0 10px 24px rgba(6, 43, 73, .06)
}

.logo-img {
	display: block;
	width: 300px;
	height: auto;
	object-fit: contain
}

@media (max-width:760px) {
	.logo-img {
		width: 180px;
		max-height: 42px
	}
}

.news-layout {
	width: var(--container);
	margin: 60px auto
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 40px
}

.news-item {
	display: flex;
	gap: 30px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	transition: .3s;
	box-shadow: 0 4px 16px rgba(6, 43, 73, .02)
}

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(6, 43, 73, .08);
	border-color: rgba(19, 111, 165, .2)
}

.news-img {
	width: 320px;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f0f0f0
}

.news-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1
}

.news-date {
	color: var(--cyan);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px
}

.news-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 12px;
	transition: .3s
}

.news-item:hover .news-title {
	color: var(--blue)
}

.news-desc {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.news-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--blue)
}

.news-more::after {
	content: "��?

}

.news-item:hover .news-more::after {
	transform: translateX(5px)
}

@media (max-width:900px) {
	.news-item {
		flex-direction: column;
		gap: 20px
	}

	.news-img {
		width: 100%;
		height: auto;
		aspect-ratio: 16/9
	}
}

.nav-burger {
	flex-direction: column;
	border: none;
	background: 0 0;
	outline: 0;
	-webkit-appearance: none
}

.layout {
	width: var(--container);
	margin: -38px auto 82px;
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 310px minmax(0, 1fr);
	gap: 24px;
	align-items: start
}

.side {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 100px
}

.card {
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(226, 235, 241, .95);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	backdrop-filter: blur(12px)
}

.side-title {
	padding: 22px 22px 12px;
	font-size: 18px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy)
}

.side-title::before {
	content: "";
	width: 6px;
	height: 20px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--cyan), var(--navy));
	box-shadow: 0 5px 12px rgba(19, 111, 165, .22)
}

.card-head {
	padding: 26px 28px 18px;
	border-bottom: 1px solid #edf2f6
}

.card-head small {
	display: block;
	font-size: 12px;
	color: #7e90a0;
	letter-spacing: 1.5px;
	margin-bottom: 8px
}

.card-head h3 {
	font-size: 22px;
	color: var(--navy);
	line-height: 1.2
}

.accordion {
	padding: 14px
}

.cat-block {
	border-radius: 18px;
	border: 1px solid transparent;
	background: #fff;
	overflow: hidden;
	transition: background .3s, border-color .3s, box-shadow .3s
}

.cat-block.open {
	border-color: #dce8f1;
	background: linear-gradient(180deg, #fff 0, #f8fbfd 100%);
	box-shadow: 0 12px 28px rgba(11, 39, 64, .06)
}

.cat-toggle {
	width: 100%;
	background: 0 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px;
	cursor: pointer;
	text-align: left;
	transition: .2s
}

.cat-toggle:hover {
	background: #fbfdff
}

.cat-info {
	display: flex;
	align-items: center;
	gap: 14px
}

.cat-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #edf5fb;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	flex-shrink: 0;
	transition: .22s
}

.cat-text strong {
	display: block;
	font-size: 17px;
	color: #21384b;
	line-height: 1.1
}

.cat-text span {
	display: block;
	font-size: 12px;
	color: #8b9ba8;
	margin-top: 6px;
	letter-spacing: .4px
}

.cat-arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f6fa;
	color: #9aaab7;
	font-size: 18px;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.cat-block.open .cat-icon {
	background: linear-gradient(135deg, #0d2f4d, #1b75bb);
	color: #fff;
	box-shadow: 0 10px 20px rgba(27, 117, 187, .18)
}

.cat-block.open .cat-arrow {
	background: var(--blue);
	color: #fff;
	transform: rotate(90deg)
}

.sub-list {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease-out, padding .25s ease-out;
	padding: 0 18px 0 76px;
	position: relative
}

.sub-list::before {
	content: "";
	position: absolute;
	left: 58px;
	top: 2px;
	bottom: 18px;
	width: 1px;
	background: #d8e3eb
}

.cat-block.open .sub-list {
	max-height: 240px;
	padding-bottom: 18px;
	transition: max-height .35s ease-in, padding .35s ease-in
}

.sub-list a {
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 14px;
	border-radius: 12px;
	color: #6a7e8f;
	font-size: 14px;
	position: relative;
	transition: .18s;
	margin-bottom: 6px
}

.sub-list a::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 50%;
	width: 12px;
	height: 1px;
	background: #d8e3eb
}

.sub-list a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b8c7d2;
	margin-right: 10px;
	transition: .18s
}

.sub-list a.active,
.sub-list a:hover {
	background: #ecf6fd;
	color: var(--blue);
	font-weight: 700;
	transform: translateX(2px)
}

.sub-list a.active::after,
.sub-list a:hover::after {
	border-radius: 99px;
	background: var(--blue)
}

.brand-card {
	padding: 24px;
	position: relative;
	min-height: 208px;
	background: radial-gradient(circle at 96% 8%, rgba(19, 111, 165, .16), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 249, 252, .98))
}

.brand-card::after {
	content: "JINYU";
	position: absolute;
	right: 14px;
	bottom: 10px;
	color: rgba(6, 43, 73, .045);
	font-size: 54px;
	font-weight: 900;
	letter-spacing: 2px;
	pointer-events: none
}

.brand-card .brand-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 14px;
	position: relative;
	z-index: 2
}

.brand-card h2 {
	font-size: 32px;
	letter-spacing: 1px;
	color: var(--navy)
}

.brand-badge {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: var(--navy-soft);
	background: #fff;
	box-shadow: 0 12px 22px rgba(6, 43, 73, .08)
}

.brand-card p {
	position: relative;
	z-index: 2;
	line-height: 1.85;
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 18px
}

.btn {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 17px;
	border-radius: 12px;
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 10px 22px rgba(6, 43, 73, .22);
	transition: .2s
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(6, 43, 73, .24)
}

.product-grid {
	padding: 0 16px 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px
}

.product-tag {
	background: #f7fafc;
	border: 1px solid #e7eef4;
	border-radius: 14px;
	padding: 14px 10px;
	text-align: center;
	font-weight: 700;
	color: var(--text);
	font-size: 13px;
	transition: .2s
}

.product-tag:hover {
	background: #fff;
	border-color: rgba(19, 111, 165, .26);
	color: var(--blue);
	transform: translateY(-2px);
	box-shadow: 0 9px 20px rgba(6, 43, 73, .07)
}

.main-panel {
	padding: 26px;
	background: rgba(255, 255, 255, .97);
	border: 1px solid rgba(226, 235, 241, .95);
	border-radius: 26px;
	box-shadow: var(--shadow-card)
}

.result-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px
}

.result-title small {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #edf6fb;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px
}

.result-title h2 {
	font-size: 26px;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 8px
}

.result-title p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7
}

.simple-search {
	width: 300px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	display: flex;
	align-items: center;
	padding: 0 0 0 16px;
	box-shadow: 0 8px 20px rgba(6, 43, 73, .05);
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	/* 让按钮右侧完美贴合大盒子的圆角 */
}

/* 修复：将原本针对字符的 span 改为控制新版 SVG 矢量图，限定大小 */
.simple-search svg {
	color: var(--blue);
	margin-right: 8px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.simple-search input {
	width: 100%;
	border: none;
	outline: 0;
	color: var(--text);
	font-size: 13px;
	background: 0 0;
	padding-right: 50px;
	/* 右侧留出50px的空地给你的按钮 */
}

.simple-search button {
	height: 100%;
	padding: 0 13px;
	border: none;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap
}

.table-wrap {
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #fff
}

table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	background: #fff
}

thead {
	background: linear-gradient(90deg, #062744 0, #0b4772 100%);
	color: #fff
}

th {
	height: 56px;
	text-align: left;
	padding: 0 18px;
	font-size: 13px;
	letter-spacing: .4px;
	font-weight: 800;
	white-space: nowrap
}

td {
	height: 60px;
	padding: 0 18px;
	border-bottom: 1px solid #edf2f6;
	font-size: 14px;
	color: #274158;
	vertical-align: middle
}

tbody tr {
	transition: .18s
}

tbody tr:nth-child(2n) {
	background: #f9fbfd
}

tbody tr:hover {
	background: #eef7fc;
	box-shadow: inset 4px 0 0 var(--blue);
	transform: translateX(4px)
}

tbody tr:last-child td {
	border-bottom: none
}

.maker {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--navy)
}

.maker-logo {
	width: 30px;
	height: 30px;
	border-radius: 10px;
	border: 1px solid #d3e0e8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	font-size: 12px;
	color: var(--blue);
	box-shadow: 0 5px 12px rgba(6, 43, 73, .05)
}

.part-name {
	font-weight: 700;
	color: #213b52
}

.year-badge {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: #f0f6fa;
	color: #35566f;
	font-size: 13px;
	font-weight: 700
}

.oem {
	font-family: Consolas, Monaco, monospace;
	color: #123f65;
	font-weight: 700;
	letter-spacing: .1px
}

.detail-link {
	text-align: right
}

.detail-link a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	background: #eef6fb;
	font-weight: 900;
	transition: .2s
}

tr:hover .detail-link a {
	background: var(--blue);
	color: #fff;
	transform: translateX(2px)
}

ul.pagination {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	flex-wrap: wrap
}

ul.pagination li {
	display: inline-flex
}

ul.pagination li a {
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	font-size: 14px;
	transition: .2s;
	cursor: pointer
}

ul.pagination li a:hover {
	border-color: rgba(19, 111, 165, .28);
	color: var(--blue);
	transform: translateY(-1px)
}

ul.pagination li.active a {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
	box-shadow: 0 8px 18px rgba(6, 43, 73, .2)
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 26px
}

.section-title small {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #edf6fb;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: .8px
}

.section-title h2 {
	font-size: 32px;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 8px
}

.section-title p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.85;
	max-width: 760px
}

.equipment-shell {
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	background: #fff
}

.equip-tabs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	padding: 16px;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, #f8fbfd 0, #f2f7fa 100%)
}

.equip-tab {
	min-height: 96px;
	border: 1px solid #dfe9f1;
	border-radius: 18px;
	background: #fff;
	color: #40576a;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 17px 16px;
	text-align: left;
	transition: .24s;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 22px rgba(6, 43, 73, .04)
}

.equip-tab:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: .24s
}

.equip-tab:after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -42px;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: rgba(19, 111, 165, .06);
	transition: .24s
}

.equip-tab .tab-no {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: #edf6fb;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .5px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	transition: .24s
}

.equip-tab .tab-text {
	min-width: 0;
	position: relative;
	z-index: 2
}

.equip-tab .tab-text strong {
	display: block;
	color: #243f54;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 6px;
	white-space: nowrap
}

.equip-tab .tab-text em {
	display: block;
	font-style: normal;
	color: #8a9ba8;
	font-size: 12px;
	line-height: 1.2;
	white-space: nowrap
}

.equip-tab .tab-arrow {
	margin-left: auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #f2f7fa;
	color: #9aacb9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	position: relative;
	z-index: 2;
	transition: .24s;
	flex-shrink: 0
}

.equip-tab:hover {
	transform: translateY(-4px);
	border-color: #cfe2ef;
	box-shadow: 0 18px 34px rgba(6, 43, 73, .1)
}

.equip-tab.active:before,
.equip-tab:hover:before {
	transform: scaleX(1)
}

.equip-tab:hover:after {
	transform: scale(1.12);
	background: rgba(19, 111, 165, .09)
}

.equip-tab.active {
	border-color: transparent;
	background: linear-gradient(135deg, var(--navy) 0, #0d4770 100%);
	box-shadow: 0 18px 38px rgba(6, 43, 73, .18)
}

.equip-tab.active:after {
	background: rgba(255, 255, 255, .08);
	transform: scale(1.2)
}

.equip-tab.active .tab-no {
	background: rgba(255, 255, 255, .16);
	color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .14)
}

.equip-tab.active .tab-text strong {
	color: #fff
}

.equip-tab.active .tab-text em {
	color: rgba(255, 255, 255, .7)
}

.equip-tab.active .tab-arrow {
	background: rgba(255, 255, 255, .16);
	color: #fff;
	transform: translateX(3px)
}

.equipment-stage {
	position: relative;
	min-height: 520px;
	background: radial-gradient(circle at 90% 8%, rgba(19, 111, 165, .08), transparent 22%), linear-gradient(180deg, #fff 0, #f7fbfd 100%)
}

.equip-panel {
	display: none;
	animation: .35s both fadeIn
}

.equip-panel.active {
	display: block
}

.equip-showcase {
	display: grid;
	grid-template-columns: 1fr 662px;
	min-height: 520px
}

.showcase-visual {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: linear-gradient(120deg, rgba(6, 43, 73, .22), rgba(6, 43, 73, .04)), radial-gradient(circle at 28% 58%, rgba(255, 180, 68, .28), transparent 18%), linear-gradient(135deg, #3c332c 0, #a8642e 34%, #303a43 100%)
}

.showcase-visual.production {
	background: linear-gradient(120deg, rgba(6, 43, 73, .24), rgba(6, 43, 73, .05)), radial-gradient(circle at 76% 24%, rgba(255, 255, 255, .2), transparent 22%), linear-gradient(135deg, #3b4b58 0, #87939c 44%, #2f3d49 100%)
}

.showcase-visual.cleaning {
	background: linear-gradient(120deg, rgba(6, 43, 73, .18), rgba(6, 43, 73, .04)), radial-gradient(circle at 80% 26%, rgba(255, 255, 255, .22), transparent 24%), linear-gradient(135deg, #486474 0, #93b1c0 42%, #374d5e 100%)
}

.showcase-visual.testing {
	background: linear-gradient(120deg, rgba(6, 43, 73, .24), rgba(6, 43, 73, .05)), radial-gradient(circle at 76% 24%, rgba(54, 167, 216, .24), transparent 24%), linear-gradient(135deg, #263f50 0, #567c95 42%, #132a3a 100%)
}

.showcase-visual.office {
	background: linear-gradient(120deg, rgba(6, 43, 73, .08), rgba(6, 43, 73, .02)), radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .42), transparent 24%), linear-gradient(135deg, #cedde7 0, #eef5f9 46%, #b4ccd9 100%)
}

.showcase-visual:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .12) 45%, transparent 48%), radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .11), transparent 20%);
	transition: .35s
}

.showcase-visual:hover:before {
	transform: scale(1.05)
}

.showcase-visual:after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 270px;
	height: 270px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 68%)
}

.showcase-text {
	position: absolute;
	left: 34px;
	bottom: 34px;
	max-width: 650px;
	color: #fff;
	z-index: 2
}

.showcase-text small {
	display: inline-flex;
	height: 28px;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .14);
	font-size: 12px;
	margin-bottom: 12px;
	backdrop-filter: blur(10px)
}

.showcase-text h3 {
	font-size: 34px;
	line-height: 1.12;
	margin-bottom: 12px
}

.showcase-text p {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, .82)
}

.showcase-info {
	padding: 45px 34px 34px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border-left: 1px solid var(--line);
	background: #fff
}

.showcase-info small {
	display: inline-flex;
	width: max-content;
	height: 28px;
	align-items: center;
	padding: 0 10px;
	border-radius: 999px;
	background: #edf6fb;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 16px
}

.showcase-info h3 {
	color: var(--navy);
	font-size: 28px;
	line-height: 1.22;
	margin-bottom: 14px
}

.showcase-info p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.95;
	margin-bottom: 22px
}

.process-list {
	display: grid;
	gap: 10px
}

.process-list span {
	height: 52px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 0 14px;
	font-size: 14px;
	color: #43596b;
	background: #f9fcfd;
	transition: .2s
}

.process-list span:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue)
}

.process-list span:hover {
	transform: translateX(4px);
	background: #eef7fc;
	border-color: #d7e8f2;
	color: var(--blue);
	font-weight: 700
}

.honor-showcase {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 24px;
	align-items: stretch
}

.honor-summary {
	border-radius: 24px;
	padding: 30px;
	color: #fff;
	background: linear-gradient(135deg, rgba(6, 43, 73, .96) 0, rgba(13, 71, 112, .94) 100%), radial-gradient(circle at right bottom, rgba(255, 255, 255, .16), transparent 36%);
	position: relative;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.honor-summary::before {
	content: "";
	position: absolute;
	right: -72px;
	bottom: -82px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	border: 38px solid rgba(255, 255, 255, .055);
	box-shadow: inset 0 0 0 24px rgba(255, 255, 255, .035)
}

.honor-summary small {
	display: inline-flex;
	width: max-content;
	height: 28px;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .8);
	font-size: 12px;
	margin-bottom: 16px
}

.honor-summary h3 {
	font-size: 30px;
	line-height: 1.24;
	margin-bottom: 14px
}

.honor-summary p {
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 1.95;
	position: relative;
	z-index: 2
}

.honor-summary .honor-data {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	position: relative;
	z-index: 2;
	margin-top: 24px
}

.honor-data .data {
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: .22s
}

.honor-data .data:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .12)
}

.honor-data strong {
	display: block;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 8px
}

.honor-data span {
	display: block;
	color: rgba(255, 255, 255, .68);
	font-size: 12px;
	line-height: 1.7
}

.honor-list {
	flex: 1;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 32px)/ 3);
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 15px 15px 45px;
	margin: -15px -15px -45px;
	scrollbar-width: none;
	scroll-behavior: smooth
}

.honor-list::-webkit-scrollbar {
	display: none
}

.honor-item {
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	padding: 18px;
	position: relative;
	overflow: hidden;
	transition: .24s
}

.honor-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	transform: scaleX(0);
	transform-origin: left;
	transition: .24s
}

.honor-item::after {
	content: "";
	position: absolute;
	right: -36px;
	top: -36px;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: rgba(19, 111, 165, .055);
	transition: .24s
}

.honor-item:hover {
	transform: translateY(-5px);
	border-color: #d4e4ee;
	box-shadow: 0 20px 38px rgba(6, 43, 73, .1)
}

.honor-item:hover::before {
	transform: scaleX(1)
}

.honor-item:hover::after {
	transform: scale(1.16)
}

.honor-cover {
	width: 100%;
	aspect-ratio: 360 / 525;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 24px rgba(6, 43, 73, .05);
	margin-bottom: 15px;
	z-index: 2;
	transition: .4s cubic-bezier(.165, .84, .44, 1);
	background-color: #f4f8fb;
}

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

.honor-item:hover .honor-cover {
	box-shadow: 0 15px 35px rgba(6, 43, 73, .15);
	transform: scale(1.02);
}

.honor-item h4 {
	color: var(--navy);
	font-size: 17px;
	line-height: 1.35;
	margin-bottom: 7px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.honor-item p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75;
	position: relative;
	z-index: 2
}

.honor-type {
	display: inline-flex;
	height: 24px;
	align-items: center;
	padding: 0 9px;
	border-radius: 999px;
	background: #edf6fb;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	z-index: 2
}

@media (max-width:1280px) {
	.honor-showcase {
		grid-template-columns: 1fr
	}
}

@media (max-width:900px) {
	.honor-list {
		grid-auto-columns: calc((100% - 16px)/ 2)
	}
}

@media (max-width:600px) {
	.honor-list {
		grid-auto-columns: 100%
	}

	.honor-summary h3 {
		font-size: 26px
	}
}

.production-map {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 24px;
	align-items: stretch
}

.production-intro {
	border-radius: 22px;
	padding: 30px;
	background: linear-gradient(135deg, var(--navy) 0, #0d4770 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.production-intro:after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	border: 38px solid rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 24px rgba(255, 255, 255, .04)
}

.production-intro small {
	display: inline-flex;
	width: max-content;
	align-items: center;
	height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .82);
	font-size: 12px;
	margin-bottom: 16px
}

.production-intro h2 {
	font-size: 36px;
	line-height: 1.16;
	margin-bottom: 14px
}

.production-intro p {
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.95;
	max-width: 560px
}

.production-data {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 26px;
	position: relative;
	z-index: 2
}

.data-box {
	padding: 18px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: .22s
}

.data-box:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .12)
}

.data-box strong {
	display: block;
	font-size: 27px;
	line-height: 1;
	color: #fff;
	margin-bottom: 8px
}

.data-box span {
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
	line-height: 1.7
}

.machine-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px
}

.machine-card {
	min-height: 172px;
	border-radius: 20px;
	border: 1px solid var(--line);
	background: #fff;
	padding: 22px;
	position: relative;
	overflow: hidden;
	transition: .3s cubic-bezier(.165, .84, .44, 1)
}

.machine-card:before {
	content: "";
	position: absolute;
	right: -34px;
	top: -34px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(19, 111, 165, .06);
	transition: .3s
}

.machine-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 22px;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	transition: width .35s
}

.machine-card:hover::after {
	width: calc(100% - 44px)
}

.machine-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(6, 43, 73, .12);
	border-color: #d5e5ef
}

.machine-card:hover:before {
	transform: scale(1.18);
	background: rgba(19, 111, 165, .1)
}

.machine-card .num {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #edf6fb;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin-bottom: 18px;
	position: relative;
	z-index: 2;
	transition: .3s
}

.machine-card:hover .num {
	background: var(--cyan);
	color: #fff;
	box-shadow: 0 4px 10px rgba(54, 167, 216, .3);
	transform: scale(1.05)
}

.machine-card h3 {
	color: var(--navy);
	font-size: 20px;
	margin-bottom: 9px;
	position: relative;
	z-index: 2;
	transition: color .3s
}

.machine-card:hover h3 {
	color: var(--blue)
}

.machine-card p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.8;
	position: relative;
	z-index: 2
}

.nav-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	z-index: 60
}

.nav-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	border-radius: 1px;
	transition: .3s
}

.nav-burger.open span:first-child {
	transform: rotate(45deg) translate(5px, 5px)
}

.nav-burger.open span:nth-child(2) {
	opacity: 0
}

.nav-burger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 49;
	background: rgba(4, 29, 51, .97);
	backdrop-filter: blur(24px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px
}

.mobile-menu.open {
	display: flex
}

.mobile-menu a {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: color .25s
}

.mobile-menu a:hover {
	color: var(--cyan)
}

.mobile-search {
	width: 80%;
	max-width: 320px;
	position: relative;
	margin-bottom: 10px
}

.mobile-search input {
	width: 100%;
	height: 46px;
	border-radius: 23px;
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 0 20px 0 46px;
	font-size: 16px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	outline: 0;
	transition: border-color .3s
}

.mobile-search input:focus {
	border-color: var(--cyan);
	background: rgba(255, 255, 255, .15)
}

/* ====== 修复：锁住手机端输入框，点击时保持100%满宽，绝不缩小 ====== */
.mobile-search .nav-search input:focus {
	width: 100%;
}

.mobile-search input::placeholder {
	color: rgba(255, 255, 255, .5)
}

.mobile-search svg {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, .5);
	pointer-events: none
}

.mobile-sub-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0
}

.mobile-sub-parent {
	cursor: pointer !important;
	display: flex !important;
	align-items: center;
	gap: 6px
}

.mobile-sub-arrow {
	font-size: 14px;
	transition: transform .25s
}

.mobile-sub-group.open .mobile-sub-arrow {
	transform: rotate(180deg)
}

.mobile-sub-links {
	max-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	transition: max-height .35s, opacity .25s;
	opacity: 0
}

.mobile-sub-group.open .mobile-sub-links {
	max-height: 300px;
	opacity: 1
}

.mobile-sub-links a {
	font-size: 17px !important;
	font-weight: 400 !important;
	color: rgba(255, 255, 255, .55) !important
}

.mobile-sub-links a:hover {
	color: var(--cyan) !important
}

.section {
	padding: clamp(64px, 9vw, 100px) 0
}

.section--soft {
	background: var(--bg);
	color: var(--text)
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 18px;
	color: var(--muted)
}

.section-tag::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--blue)
}

.section-tag--light {
	color: rgba(255, 255, 255, .55)
}

.section-tag--light::before {
	background: var(--cyan)
}

.section-head {
	margin-bottom: clamp(36px, 6vw, 56px)
}

.section-head h2 {
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	font-weight: 900;
	line-height: 1.14;
	letter-spacing: -.5px
}

.section-head p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
	margin-top: 12px;
	max-width: 620px
}

.hero {
	display: flex;
	align-items: center;
	background: var(--navy-deep)
}

.hero-slides {
	position: absolute;
	inset: 0
}

.hero-slide {
	position: absolute;
	inset: 0;
	background: center/cover no-repeat;
	opacity: 0;
	transition: opacity 1s
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
	animation: 7s forwards heroZoom
}

@keyframes heroZoom {
	from {
		transform: scale(1.06)
	}

	to {
		transform: scale(1)
	}
}

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s;
	line-height: 1;
	transform: translateY(-50%)
}

.hero-arrow:hover {
	background: rgba(255, 255, 255, .24);
	border-color: rgba(255, 255, 255, .35)
}

.hero-arrow--prev {
	left: clamp(12px, 3vw, 32px)
}

.hero-arrow--next {
	right: clamp(12px, 3vw, 32px)
}

.hero-dots {
	position: absolute;
	bottom: clamp(20px, 3vw, 38px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 10px
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	border: 1px solid rgba(255, 255, 255, .25);
	cursor: pointer;
	transition: .3s;
	padding: 0
}

.hero-dot.active {
	background: var(--cyan);
	border-color: var(--cyan);
	width: 28px;
	border-radius: 99px
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(170deg, rgba(4, 29, 51, .45) 0, rgba(6, 43, 73, .35) 35%, rgba(4, 29, 51, .72) 70%, rgba(4, 29, 51, .94) 100%)
}

.hero-content {
	position: relative;
	z-index: 2;
	width: var(--container);
	margin: 0 auto;
	padding: 80px 0 60px
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	padding: 7px 16px;
	border-radius: 99px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(8px);
	color: var(--cyan);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	animation: .8s both fadeUp
}

.hero-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan)
}

.hero h1 {
	color: #fff;
	font-weight: 900;
	letter-spacing: -1px;
	max-width: 1000px;
	animation: .8s .12s both fadeUp
}

.hero h1 em {
	font-style: normal;
	color: var(--cyan)
}

.hero-lead {
	margin-top: 22px;
	color: rgba(255, 255, 255, .68);
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	line-height: 1.8;
	max-width: 500px;
	animation: .8s .24s both fadeUp
}

.hero-nums {
	display: flex;
	gap: clamp(28px, 5vw, 56px);
	margin-top: clamp(28px, 4vh, 48px);
	animation: .8s .36s both fadeUp
}

.hero-num b {
	display: block;
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	font-weight: 900;
	line-height: 1;
	color: #fff
}

.hero-num b em {
	font-style: normal;
	color: var(--cyan)
}

.hero-num span {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, .45);
	margin-top: 6px;
	letter-spacing: .5px
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.section-intro-v2 {
	background: var(--white);
	position: relative;
	padding: clamp(80px, 10vw, 120px) 0;
	overflow: hidden
}

.section-intro-v2::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: radial-gradient(circle at 100% 50%, rgba(19, 111, 165, .03) 0, transparent 60%);
	pointer-events: none
}

.intro-grid-v2 {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(40px, 8vw, 80px);
	align-items: center
}

.intro-content-v2 {
	padding-right: 20px
}

.intro-content-v2 h2 {
	font-size: clamp(2.2rem, 3.8vw, 3rem);
	font-weight: 900;
	line-height: 1.15;
	color: var(--navy-deep);
	margin-bottom: 24px;
	letter-spacing: -.5px
}

.intro-lead-v2 {
	font-size: clamp(1.1rem, 1.4vw, 1.25rem);
	color: var(--navy);
	font-weight: 600;
	line-height: 1.7;
	margin-bottom: 20px;
	padding-left: 18px;
	border-left: 4px solid var(--cyan)
}

.intro-desc-v2 {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 35px
}

.intro-features-v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 24px;
	margin-bottom: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--line)
}

.intro-feat-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 700;
	color: var(--navy-deep)
}

.intro-feat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(54, 167, 216, .1);
	color: var(--cyan);
	border-radius: 50%;
	font-size: 12px;
	flex-shrink: 0
}

.intro-link-v2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 800;
	color: var(--blue);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color .3s
}

.intro-link-v2::after {
	content: '��?;
 font-size: 18px;
	transition: transform .3s
}

.intro-link-v2:hover {
	color: var(--cyan)
}

.intro-link-v2:hover::after {
	transform: translateX(6px)
}

.intro-visual-v2 {
	position: relative;
	z-index: 2
}

.intro-slider-v2 {
	position: relative;
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: 0 24px 56px rgba(6, 43, 73, .12);
	border: 1px solid rgba(255, 255, 255, .5)
}

.intro-slider-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s, transform 1.2s
}

.intro-slider-img.active {
	opacity: 1;
	transform: scale(1)
}

.intro-slider-v2:hover .intro-slider-img.active {
	transform: scale(1.05)
}

.intro-floating-badge {
	position: absolute;
	bottom: -30px;
	left: -30px;
	background: var(--navy-deep);
	padding: 24px 32px;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(4, 29, 51, .2);
	z-index: 3;
	border-top: 4px solid var(--cyan);
	display: flex;
	flex-direction: column;
	animation: 6s ease-in-out infinite floatBadge
}

@keyframes floatBadge {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-10px)
	}
}

.intro-floating-badge b {
	font-size: 32px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
	display: flex;
	align-items: baseline;
	gap: 4px
}

.intro-floating-badge b em {
	font-style: normal;
	font-size: 16px;
	color: var(--cyan)
}

.intro-floating-badge span {
	font-size: 13px;
	color: rgba(255, 255, 255, .6);
	font-weight: 600;
	letter-spacing: 1px
}

.intro-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: .3s
}

.intro-slider-v2:hover .intro-arrow {
	opacity: 1
}

.intro-arrow:hover {
	background: var(--cyan);
	border-color: var(--cyan)
}

.intro-arrow--prev {
	left: 15px
}

.intro-arrow--next {
	right: 15px
}

.intro-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10
}

.intro-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	transition: .3s;
	padding: 0
}

.intro-dot.active {
	width: 24px;
	border-radius: 99px;
	background: var(--cyan)
}

.section-capacity {
	background: var(--navy-deep);
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	z-index: 1
}

.section-capacity::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(54, 167, 216, .15) 0, transparent 70%);
	z-index: -1
}

.section-capacity::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(19, 111, 165, .12) 0, transparent 70%);
	z-index: -1
}

.cap-tabs-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 50px
}

.cap-tabs {
	display: inline-flex;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 100px;
	padding: 6px;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none
}

.cap-tabs::-webkit-scrollbar {
	display: none
}

.cap-tab {
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, .5);
	border-radius: 100px;
	transition: .4s cubic-bezier(.4, 0, .2, 1);
	border: none;
	background: 0 0;
	white-space: nowrap;
	position: relative
}

.cap-tab:hover {
	color: #fff
}

.cap-tab.active {
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	color: #fff;
	box-shadow: 0 4px 15px rgba(54, 167, 216, .4);
	text-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

.cap-panels {
	position: relative;
	min-height: 280px
}

.cap-panel {
	display: none;
	animation: .5s ease-out forwards dashboardFadeIn
}

.cap-panel.active {
	display: block
}

@keyframes dashboardFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(.98)
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1)
	}
}

.cap-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px
}

.cap-card {
	background: rgba(255, 255, 255, .02);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 16px;
	padding: 40px 30px;
	position: relative;
	transition: .4s;
	overflow: hidden;
	text-align: center
}

.cap-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 30px;
	width: 0;
	height: 3px;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--cyan);
	transition: width .4s
}

.cap-card:hover {
	background: rgba(255, 255, 255, .04);
	border-color: rgba(54, 167, 216, .3);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.cap-card:hover::before {
	width: calc(100% - 60px)
}

.cap-num {
	font-size: clamp(3rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -2px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #fff 0, #a2d2eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform .4s;
	display: inline-block
}

.cap-num em {
	font-style: normal;
	font-size: .6em;
	background: linear-gradient(135deg, var(--cyan), #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: 4px
}

.cap-card:hover .cap-num {
	transform: scale(1.05) translateX(5px)
}

.cap-label {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: .5px
}

.cap-detail {
	font-size: 14px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.6
}

.cap-cards--overview {
	grid-template-columns: repeat(3, 1fr)
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 280px;
	gap: 24px
}

.cat-card--large {
	grid-column: span 2;
	grid-row: span 2
}

.cat-card--wide {
	grid-column: span 2;
	grid-row: span 1
}

.cat-card--small {
	grid-column: span 1;
	grid-row: span 1
}

.cat-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: block;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
	isolation: isolate
}

.cat-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.25, .46, .45, .94);
	z-index: -2
}

.cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(4, 29, 51, .95) 0, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .4) 100%);
	transition: .4s;
	z-index: -1
}

.cat-card:hover::before {
	background: linear-gradient(to top, rgba(19, 111, 165, .9) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .2) 100%)
}

.cat-card:hover img {
	transform: scale(1.08)
}

.cat-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

.cat-content h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	transform: translateY(15px);
	transition: transform .4s
}

.cat-card--small .cat-content h3 {
	font-size: 22px
}

.cat-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, .75);
	transform: translateY(15px);
	transition: transform .4s
}

.cat-btn {
	margin-top: 20px;
	padding: 8px 24px;
	border: 2px solid rgba(255, 255, 255, .8);
	border-radius: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(20px);
	transition: .4s
}

.cat-card:hover .cat-content h3,
.cat-card:hover .cat-content p {
	transform: translateY(0)
}

.cat-card:hover .cat-btn {
	opacity: 1;
	transform: translateY(0);
	background: #fff;
	color: var(--navy-deep)
}

.section-quality-cta {
	background: var(--navy-deep);
	padding: clamp(80px, 8vw, 120px) 0;
	position: relative;
	z-index: 1
}

.q-cta-card {
	background: radial-gradient(circle at right bottom, rgba(19, 111, 165, .15) 0, rgba(255, 255, 255, .02) 70%);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius-lg);
	padding: clamp(40px, 5vw, 60px);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: clamp(30px, 4vw, 50px);
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .25)
}

.q-cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--cyan);
	box-shadow: 0 0 15px var(--cyan)
}

.q-cta-badge {
	width: 130px;
	height: 130px;
	border: 4px double var(--cyan);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(4, 29, 51, .6);
	box-shadow: 0 0 30px rgba(54, 167, 216, .15);
	flex-shrink: 0
}

.q-cta-badge b {
	font-size: 26px;
	color: #fff;
	line-height: 1.1;
	font-weight: 900;
	letter-spacing: 1px
}

.q-cta-badge span {
	font-size: 11px;
	color: var(--cyan);
	font-weight: 800;
	margin-top: 4px;
	letter-spacing: 1px
}

.q-cta-text h2 {
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	color: #fff;
	font-weight: 900;
	margin-bottom: 16px;
	letter-spacing: 1px
}

.q-cta-text p {
	color: rgba(255, 255, 255, .65);
	font-size: 15px;
	line-height: 1.8;
	max-width: 680px
}

.q-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 180px
}

.q-cta-btn {
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	transition: .3s;
	letter-spacing: .5px
}

.q-cta-btn--primary {
	background: var(--cyan);
	color: var(--navy-deep);
	box-shadow: 0 10px 20px rgba(54, 167, 216, .2)
}

.q-cta-btn--primary:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(255, 255, 255, .2)
}

.q-cta-btn--secondary {
	border: 1px solid rgba(255, 255, 255, .2);
	color: #fff;
	background: 0 0
}

.q-cta-btn--secondary:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: rgba(54, 167, 216, .05)
}

.section-news {
	background: var(--bg);
	position: relative
}

.news-header-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px
}

.news-view-all {
	font-size: 15px;
	font-weight: 700;
	color: var(--blue);
	border-bottom: 2px solid rgba(19, 111, 165, .2);
	padding-bottom: 6px;
	transition: .3s;
	display: inline-flex;
	align-items: center;
	gap: 6px
}

.news-view-all:hover {
	color: var(--cyan);
	border-bottom-color: var(--cyan)
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px
}

.news-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: .4s cubic-bezier(.165, .84, .44, 1);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	position: relative;
	box-shadow: 0 4px 15px rgba(6, 43, 73, .02)
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 48px rgba(6, 43, 73, .08);
	border-color: rgba(54, 167, 216, .3)
}

.news-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--line-soft)
}

.news-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.2, .8, .2, 1)
}

.news-card:hover .news-img-wrap img {
	transform: scale(1.08)
}

.news-date-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 8px 14px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
	z-index: 2;
	min-width: 60px
}

.news-date-badge b {
	display: block;
	font-size: 22px;
	color: var(--navy-deep);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -.5px
}

.news-date-badge span {
	font-size: 11px;
	color: var(--cyan);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 4px;
	display: block
}

.news-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	flex-grow: 1
}

.news-category {
	font-size: 13px;
	font-weight: 800;
	color: var(--blue);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: .5px
}

.news-category::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan)
}

.news-body h3 {
	font-size: clamp(1.1rem, 1.4vw, 1.25rem);
	font-weight: 800;
	color: var(--navy-deep);
	line-height: 1.5;
	margin-bottom: 16px;
	transition: color .3s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.news-card:hover .news-body h3 {
	color: var(--blue)
}

.news-body p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.news-footer {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--line-soft);
	display: flex;
	justify-content: flex-start;
	align-items: center
}

.news-more {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color .3s
}

.news-more::after {
	content: "��?;
 color: var(--cyan);
	font-size: 18px;
	font-weight: 400;
	transition: transform .3s cubic-bezier(.175, .885, .32, 1.275)
}

.news-card:hover .news-more {
	color: var(--blue)
}

.news-card:hover .news-more::after {
	transform: translateX(6px)
}

.footer {
	background: var(--navy);
	color: rgba(255, 255, 255, .6);
	padding: clamp(60px, 8vw, 80px) 0 30px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 0.8fr 0.8fr 3fr;
	gap: clamp(30px, 4vw, 60px);
	padding-bottom: clamp(40px, 5vw, 50px);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	margin-bottom: 30px
}

.footer-brand img {
	height: 57px;
	width: auto;
	margin-bottom: 16px
}

.footer-brand p {
	font-size: 15px;
	line-height: 1.8;
	max-width: 350px
}

.footer-col h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 24px
}

.footer-col a {
	display: block;
	font-size: 15px;
	color: rgba(255, 255, 255, .6);
	padding: 5px 0;
	transition: color .25s, transform .25s
}

.footer-col a:hover {
	color: var(--cyan);
	transform: translateX(4px)
}

.footer-contact-wrap {
	display: flex;
	align-items: flex-start;
	gap: clamp(20px, 3vw, 40px);
	width: 100%
}

.footer-contact-info {
	flex: 1;
	min-width: 0
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: rgba(255, 255, 255, .7);
	line-height: 1.6;
	margin-bottom: 18px
}

.footer-contact-item span {
	white-space: normal;
	word-break: break-all
}

.contact-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	opacity: .7
}

.footer-qr-group {
	display: flex;
	gap: 16px;
	flex-shrink: 0
}

.qr-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px
}

.qr-item span {
	font-size: 13px;
	color: rgba(255, 255, 255, .8);
	letter-spacing: .5px;
	margin-top: 4px;
	line-height: 1.2
}

.qr-item .qr-tip {
	font-style: normal;
	font-size: 11px;
	color: rgba(255, 255, 255, .4);
	line-height: 1
}

.footer-qr {
	flex-shrink: 0;
	width: clamp(80px, 8vw, 100px);
	height: auto;
	aspect-ratio: 1;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 5px;
	background: #fff
}

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

.footer-lang {
	display: flex;
	gap: 16px
}

.footer-lang a {
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
	transition: color .25s
}

.footer-lang a:hover {
	color: var(--cyan)
}

.floating-widget {
	position: fixed;
	right: 20px;
	bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 99
}

.float-item {
	position: relative;
	width: 48px;
	height: 48px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(6, 43, 73, .08);
	transition: .3s
}

.float-item:hover {
	background: var(--cyan);
	border-color: var(--cyan)
}

.float-icon svg {
	width: 22px;
	height: 22px;
	color: var(--navy);
	transition: color .3s
}

.float-item:hover .float-icon svg {
	color: #fff
}

.float-content {
	position: absolute;
	right: calc(100% + 15px);
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 5px 25px rgba(6, 43, 73, .12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	white-space: nowrap
}

.float-item:hover .float-content {
	opacity: 1;
	visibility: visible;
	right: calc(100% + 12px)
}

.float-content::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 6px solid #fff;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent
}

.float-content.text-content {
	padding: 12px 24px;
	font-weight: 700;
	font-size: 16px;
	color: var(--navy-deep);
	letter-spacing: .5px
}

.float-content.qr-content {
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 144px;
	box-sizing: border-box
}

.float-content.qr-content img {
	width: 120px;
	height: 120px;
	border-radius: 4px;
	object-fit: cover;
	display: block
}

.float-content.qr-content span {
	font-size: 13px;
	color: var(--muted);
	font-weight: 600;
	white-space: normal;
	text-align: center;
	line-height: 1.3
}

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 48px;
	height: 48px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(6, 43, 73, .08);
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	z-index: 99;
	opacity: 0;
	visibility: hidden
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible
}

.back-to-top:hover {
	background: var(--navy);
	border-color: var(--navy);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(6, 43, 73, .15)
}

.back-to-top svg {
	width: 22px;
	height: 22px;
	color: var(--navy);
	transition: color .3s
}

.back-to-top:hover svg {
	color: #fff
}

.hero {
	min-height: 300px;
	color: #fff;
	position: relative;
	overflow: hidden;
	background: linear-gradient(110deg, rgba(4, 29, 51, .96) 0, rgba(6, 43, 73, .92) 46%, rgba(10, 65, 106, .86) 100%), linear-gradient(135deg, #20364a, #0c1b28)
}

.hero::before {
	content: "";
	position: absolute;
	right: 4vw;
	top: 38px;
	width: 540px;
	height: 250px;
	opacity: .22;
	background: radial-gradient(circle at 18% 60%, #fff 0 4%, transparent 5%), radial-gradient(circle at 45% 30%, #fff 0 5%, transparent 6%), radial-gradient(circle at 76% 58%, #fff 0 4%, transparent 5%), linear-gradient(35deg, transparent 47%, rgba(255, 255, 255, .48) 48%, transparent 49%), linear-gradient(-20deg, transparent 42%, rgba(255, 255, 255, .28) 43%, transparent 44%);
	background-size: 180px 140px, 220px 180px, 170px 140px, 100px 100px, 130px 130px;
	transform: rotate(-6deg)
}

.hero::after {
	content: "";
	position: absolute;
	right: 9vw;
	bottom: -105px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	border: 42px solid rgba(255, 255, 255, .07);
	box-shadow: inset 0 0 0 26px rgba(255, 255, 255, .04), 0 0 0 20px rgba(255, 255, 255, .025)
}

.hero-inner {
	width: var(--container);
	margin: 0 auto;
	min-height: 300px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 46px 0 60px
}

.breadcrumb {
	font-size: 13px;
	color: rgba(255, 255, 255, .72);
	margin-bottom: 22px
}

.breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color .3s
}

.breadcrumb a:hover {
	color: #fff
}

.hero h1 {
	font-size: clamp(2.7rem, 4vw, 4.2rem);
	letter-spacing: 0px;
	margin-bottom: 16px;
	line-height: 1.08
}

.hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, .78);
	max-width: auto;
	line-height: 1.9
}

@media (max-width:760px) {
	.hero {
		min-height: 200px
	}

	.hero h1 {
		font-size: 2rem;
		margin-bottom: 10px
	}

	.hero-inner {
		padding: 34px 0 54px
	}
}

.news-detail-wrap {
	background-color: transparent;
	padding-bottom: 100px
}

.news-detail-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: clamp(30px, 5vw, 60px);
	max-width: var(--container);
	margin: -60px auto 0;
	position: relative;
	z-index: 10
}

.news-detail-header {
	text-align: center;
	border-bottom: 1px solid var(--line);
	padding-bottom: 30px;
	margin-bottom: 40px
}

.news-detail-title {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--navy-deep);
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 20px
}

.news-detail-meta {
	font-size: 15px;
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px
}

.news-detail-meta span {
	display: flex;
	align-items: center;
	gap: 8px
}

.news-detail-meta svg {
	width: 18px;
	height: 18px
}

.news-detail-content {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text);
	margin: 0 auto
}

.news-detail-content p {
	margin-bottom: 24px
}

.news-detail-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 30px auto;
	display: block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.news-detail-pagination {
	margin-top: 80px;
	border-top: 1px solid var(--line);
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px
}

.news-detail-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-weight: 600;
	font-size: 16px;
	transition: color .3s
}

.news-detail-nav svg {
	width: 20px;
	height: 20px;
	transition: transform .3s
}

.news-detail-nav:hover {
	color: var(--blue)
}

.news-detail-nav.prev:hover svg {
	transform: translateX(-5px)
}

.news-detail-nav.next:hover svg {
	transform: translateX(5px)
}

.news-detail-nav.disabled {
	color: var(--muted);
	pointer-events: none
}

.news-detail-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	border-radius: 99px;
	background: var(--line-soft);
	color: var(--navy-deep);
	font-weight: 600;
	transition: .3s;
	font-size: 15px
}

.news-detail-back:hover {
	background: var(--navy);
	color: #fff;
	box-shadow: 0 8px 20px rgba(6, 43, 73, .15)
}

@media (max-width:760px) {
	.news-detail-card {
		margin: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 30px 15px
	}

	.news-detail-pagination {
		flex-direction: column;
		align-items: center;
		gap: 30px
	}

	.news-pagination-group {
		display: flex;
		justify-content: space-between;
		width: 100%
	}

	.news-detail-wrap {
		padding-bottom: 40px
	}
}

@media (max-width:1100px) {
	.nav {
		display: none
	}

	.nav-burger {
		display: flex
	}

	.nav-dropdown {
		display: none
	}

	.intro-grid-v2 {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.intro-visual-v2 {
		width: 100%;
		max-width: 600px;
		margin: 20px auto 0
	}

	.intro-floating-badge {
		left: 50%;
		transform: translateX(-50%);
		bottom: -20px;
		animation: none;
		text-align: center;
		padding: 12px 24px;
		white-space: nowrap;
		width: 80%;
		display: flex;
		justify-content: center
	}

	.intro-features-v2 {
		grid-template-columns: 1fr
	}

	.cap-cards--overview,
	.cat-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.cat-card--wide {
		grid-column: span 2
	}

	.cat-card--large {
		grid-column: span 2;
		grid-row: span 2
	}

	.q-cta-card {
		grid-template-columns: auto 1fr
	}

	.q-cta-actions {
		grid-column: 1/-1;
		flex-direction: row;
		flex-wrap: wrap;
		margin-top: 10px
	}

	.q-cta-actions .q-cta-btn {
		flex: 1;
		min-width: 200px
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.footer-contact-wrap {
		flex-direction: column
	}
}

@media (max-width:760px) {
	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 12px 0;
		align-items: center;
		flex-direction: row;
		justify-content: space-between
	}

	.logo img {
		height: 36px
	}

	.nav {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.nav a {
		padding: 10px 0
	}

	.hero {
		min-height: 55vh
	}

	.hero-content {
		padding: 40px 0 50px
	}

	.hero h1 {
		font-size: 2rem;
		margin-bottom: 10px
	}

	.hero-lead {
		font-size: 1rem;
		margin-top: 10px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden
	}

	.hero-nums {
		gap: 15px;
		margin-top: 25px
	}

	.hero-num b {
		font-size: 1.6rem
	}

	.hero-arrow {
		display: none
	}

	.hero-dots {
		bottom: 16px;
		gap: 8px
	}

	.hero-dot {
		width: 8px;
		height: 8px
	}

	.hero-dot.active {
		width: 22px
	}

	.intro-visual-v2 {
		max-width: 100%;
		margin-top: 20px
	}

	.intro-content-v2 {
		padding-right: 0
	}

	.intro-floating-badge {
		display: none
	}

	.cap-tabs {
		border-radius: 8px;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 4px;
		justify-content: flex-start;
		width: 100%;
		border: none;
		background: 0 0
	}

	.cap-tab {
		border-radius: 6px;
		padding: 10px 20px;
		border: 1px solid rgba(255, 255, 255, .1);
		margin-right: 8px
	}

	.cap-cards,
	.cap-cards--overview {
		grid-template-columns: 1fr
	}

	.cap-card {
		padding: 30px 24px
	}

	.cat-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 240px
	}

	.cat-card--large,
	.cat-card--small,
	.cat-card--wide {
		grid-column: span 1;
		grid-row: span 1
	}

	.cat-btn,
	.cat-content h3,
	.cat-content p {
		transform: translateY(0);
		opacity: 1
	}

	.cat-btn {
		margin-top: 15px
	}

	.q-cta-card {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
		padding: 40px 25px
	}

	.q-cta-card::before {
		top: 0;
		left: 0;
		width: 100%;
		height: 5px
	}

	.q-cta-actions {
		flex-direction: column;
		width: 100%
	}

	.q-cta-text p {
		margin: 0 auto
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.floating-widget {
		right: 15px;
		bottom: 85px
	}

	.back-to-top,
	.float-item {
		width: 40px;
		height: 40px
	}

	.back-to-top svg,
	.float-icon svg {
		width: 18px;
		height: 18px
	}

	.back-to-top {
		right: 15px;
		bottom: 25px
	}
}

@media (max-width:480px) {
	.hero {
		min-height: 50vh
	}

	.hero h1 {
		font-size: 1.8rem
	}

	.hero-nums {
		flex-wrap: wrap;
		gap: 12px
	}
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: .65s cubic-bezier(.25, .8, .25, 1)
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0)
}

@media (max-width:1280px) {
	:root {
		--container: min(1400px, 92vw)
	}

	.equip-showcase,
	.production-map {
		grid-template-columns: 1fr
	}

	.showcase-info {
		border-left: 0;
		border-top: 1px solid var(--line)
	}
}

@media (max-width:1100px) {
	.nav {
		display: none
	}

	.nav-burger {
		display: flex
	}

	.nav-dropdown {
		display: none
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.footer-contact-wrap {
		flex-direction: column
	}
}

@media (max-width:900px) {
	.hero-inner {
		padding: 34px 0 54px
	}

	.page-main {
		width: 92vw
	}

	.honor-section,
	.production-section,
	.section-pad {
		padding: 22px
	}

	.showcase-visual {
		min-height: 340px
	}

	.machine-grid,
	.production-data {
		grid-template-columns: 1fr
	}
}

@media (max-width:760px) {
	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 12px 0;
		align-items: center;
		flex-direction: row;
		justify-content: space-between
	}

	.logo img {
		height: 36px
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.floating-widget {
		right: 15px;
		bottom: 85px
	}

	.back-to-top,
	.float-item {
		width: 40px;
		height: 40px
	}

	.back-to-top svg,
	.float-icon svg {
		width: 18px;
		height: 18px
	}

	.back-to-top {
		right: 15px;
		bottom: 25px
	}
}

@media (max-width:600px) {
	.section-head {
		flex-direction: column;
		align-items: flex-start
	}

	.production-intro h2,
	.section-title h2 {
		font-size: 28px
	}

	.showcase-info h3 {
		font-size: 26px
	}

	.showcase-visual {
		min-height: 240px
	}

	.showcase-text {
		left: 20px;
		bottom: 20px;
		max-width: calc(100% - 120px);
		pointer-events: none;
	}

	.showcase-text h3 {
		font-size: 24px;
		margin-bottom: 8px
	}

	.showcase-text p {
		font-size: 13px;
		line-height: 1.6
	}
}

.showcase-visual {
	background-image: linear-gradient(120deg, rgba(6, 43, 73, .2), rgba(6, 43, 73, .05)), url('assets/about01.jpg') !important;
	background-size: cover !important;
	background-position: center center !important
}

.showcase-visual.cleaning,
.showcase-visual.office,
.showcase-visual.production,
.showcase-visual.testing {
	background-image: linear-gradient(120deg, rgba(6, 43, 73, .2), rgba(6, 43, 73, .05)), url('assets/about02.jpg') !important;
	background-size: cover !important;
	background-position: center center !important
}

.showcase-visual::before {
	background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .1) 45%, transparent 48%), linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .1)) !important
}

.equip-dots {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .24);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px)
}

.equip-dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .62);
	cursor: pointer;
	transition: .22s;
	padding: 0
}

.equip-dot:hover {
	background: #fff;
	transform: scale(1.18)
}

.equip-dot.active {
	width: 26px;
	background: #fff
}

.showcase-visual.office .equip-dots {
	background: rgba(6, 43, 73, .2);
	border-color: rgba(6, 43, 73, .12)
}

.equip-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(0, 0, 0, .22);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	opacity: .62;
	backdrop-filter: blur(8px);
	transition: .22s
}

.equip-arrow.prev {
	left: 24px
}

.equip-arrow.next {
	right: 24px
}

.equip-arrow:hover {
	opacity: 1;
	background: rgba(6, 43, 73, .72);
	border-color: rgba(255, 255, 255, .45);
	transform: translateY(-50%) scale(1.05)
}

.honor-list-wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column
}

.honor-arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(6, 43, 73, .12);
	border-radius: 50%;
	background: rgba(255, 255, 255, .72);
	color: var(--navy);
	cursor: pointer;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	opacity: .58;
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 24px rgba(6, 43, 73, .1);
	transition: .22s
}

.honor-arrow.prev {
	left: -16px
}

.honor-arrow.next {
	right: -16px
}

.honor-arrow:hover {
	opacity: 1;
	background: var(--navy);
	color: #fff;
	transform: translateY(-50%) scale(1.05)
}

@media (max-width:900px) {
	.equip-dots {
		right: 18px;
		bottom: 18px
	}

	.equip-arrow {
		width: 38px;
		height: 38px;
		font-size: 22px
	}

	.equip-arrow.prev {
		left: 14px
	}

	.equip-arrow.next {
		right: 14px
	}

	.honor-arrow.prev {
		left: 8px
	}

	.honor-arrow.next {
		right: 8px
	}
}

/* removed showcase-text relative */
.equip-dots,
.equip-arrow {
	z-index: 2;
}

.page-main .section {
	background: radial-gradient(circle at left bottom, rgba(19, 111, 165, .07), transparent 20%), linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
	border: 1px solid rgba(226, 235, 241, .95);
	border-radius: 26px;
	box-shadow: var(--shadow-card);
	margin-bottom: 28px;
	overflow: hidden;
}


.section-pad,
.honor-section,
.production-section {
	padding: 34px;
}

\n

/* --- Contact Page Styles --- */
.contact-header {
	text-align: center;
	margin-bottom: 50px;
}

.contact-header p {
	color: var(--muted);
	margin-top: 15px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.contact-card {
	background: #f4f8fb;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(6, 43, 73, 0.15);
	border: 1px solid rgba(19, 111, 165, 0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(6, 43, 73, 0.18) !important;
	border-color: rgba(19, 111, 165, 0.3) !important;
}

.contact-icon-wrap {
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--blue);
}

.contact-card h3 {
	font-size: 20px;
	color: var(--navy);
	margin-bottom: 15px;
}

.contact-card p {
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
}

.contact-card.address p {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.6;
}

.contact-card.email p {
	font-size: 16px;
	font-weight: normal;
}

.contact-qr-wrap {
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.contact-qr-item {
	text-align: center;
}

.contact-qr-box {
	width: 160px;
	height: 160px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	margin: 0 auto 15px;
	background: #fff;
	padding: 10px;
}

.contact-qr-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-qr-item strong {
	color: var(--navy);
	font-size: 16px;
	display: block;
}

.contact-qr-item p {
	font-size: 14px;
	color: var(--muted);
	margin-top: 5px;
}

/* --- Culture Page Styles --- */
.culture-header {
	text-align: center;
	margin-bottom: 50px;
}

.culture-header p {
	color: var(--muted);
	margin-top: 15px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.culture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.culture-card {
	padding: 40px;
	background: #f4f8fb;
	border: 1px solid rgba(19, 111, 165, 0.25);
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(6, 43, 73, 0.15);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(6, 43, 73, 0.15) !important;
	border-color: rgba(19, 111, 165, 0.2) !important;
}

.culture-card-num {
	font-size: 48px;
	color: rgba(54, 167, 216, 0.2);
	font-weight: 900;
	margin-bottom: 10px;
	line-height: 1;
}

.culture-card h3 {
	font-size: 22px;
	color: var(--navy);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.culture-card h3 svg {
	color: var(--blue);
}

.culture-card p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.culture-banner {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	min-height: 300px;
	background: linear-gradient(135deg, rgba(6, 43, 73, 0.9), rgba(19, 111, 165, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 40px rgba(19, 111, 165, 0.2);
}

.culture-banner::after {
	content: "";
	position: absolute;
	right: 5%;
	top: -80px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 36px solid rgba(255, 255, 255, .07);
	box-shadow: inset 0 0 0 20px rgba(255, 255, 255, .04), 0 0 0 15px rgba(255, 255, 255, .025);
	pointer-events: none;
}

.culture-banner-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 40px;
}

.culture-banner-content h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.culture-banner-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto;
}



.showcase-visual img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* 修复手机��?layout 网格被覆盖的 Bug */
@media (max-width: 1080px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.side {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 760px) {
	.layout {
		width: 92vw;
	}

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

	.result-head {
		align-items: flex-start !important;
		flex-direction: column !important;
	}

	.simple-search {
		width: 100% !important;
	}

	.table-wrap {
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		padding-bottom: 10px;
	}
}

@media (max-width:1080px) {
	.layout {
		grid-template-columns: 1fr
	}

	.side {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, 1fr)
	}

	.float-bar {
		display: none
	}
}

@media (max-width:760px) {
	.product-detail-card {
		margin: 20px 12px 40px;
		border-radius: 16px;
		padding: 25px 15px
	}

	.product-detail-wrap {
		padding-bottom: 40px
	}

	.product-title {
		font-size: 1.6rem
	}

	.product-specs li {
		width: 100%
	}

	.product-actions {
		flex-direction: column
	}

	.btn-contact {
		width: 100%
	}

	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 16px 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 14px
	}

	.nav {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.nav a {
		padding: 10px 0
	}

	.header-action {
		display: none
	}

	.hero-inner {
		padding: 34px 0 54px
	}

	.layout {
		width: 92vw
	}

	.side {
		grid-template-columns: 1fr
	}

	.main-panel {
		padding: 16px;
		max-width: 100%;
		overflow: hidden;
	}

	.result-head {
		align-items: flex-start;
		flex-direction: column
	}

	.simple-search {
		width: 100%
	}

	.table-wrap {
		overflow-x: auto
	}

	table {
		min-width: 920px
	}

	ul.pagination {
		align-items: center;
		flex-direction: row;
		justify-content: center;
		gap: 6px
	}

	ul.pagination li a {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 13px;
		border-radius: 8px
	}
}

@media (max-width:1080px) {
	.layout {
		grid-template-columns: 1fr
	}

	.side {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, 1fr)
	}

	.float-bar {
		display: none
	}
}

@media (max-width:760px) {
	.product-detail-card {
		margin: 20px 12px 40px;
		border-radius: 16px;
		padding: 25px 15px
	}

	.product-detail-wrap {
		padding-bottom: 40px
	}

	.product-title {
		font-size: 1.6rem
	}

	.product-specs li {
		width: 100%
	}

	.product-actions {
		flex-direction: column
	}

	.btn-contact {
		width: 100%
	}

	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 16px 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 14px
	}

	.nav {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.nav a {
		padding: 10px 0
	}

	.header-action {
		display: none
	}

	.hero-inner {
		padding: 34px 0 54px
	}

	.layout {
		width: 92vw
	}

	.side {
		grid-template-columns: 1fr
	}

	.main-panel {
		padding: 16px;
		max-width: 100%;
		overflow: hidden;
	}

	.result-head {
		align-items: flex-start;
		flex-direction: column
	}

	.simple-search {
		width: 100%
	}

	.table-wrap {
		overflow-x: auto
	}

	table {
		min-width: 920px
	}

	ul.pagination {
		align-items: center;
		flex-direction: row;
		justify-content: center;
		gap: 6px
	}

	ul.pagination li a {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 13px;
		border-radius: 8px
	}
}

@media (max-width:1280px) {
	.honor-showcase {
		grid-template-columns: 1fr;
	}
}

@media (max-width:900px) {
	.honor-list {
		grid-auto-columns: calc((100% - 16px) / 2);
	}
}

@media (max-width:600px) {
	.honor-list {
		grid-auto-columns: 100%;
	}

	.honor-summary h3 {
		font-size: 26px;
	}
}



/* 生产设备：能力地��?*/
.production-map {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 24px;
	align-items: stretch
}

.production-intro {
	border-radius: 22px;
	padding: 30px;
	background: linear-gradient(135deg, var(--navy) 0%, #0d4770 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.production-intro:after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	border: 38px solid rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 24px rgba(255, 255, 255, .04)
}

.production-intro small {
	display: inline-flex;
	width: max-content;
	align-items: center;
	height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .82);
	font-size: 12px;
	margin-bottom: 16px
}

.production-intro h2 {
	font-size: 36px;
	line-height: 1.16;
	margin-bottom: 14px
}

.production-intro p {
	font-size: 14px;
	color: rgba(255, 255, 255, .78);
	line-height: 1.95;
	max-width: 560px
}

.production-data {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 26px;
	position: relative;
	z-index: 2
}

.data-box {
	padding: 18px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .10);
	transition: .22s ease
}

.data-box:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .12)
}

.data-box strong {
	display: block;
	font-size: 27px;
	line-height: 1;
	color: #fff;
	margin-bottom: 8px
}

.data-box span {
	color: rgba(255, 255, 255, .70);
	font-size: 12px;
	line-height: 1.7
}

.machine-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px
}

.machine-card {
	min-height: 172px;
	border-radius: 20px;
	border: 1px solid var(--line);
	background: #fff;
	padding: 22px;
	position: relative;
	overflow: hidden;
	transition: .24s ease
}

.machine-card:before {
	content: "";
	position: absolute;
	right: -34px;
	top: -34px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(19, 111, 165, .06);
	transition: .24s ease
}

.machine-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(6, 43, 73, .10);
	border-color: #d5e5ef
}

.machine-card:hover:before {
	transform: scale(1.18);
	background: rgba(19, 111, 165, .10)
}

.machine-card .num {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #edf6fb;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin-bottom: 18px;
	position: relative;
	z-index: 2
}

.machine-card h3 {
	color: var(--navy);
	font-size: 20px;
	margin-bottom: 9px;
	position: relative;
	z-index: 2
}

.machine-card p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.8;
	position: relative;
	z-index: 2
}

.float-bar {
	position: fixed;
	right: 24px;
	top: 52%;
	transform: translateY(-50%);
	z-index: 30;
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(6, 43, 73, 0.16);
	border: 1px solid rgba(226, 235, 241, 0.95);
}

.float-bar a {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	font-size: 12px;
	gap: 4px;
	transition: 0.2s ease;
	backdrop-filter: blur(10px);
}

.float-bar a:first-child {
	background: linear-gradient(135deg, var(--navy), var(--blue));
	color: #fff;
}

.float-bar a:hover {
	background: var(--navy);
	color: #fff;
}

.float-bar a:last-child {
	border-bottom: none;
}

.float-bar b {
	font-size: 19px;
	line-height: 1;
}

.preview-note {
	width: var(--container);
	margin: -48px auto 70px;
	text-align: center;
	color: #7b8c99;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.preview-note span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 26px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(226, 235, 241, 0.95);
	box-shadow: 0 10px 24px rgba(6, 43, 73, 0.06);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width:1280px) {
	:root {
		--container: min(1400px, 92vw)
	}

	.equip-showcase,
	.production-map {
		grid-template-columns: 1fr
	}

	.honor-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.showcase-info {
		border-left: 0;
		border-top: 1px solid var(--line)
	}
}

@media (max-width:900px) {
	.topbar {
		display: none
	}

	.site-header {
		height: auto
	}

	.header-inner {
		padding: 16px 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 14px
	}

	.nav {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 4px
	}

	.nav a {
		padding: 10px 0
	}

	.header-action,
	.float-bar {
		display: none
	}

	.hero-inner {
		padding: 34px 0 54px
	}

	.page-main {
		width: 92vw
	}

	.section-pad,
	.honor-section,
	.production-section {
		padding: 22px
	}

	.showcase-visual {
		min-height: 340px
	}

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

	.production-data {
		grid-template-columns: 1fr
	}

	.machine-grid {
		grid-template-columns: 1fr
	}
}

@media (max-width:600px) {
	.section-head {
		flex-direction: column;
		align-items: flex-start
	}

	.section-title h2,
	.production-intro h2 {
		font-size: 28px
	}

	.showcase-info h3 {
		font-size: 26px
	}

	.honor-grid {
		grid-template-columns: 1fr
	}
}

/* ===== 设备中心：图片轮播点点切换（基于 no_footer 版轻量增强） ===== */
.showcase-visual {
	background-image:
		linear-gradient(120deg, rgba(6, 43, 73, .20), rgba(6, 43, 73, .05)),
		url('./01.jpg') !important;
	background-size: cover !important;
	background-position: center center !important;
}

.showcase-visual.production,
.showcase-visual.cleaning,
.showcase-visual.testing,
.showcase-visual.office {
	background-image:
		linear-gradient(120deg, rgba(6, 43, 73, .20), rgba(6, 43, 73, .05)),
		url('./02.jpg') !important;
	background-size: cover !important;
	background-position: center center !important;
}

.showcase-visual::before {
	background:
		linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .10) 45%, transparent 48%),
		linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .10)) !important;
}

.equip-dots {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .24);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
}

.equip-dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .62);
	cursor: pointer;
	transition: .22s ease;
	padding: 0;
}

.equip-dot:hover {
	background: #fff;
	transform: scale(1.18);
}

.equip-dot.active {
	width: 26px;
	background: #fff;
}

.showcase-visual.office .equip-dots {
	background: rgba(6, 43, 73, .20);
	border-color: rgba(6, 43, 73, .12);
}

@media (max-width:900px) {
	.equip-dots {
		right: 18px;
		bottom: 18px;
	}
}


/* ===== 设备中心图片轮播左右按钮 ===== */
.equip-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(0, 0, 0, .22);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	opacity: .62;
	backdrop-filter: blur(8px);
	transition: .22s ease;
}

.equip-arrow.prev {
	left: 24px
}

.equip-arrow.next {
	right: 24px
}

.equip-arrow:hover {
	opacity: 1;
	background: rgba(6, 43, 73, .72);
	border-color: rgba(255, 255, 255, .45);
	transform: translateY(-50%) scale(1.05);
}

/* ===== 资质荣誉左右切换按钮 ===== */
.honor-list-wrap {
	position: relative;
}

.honor-arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(6, 43, 73, .12);
	border-radius: 50%;
	background: rgba(255, 255, 255, .72);
	color: var(--navy);
	cursor: pointer;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	opacity: .58;
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 24px rgba(6, 43, 73, .10);
	transition: .22s ease;
}

.honor-arrow.prev {
	left: -16px
}

.honor-arrow.next {
	right: -16px
}

.honor-arrow:hover {
	opacity: 1;
	background: var(--navy);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.honor-list {
	scroll-behavior: smooth;
}

@media (max-width:900px) {
	.equip-arrow {
		width: 38px;
		height: 38px;
		font-size: 22px;
	}

	.equip-arrow.prev {
		left: 14px
	}

	.equip-arrow.next {
		right: 14px
	}

	.honor-arrow.prev {
		left: 8px
	}

	.honor-arrow.next {
		right: 8px
	}
}

/* =========================================
   CRITICAL MOBILE FIXES (honor-section & showcase-visual)
   ========================================= */
.honor-list-wrap {
	min-width: 0 !important;
}

.honor-section {
	overflow: hidden !important;
}

@media (max-width: 600px) {
	.showcase-visual {
		min-height: 340px !important;
	}
}

/* =========================================
   CRITICAL MOBILE FIXES (header-inner layout)
   ========================================= */
@media (max-width: 900px) {
	.site-header .header-inner {
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
	}
}

/* =========================================
   CRITICAL MOBILE FIXES (about.html images and labels)
   ========================================= */
@media (max-width: 760px) {
	.about-img-wrapper img {
		min-height: 220px !important;
		object-fit: cover !important;
	}

	.factory-label {
		padding: 8px 16px !important;
		font-size: 13px !important;
		bottom: 16px !important;
	}

	.factory-label.left {
		left: 16px !important;
	}

	.factory-label.right {
		right: 16px !important;
	}
}