/* Hero 通栏海报轮播 */
#hero.hero-banner {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 750;
	overflow: hidden;
	background: var(--navy);
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform .5s ease;
	will-change: transform;
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.hero-slide-link {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s, visibility .3s, background .25s;
	backdrop-filter: blur(4px);
}

#hero.hero-banner:hover .hero-arrow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hero-arrow:hover {
	background: var(--blue);
}

.hero-arrow-prev {
	left: max(20px, 5.2vw);
}

.hero-arrow-next {
	right: max(20px, 5.2vw);
}

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

.hero-dot {
	width: 24px;
	height: 3px;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, .35);
	cursor: pointer;
	transition: all .3s;
}

.hero-dot.on {
	width: 42px;
	background: var(--blue-mid);
}

.site-front.site-main {
	min-height: 0;
}

@media (max-width: 1100px) {
	.hero-arrow {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}
}

@media (max-width: 640px) {
	.hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
}

/* ── 首页公司简介 ── */
.home-about {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 80px 0 53px;
	box-sizing: border-box;
	background: var(--white);
}

.home-about__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.home-about__media {
	position: relative;
	flex: 0 0 690px;
	width: 690px;
	max-width: 100%;
	aspect-ratio: 690 / 460;
	overflow: hidden;
	background: #1a1a1a;
}

.home-about__cover,
.home-about__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-about__cover img,
.home-about__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-about__video {
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	background: #000;
}

.home-about__media.is-playing .home-about__video {
	opacity: 1;
	visibility: visible;
	z-index: 3;
}

.home-about__media.is-playing .home-about__cover,
.home-about__media.is-playing .home-about__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.home-about__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border: none;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	background: rgba(80, 80, 80, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s, transform .25s;
}

.home-about__play:hover {
	background: rgba(254, 126, 3, .9);
	transform: translate(-50%, -50%) scale(1.05);
}

.home-about__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

.home-about__content {
	flex: 0 0 474px;
	width: 474px;
	max-width: 100%;
	font-family: var(--font-nav);
}

.home-about__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-about__desc {
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

.home-about__desc p {
	margin: 0 0 1em;
}

.home-about__desc p:last-child {
	margin-bottom: 0;
}

.home-about__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	min-width: 160px;
	height: 44px;
	padding: 0 28px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s, transform .2s;
}

.home-about__more:hover {
	background: var(--blue-mid);
	color: #fff;
}

@media (max-width: 1240px) {
	.home-about__inner {
		flex-wrap: wrap;
		justify-content: center;
	}

	.home-about__media {
		flex: 1 1 100%;
		width: 100%;
		max-width: 690px;
	}

	.home-about__content {
		flex: 1 1 100%;
		width: 100%;
		max-width: 690px;
	}
}

@media (max-width: 640px) {
	.home-about {
		padding: 48px 0 32px;
	}

	.home-about__title {
		font-size: 28px;
		margin-bottom: 10px;
	}

	.home-about__play {
		width: 60px;
		height: 60px;
	}

	.home-about__more {
		margin-top: 24px;
		width: 100%;
	}
}

/* ── 首页定制产品分类 ── */
.home-products {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 27px 0 90px;
	box-sizing: border-box;
	background: var(--white);
	font-family: var(--font-nav);
}

.home-products__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-products__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-products__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-products__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.home-products__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-products__item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.home-products.is-inview .home-products__item {
	opacity: 1;
	transform: translateY(0);
}

.home-products__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	background: #f0f0f0;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.home-products__card:hover {
	background: #fe7e03;
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(254, 126, 3, .22);
}

.home-products__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-products__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .4s ease;
}

.home-products__card:hover .home-products__thumb img {
	transform: scale(1.05);
}

.home-products__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	min-height: 34px;
}

.home-products__name {
	flex: 1;
	min-width: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #000;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .3s ease;
}

.home-products__card:hover .home-products__name {
	color: #fff;
}

.home-products__more {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 34px;
	padding: 0;
	border-radius: 999px;
	background: #fe7e03;
	color: #fff;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .3px;
	text-transform: uppercase;
	transition: background .3s ease, color .3s ease;
}

.home-products__card:hover .home-products__more {
	background: #fff;
	color: #fe7e03;
	transform: none;
}

.home-products__actions {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.home-products__view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 46px;
	border: 2px solid #fe7e03;
	border-radius: 999px;
	background: #fff;
	color: #fe7e03;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: none;
	text-decoration: none;
	box-sizing: border-box;
	transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-products__view:hover {
	background: #fe7e03;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(254, 126, 3, .28);
}

@media (max-width: 1100px) {
	.home-products__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.home-products {
		padding: 16px 0 56px;
	}

	.home-products__head {
		margin-bottom: 28px;
	}

	.home-products__title {
		font-size: 26px;
	}

	.home-products__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-products__actions {
		margin-top: 32px;
	}

	.home-products__view {
		width: 100%;
		max-width: 210px;
	}
}

/* ── 首页定制方案展示 ── */
.home-custom {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 70px 0 90px;
	box-sizing: border-box;
	background: #f0f0f0;
	font-family: var(--font-nav);
}

.home-custom__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-custom__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-custom__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-custom__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.home-custom__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-custom__item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.home-custom.is-inview .home-custom__item {
	opacity: 1;
	transform: translateY(0);
}

.home-custom__card {
	height: 100%;
	padding: 20px;
	background: #fff;
	box-sizing: border-box;
	transition: transform .3s ease, box-shadow .3s ease;
}

.home-custom__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.home-custom__media {
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5;
}

.home-custom__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	transition: transform .4s ease;
}

.home-custom__card:hover .home-custom__media img {
	transform: scale(1.04);
}

.home-custom__name {
	margin: 16px 0 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #ccc;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #fe7e03;
}

.home-custom__desc {
	margin-top: 0;
	max-height: calc(14px * 1.7 * 4);
	overflow-x: hidden;
	overflow-y: auto;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
	scrollbar-width: thin;
	scrollbar-color: #c8c8c8 #ececec;
}

.home-custom__desc p {
	margin: 0 0 .6em;
}

.home-custom__desc p:last-child {
	margin-bottom: 0;
}

.home-custom__desc::-webkit-scrollbar {
	width: 6px;
}

.home-custom__desc::-webkit-scrollbar-track {
	background: #ececec;
	border-radius: 999px;
}

.home-custom__desc::-webkit-scrollbar-thumb {
	background: #c8c8c8;
	border-radius: 999px;
}

.home-custom__desc::-webkit-scrollbar-thumb:hover {
	background: #b0b0b0;
}

@media (max-width: 1100px) {
	.home-custom__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.home-custom {
		padding: 48px 0 56px;
	}

	.home-custom__head {
		margin-bottom: 28px;
	}

	.home-custom__title {
		font-size: 26px;
	}

	.home-custom__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ── 首页优势展示 ── */
.home-adv {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 70px 0 20px;
	box-sizing: border-box;
	background: var(--white);
	font-family: var(--font-nav);
}

.home-adv__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-adv__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-adv__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-adv__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.home-adv__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.home-adv__item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.home-adv.is-inview .home-adv__item {
	opacity: 1;
	transform: translateY(0);
}

.home-adv__card {
	text-align: center;
}

.home-adv__media {
	overflow: hidden;
	background: #f5f5f5;
}

.home-adv__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	transition: transform .4s ease;
}

.home-adv__card:hover .home-adv__media img {
	transform: scale(1.05);
}

.home-adv__name {
	margin: 18px 0 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #222;
}

.home-adv__desc {
	margin-top: 10px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #666;
}

.home-adv__desc p {
	margin: 0 0 .5em;
}

.home-adv__desc p:last-child {
	margin-bottom: 0;
}

.home-adv__actions {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

@media (max-width: 1100px) {
	.home-adv__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.home-adv {
		padding: 48px 0 20px;
	}

	.home-adv__head {
		margin-bottom: 28px;
	}

	.home-adv__title {
		font-size: 26px;
	}

	.home-adv__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.home-adv__actions {
		margin-top: 32px;
	}
}

/* ── 首页证书展示 ── */
.home-cert {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 20px 0 80px;
	box-sizing: border-box;
	background: var(--white);
	font-family: var(--font-nav);
}

.home-cert__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-cert__panel {
	padding: 48px 30px 40px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
	box-sizing: border-box;
}

.home-cert__head {
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.home-cert__title {
	margin: 0 0 10px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-cert__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #888;
}

.home-cert__desc {
	margin-top: 20px;
	font-family: var(--font-nav);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: #000;
	text-align: center;
}

.home-cert__desc p {
	margin: 0 0 .6em;
}

.home-cert__desc p:last-child {
	margin-bottom: 0;
}

.home-cert__desc > p:first-child::first-letter,
.home-cert__desc::first-letter {
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
}

.home-cert__gallery {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.home-cert__item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .5s ease, transform .5s ease;
	transition-delay: calc(var(--reveal-i, 0) * .06s);
}

.home-cert.is-inview .home-cert__item {
	opacity: 1;
	transform: translateY(0);
}

.home-cert__thumb {
	height: 100%;
	padding: 8px;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
	box-sizing: border-box;
	transition: transform .3s ease, box-shadow .3s ease;
}

.home-cert__thumb:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.home-cert__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: contain;
	object-position: center;
	background: #fafafa;
}

@media (max-width: 1100px) {
	.home-cert__panel {
		padding: 36px 24px 28px;
	}

	.home-cert__gallery {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.home-cert {
		padding: 16px 0 48px;
	}

	.home-cert__panel {
		padding: 28px 16px 20px;
		border-radius: 12px;
	}

	.home-cert__title {
		font-size: 26px;
	}

	.home-cert__desc {
		font-size: 15px;
	}

	.home-cert__gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 20px;
	}
}

/* ── 首页合作品牌展示 ── */
.home-coop {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 70px 0 90px;
	box-sizing: border-box;
	background: #f0f0f0;
	font-family: var(--font-nav);
}

.home-coop__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-coop__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-coop__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-coop__desc {
	max-width: 644px;
	margin: 0 auto;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #66605b;
	text-align: center;
}

.home-coop__desc p {
	margin: 0 0 .5em;
}

.home-coop__desc p:last-child {
	margin-bottom: 0;
}

.home-coop__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}

.home-coop__item {
	opacity: 0;
	transform: translateY(24px) scale(.96);
	transition: opacity .5s ease, transform .5s ease;
	transition-delay: calc(var(--reveal-i, 0) * .06s);
}

.home-coop.is-inview .home-coop__item {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.home-coop__card {
	display: block;
	height: auto;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	background: transparent;
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
	box-sizing: border-box;
}

.home-coop__card:hover {
	animation: home-coop-shake .5s ease;
}

.home-coop__card img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
}

@keyframes home-coop-shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-5px); }
	40% { transform: translateX(5px); }
	60% { transform: translateX(-3px); }
	80% { transform: translateX(3px); }
}

@media (max-width: 1100px) {
	.home-coop__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.home-coop {
		padding: 48px 0 56px;
	}

	.home-coop__head {
		margin-bottom: 28px;
	}

	.home-coop__title {
		font-size: 26px;
	}

	.home-coop__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.home-coop__card {
		border-radius: 8px;
	}
}

/* ── 首页博客和案例展示 ── */
.home-news {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 45px 0 90px;
	box-sizing: border-box;
	background: var(--white);
	font-family: var(--font-nav);
}

.home-news__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-news__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-news__title {
	margin: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #222;
}

.home-news__desc {
	max-width: 950px;
	margin: 0 auto;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #66605b;
	text-align: center;
}

.home-news__desc p {
	margin: 0 0 .5em;
}

.home-news__desc p:last-child {
	margin-bottom: 0;
}

.home-news__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-news__item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .55s ease, transform .55s ease;
	transition-delay: calc(var(--reveal-i, 0) * .08s);
}

.home-news.is-inview .home-news__item {
	opacity: 1;
	transform: translateY(0);
}

.home-news__card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.home-news__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.home-news__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
	z-index: 1;
}

.home-news__name {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .4px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .35s ease, transform .35s ease;
	pointer-events: none;
}

.home-news__card:hover .home-news__overlay,
.home-news__card:focus-visible .home-news__overlay {
	opacity: 1;
}

.home-news__card:hover .home-news__name,
.home-news__card:focus-visible .home-news__name {
	opacity: 1;
	transform: translateY(0);
}

.home-news__card:hover .home-news__img,
.home-news__card:focus-visible .home-news__img {
	transform: scale(1.04);
}

@media (max-width: 900px) {
	.home-news__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.home-news__name {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.home-news {
		padding: 48px 0 56px;
	}

	.home-news__head {
		margin-bottom: 28px;
	}

	.home-news__title {
		font-size: 26px;
	}

	.home-news__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-news__card {
		border-radius: 10px;
	}
}

/* ── 首页 FAQ + 联系表单 ── */
.home-faqcon {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 90px 0 60px;
	box-sizing: border-box;
	background: var(--white);
	font-family: var(--font-nav);
}

.home-faqcon__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.home-faqcon__panel {
	display: flex;
	align-items: stretch;
	gap: 0;
	padding: 40px 30px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
	box-sizing: border-box;
}

.home-faqcon__faq,
.home-faqcon__form {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.home-faqcon__divider {
	flex: 0 0 1px;
	width: 1px;
	margin: 0 30px;
	background: #e5e5e5;
	align-self: stretch;
}

.home-faqcon__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #222;
	text-transform: uppercase;
}

.home-faqcon__lead {
	margin: 0 0 24px;
	font-family: var(--font-nav);
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.home-faqcon__lead p {
	margin: 0 0 .5em;
}

.home-faqcon__lead p:last-child {
	margin-bottom: 0;
}

.home-faqcon__sub {
	margin: 0 0 24px;
	font-family: var(--font-nav);
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

.home-faqcon__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-faqcon__item {
	border-bottom: 1px solid #e8e8e8;
}

.home-faqcon__item:first-child {
	border-top: 1px solid #e8e8e8;
}

.home-faqcon__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 16px 0;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	color: #222;
	-webkit-tap-highlight-color: transparent;
}

.home-faqcon__q:hover {
	color: #fe7e03;
}

.home-faqcon__q-text {
	flex: 1;
	min-width: 0;
}

.home-faqcon__q-icon {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform .25s ease;
	opacity: .7;
}

.home-faqcon__item.is-open .home-faqcon__q-icon {
	transform: rotate(45deg);
}

.home-faqcon__a {
	overflow: hidden;
}

.home-faqcon__a-inner {
	padding: 0 0 16px;
	font-family: var(--font-nav);
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.home-faqcon__a-inner p {
	margin: 0 0 .5em;
}

.home-faqcon__a-inner p:last-child {
	margin-bottom: 0;
}

/* Contact Form 7 */
.home-faqcon__cf7 .wpcf7 {
	margin: 0;
}

.home-faqcon__cf7 .wpcf7 form.home-quote-form {
	margin: 0;
}

.home-faqcon__cf7 .home-quote-form .hq-field {
	margin: 0 0 16px;
}

.home-faqcon__cf7 .home-quote-form .hq-field:last-of-type {
	margin-bottom: 20px;
}

.home-faqcon__cf7 .home-quote-form .hq-field p {
	margin: 0;
}

.home-faqcon__cf7 .home-quote-form .hq-field br {
	display: none;
}

.home-faqcon__cf7 .home-quote-form label.hq-label {
	display: block;
	margin: 0 0 4px;
	font-family: var(--font-nav);
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-form-control-wrap {
	display: block;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-form-control.hq-input,
.home-faqcon__cf7 .home-quote-form .wpcf7-form-control.hq-textarea {
	display: block;
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background: #f5f5f5;
	box-sizing: border-box;
	font-family: var(--font-nav);
	font-size: 14px;
	color: #222;
	outline: none;
	transition: border-color .2s, background .2s;
	-webkit-appearance: none;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-form-control.hq-textarea {
	padding: 11px 14px;
	line-height: 1.4;
	resize: none;
	overflow-y: auto;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-form-control.hq-input:focus,
.home-faqcon__cf7 .home-quote-form .wpcf7-form-control.hq-textarea:focus {
	border-color: #fe7e03;
	background: #fff;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-submit.hq-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 108px;
	min-width: 108px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 4px;
	background: #fe7e03;
	color: #fff;
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	transition: background .25s, transform .2s;
}

.home-faqcon__cf7 .home-quote-form .wpcf7-submit.hq-submit:hover {
	background: #e56f00;
}

.home-faqcon__cf7 .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #d63638;
}

.home-faqcon__cf7 .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 10px 12px;
	font-size: 13px;
	border-radius: 4px;
}

@media (max-width: 1200px) {
	.home-faqcon__divider {
		margin: 0 20px;
	}
}

@media (max-width: 900px) {
	.home-faqcon__panel {
		flex-direction: column;
		padding: 32px 20px;
	}

	.home-faqcon__faq,
	.home-faqcon__form {
		flex: 1 1 auto;
		width: 100%;
	}

	.home-faqcon__divider {
		width: 100%;
		height: 1px;
		margin: 28px 0;
	}

	.home-faqcon__title {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.home-faqcon {
		padding: 24px 0 56px;
	}

	.home-faqcon__title {
		font-size: 26px;
	}
}
