/* Hero 通栏海报轮播 */
#hero.hero-banner {
	position: relative;
	width: 100%;
	height: 750px;
	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: cover;
	object-position: center;
}

.hero-brand-title {
	position: absolute;
	left: 50%;
	bottom: 56px;
	z-index: 3;
	transform: translateX(-50%);
	margin: 0;
	max-width: min(1400px, 90%);
	padding: 0 16px;
	box-sizing: border-box;
	font-family: var(--font-bold);
	font-size: clamp(28px, 3.2vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
	pointer-events: none;
}

.home-brand-title {
	max-width: 1400px;
	margin: 40px auto 0;
	padding: 0 24px;
	box-sizing: border-box;
	font-family: var(--font-bold);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.2;
	color: #111d5c;
	text-align: 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: 100px;
}

.hero-arrow-next {
	right: 100px;
}

.hero-dots {
	position: absolute;
	bottom: 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;
}

/* ── Product Index / Scenes ── */
.home-product-index {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 80px 0 100px;
	background: #fff;
}

.home-product-index__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}

.home-section-head {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 48px;
	text-align: center;
}

.home-section-head__title-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.home-section-head__bg {
	display: block;
	font-family: var(--font-bold);
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	opacity: .06;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.home-section-head__title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	margin: 0;
	font-family: var(--font-bold);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.1;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .02em;
	white-space: nowrap;
}

.home-section-head__line {
	display: block;
	width: 44px;
	height: 5px;
	margin-top: 0;
	background: #111d5c;
	flex-shrink: 0;
}

/* Product categories */
.product-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.product-cat {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 332 / 280;
	text-decoration: none;
	color: #fff;
	background: #1a1a1a;
}

.product-cat::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
	pointer-events: none;
}

.product-cat__img,
.product-cat__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.product-cat__placeholder {
	background: linear-gradient(135deg, #2a2a2a, #444);
}

.product-cat:hover .product-cat__img {
	transform: scale(1.05);
}

.product-cat__name {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	height: 70px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px 8px;
	box-sizing: border-box;
	font-family: var(--font-bold);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .04em;
	pointer-events: none;
}

/* Application scenes */
.scene-grid {
	display: grid;
	grid-template-columns: 700px 676px;
	gap: 24px;
	align-items: stretch;
}

.scene-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.scene-side__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	flex: 1;
	min-height: 0;
}

.scene-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	background: #e8e8e8;
	min-height: 0;
}

.scene-card__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.scene-card:hover .scene-card__img {
	transform: scale(1.04);
}

.scene-card--main {
	height: 100%;
	min-height: 560px;
}

.scene-card--wide {
	flex: 0 0 auto;
	aspect-ratio: 676 / 320;
}

.scene-side__row .scene-card {
	aspect-ratio: 326 / 360;
}

.scene-card__name {
	position: absolute;
	left: 24px;
	bottom: 22px;
	z-index: 1;
	margin: 0;
	font-family: var(--font-bold);
	font-size: 30px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.1;
	color: #111d5c;
	pointer-events: none;
}

.scene-card__name::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	color: transparent;
	-webkit-text-stroke: 5px #fff;
	pointer-events: none;
}

.scene-card__bar {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 22px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	pointer-events: none;
}

.scene-card__bar .scene-card__name {
	position: relative;
	left: auto;
	bottom: auto;
}

.scene-card__arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #111d5c;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1440px) {
	.home-product-index__inner {
		padding: 0 24px;
	}

	.scene-grid {
		grid-template-columns: minmax(0, 700fr) minmax(0, 676fr);
	}

	.scene-card--main {
		min-height: 480px;
	}
}

@media (max-width: 1100px) {
	.home-product-index {
		padding: 56px 0 72px;
	}

	.home-section-head {
		margin-bottom: 36px;
	}

	.home-section-head__bg {
		font-size: 64px;
	}

	.home-section-head__title {
		font-size: 36px;
	}

	.product-cats {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 28px;
	}

	.product-cat__name {
		font-size: 18px;
	}

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

	.scene-side,
	.scene-side__row {
		gap: 16px;
	}

	.scene-card--main {
		aspect-ratio: 16 / 12;
		min-height: 0;
	}

	.scene-card--wide {
		aspect-ratio: 16 / 8;
	}

	.scene-side__row .scene-card {
		aspect-ratio: 1 / 1.1;
	}

	.scene-card__name {
		font-size: 24px;
		left: 16px;
		bottom: 16px;
	}

	.scene-card__name::before {
		-webkit-text-stroke-width: 3px;
	}

	.scene-card__bar {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.scene-card__arrow {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 640px) {
	.home-product-index {
		padding: 40px 0 56px;
	}

	.home-product-index__inner {
		padding: 0 16px;
	}

	.home-section-head__bg {
		font-size: 42px;
	}

	.home-section-head__title {
		font-size: 28px;
	}

	.product-cats {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.product-cat__name {
		font-size: 14px;
		height: 56px;
		padding-bottom: 6px;
	}

	.product-cat::after {
		height: 56px;
	}

	.scene-card__name {
		font-size: 20px;
	}

	.scene-card__name::before {
		-webkit-text-stroke-width: 2px;
	}

	.scene-side__row {
		grid-template-columns: 1fr;
	}
}

/* ── Hot Products ── */
.home-hot-products {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0 90px;
	background-color: #eceae6;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-hot-products__inner {
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}

.home-hot-products .home-section-head {
	margin-bottom: 56px;
}

.home-hot-products .home-section-head__bg {
	opacity: .06;
}

.hot-products__frame {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 75px 36px;
}

.hot-products__shelf {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 254px;
	background: #111d5c;
	border-radius: 18px;
	z-index: 0;
	pointer-events: none;
}

.hot-products__viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	max-width: 1290px;
	margin: 0 auto;
	container-type: inline-size;
	container-name: hot-products;
}

.hot-products__track {
	display: flex;
	gap: 30px;
	will-change: transform;
	transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.hot-product-card {
	flex: 0 0 calc((100cqw - 90px) / 4);
	width: calc((100cqw - 90px) / 4);
	max-width: calc((100cqw - 90px) / 4);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
	background: transparent;
	overflow: hidden;
	border-radius: 4px 4px 0 0;
	transform: translateY(0);
	transition: transform .35s ease, box-shadow .35s ease;
}

.hot-product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 36px rgba(17, 29, 92, .22);
}

.hot-product-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 300 / 260;
	overflow: hidden;
	background: #d8d8d8;
}

.hot-product-card__media img,
.hot-product-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.hot-product-card__placeholder {
	background: linear-gradient(135deg, #cfcfcf, #9a9a9a);
}

.hot-product-card:hover .hot-product-card__media img {
	transform: scale(1.06);
}

.hot-product-card__body {
	position: relative;
	display: block;
	min-height: 92px;
	padding: 18px 56px 18px 18px;
	background: #3346ac;
	box-sizing: border-box;
}

.hot-product-card__title {
	display: block;
	margin: 0;
	font-family: var(--font-medium);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.25;
	color: #fff;
	margin-bottom: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hot-product-card__label {
	display: block;
	font-family: var(--font-light);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.3;
	color: rgba(255, 255, 255, .88);
}

.hot-product-card__btn {
	position: absolute;
	top: 22px;
	right: 14px;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: #2685f9;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease, transform .25s ease;
}

.hot-product-card:hover .hot-product-card__btn {
	background: #3d95ff;
	transform: translate(2px, -2px);
}

.hot-products__arrow {
	position: absolute;
	top: 42%;
	z-index: 5;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: #111d5c;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-50%) scale(.92);
	transition: opacity .3s, visibility .3s, transform .3s, background .25s, color .25s;
	box-shadow: 0 8px 24px rgba(17, 29, 92, .18);
}

.hot-products:hover .hot-products__arrow,
.hot-products:focus-within .hot-products__arrow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) scale(1);
}

.hot-products__arrow:hover {
	background: #2685f9;
	color: #fff;
}

.hot-products__arrow--prev {
	left: 12px;
}

.hot-products__arrow--next {
	right: 12px;
}

.hot-products.is-static .hot-products__arrow {
	display: none !important;
}

@media (max-width: 1440px) {
	.home-hot-products__inner {
		padding: 0 24px;
	}

	.hot-products__frame {
		padding: 0 48px 32px;
	}

	.hot-products__shelf {
		left: 24px;
		right: 24px;
		width: auto;
	}
}

@media (max-width: 1100px) {
	.home-hot-products {
		padding: 56px 0 64px;
	}

	.home-hot-products .home-section-head {
		margin-bottom: 40px;
	}

	.hot-products__frame {
		padding: 0 16px 28px;
	}

	.hot-products__shelf {
		left: 0;
		right: 0;
		height: 220px;
		border-radius: 14px;
	}

	.hot-products__track {
		gap: 20px;
	}

	.hot-product-card {
		flex-basis: calc((100cqw - 20px) / 2);
		width: calc((100cqw - 20px) / 2);
		max-width: calc((100cqw - 20px) / 2);
	}

	.hot-product-card__title {
		font-size: 20px;
	}

	.hot-product-card__body {
		min-height: 84px;
		padding: 14px 50px 14px 14px;
	}

	.hot-product-card__btn {
		top: 18px;
	}

	.hot-products__arrow {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(-50%) scale(1);
		width: 40px;
		height: 40px;
	}

	.hot-products__arrow--prev {
		left: 0;
	}

	.hot-products__arrow--next {
		right: 0;
	}
}

@media (max-width: 640px) {
	.home-hot-products {
		padding: 40px 0 48px;
	}

	.home-hot-products__inner {
		padding: 0 16px;
	}

	.hot-products__frame {
		padding: 0 0 24px;
	}

	.hot-products__shelf {
		display: none;
	}

	.hot-products__track {
		gap: 16px;
	}

	.hot-product-card {
		flex-basis: 100cqw;
		width: 100cqw;
		max-width: 100cqw;
	}

	.hot-product-card__title {
		font-size: 18px;
	}

	.hot-product-card__label {
		font-size: 13px;
	}

	.hot-products__arrow {
		width: 36px;
		height: 36px;
		top: 38%;
	}
}

@media (max-width: 1100px) {
	#hero.hero-banner {
		height: auto;
		min-height: 520px;
		aspect-ratio: 16 / 7;
	}

	.hero-brand-title {
		bottom: 72px;
		font-size: clamp(22px, 4.5vw, 36px);
	}

	.hero-dots {
		bottom: 24px;
	}

	.hero-arrow {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.hero-arrow-prev {
		left: 80px;
	}

	.hero-arrow-next {
		right: 80px;
	}
}

@media (max-width: 640px) {
	#hero.hero-banner {
		min-height: 420px;
		aspect-ratio: 4 / 3;
	}

	.hero-brand-title {
		bottom: 56px;
		font-size: clamp(20px, 5vw, 28px);
	}

	.hero-dots {
		bottom: 16px;
	}

	.hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.hero-arrow-prev {
		left: 60px;
	}

	.hero-arrow-next {
		right: 60px;
	}
}

/* ── Company Profile ── */
.home-about {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 100px 0 110px;
	background-color: #f2f2f2;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: visible;
}

.home-about__inner {
	width: 100%;
	max-width: 1700px;
	margin-left: auto;
	margin-right: 0;
	padding: 0;
	box-sizing: border-box;
	overflow: visible;
}

.home-about__layout {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	width: 100%;
	overflow: visible;
}

.home-about__panel {
	position: relative;
	z-index: 2;
	width: 916px;
	max-width: 54%;
	flex: 0 0 auto;
	height: auto;
	align-self: center;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-right: -90px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 29, 92, .1);
	padding: 82px 56px 40px 46px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: visible;
	animation: home-about-panel-in .7s ease both;
}

.home-about__icon {
	position: absolute;
	top: -24px;
	left: -24px;
	width: 95px;
	height: 95px;
	background: #111d5c;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	box-shadow: 0 10px 28px rgba(17, 29, 92, .28);
	animation: home-about-icon-in .65s .15s ease both;
}

.home-about__icon img {
	display: block;
	width: 44px;
	height: 44px;
	object-fit: contain;
	object-position: center;
}

.home-about__title {
	margin: 0;
	padding-top: 0;
	font-family: var(--font-bold);
	font-size: 46px;
	font-weight: 700;
	line-height: 1.15;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.home-about__line {
	display: block;
	width: 44px;
	height: 4px;
	margin: 14px 0 22px;
	background: #111d5c;
	flex-shrink: 0;
}

.home-about__desc {
	flex: 1 1 auto;
	min-height: 0;
	max-height: 240px;
	height: 240px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 14px;
	margin-bottom: 24px;
	font-family: var(--font-light);
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	scrollbar-width: thin;
	scrollbar-color: #efefef #d8d8d8;
}

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

.home-about__desc::-webkit-scrollbar-track {
	background: #d8d8d8;
}

.home-about__desc::-webkit-scrollbar-thumb {
	background: #efefef;
	border-radius: 3px;
}

.home-about__desc::-webkit-scrollbar-thumb:hover {
	background: #e4e4e4;
}

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

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

.home-about__more,
.home-news__more {
	align-self: flex-start;
	flex: 0 0 55px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: auto;
	width: 196px;
	height: 55px;
	min-height: 55px;
	max-height: 55px;
	padding: 0 18px 0 22px;
	background: #111d5c;
	color: #fff;
	text-decoration: none;
	border: 0;
	border-radius: 0;
	font-family: var(--font-light);
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: .04em;
	box-sizing: border-box;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-about__more:hover,
.home-news__more:hover {
	background: #2685f9;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(38, 133, 249, .28);
	color: #fff;
}

.home-about__more-arrow,
.home-news__more-arrow {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 1.5px solid #fff;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color .25s ease, transform .25s ease;
	box-sizing: border-box;
	flex-shrink: 0;
}

.home-about__more:hover .home-about__more-arrow,
.home-news__more:hover .home-news__more-arrow {
	background: transparent;
	transform: translateX(3px);
}

.home-news__more {
	margin-top: 84px;
}

.home-about__media {
	position: relative;
	z-index: 1;
	width: 860px;
	max-width: none;
	flex: 0 0 860px;
	height: auto;
	overflow: hidden;
	background: #d8d8d8;
	animation: home-about-media-in .75s .1s ease both;
	align-self: center;
}

.home-about__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: initial;
	min-height: 0;
	transition: transform .6s ease;
}

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

.home-about__media--empty {
	height: 480px;
	min-height: 0;
	background: linear-gradient(135deg, #cfcfcf, #9a9a9a);
}

@keyframes home-about-panel-in {
	from {
		opacity: 0;
		transform: translateX(-28px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes home-about-media-in {
	from {
		opacity: 0;
		transform: translateX(28px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes home-about-icon-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 1700px) {
	.home-about__inner {
		padding-right: 0;
		max-width: none;
		width: 100%;
	}

	.home-about__panel {
		width: auto;
		max-width: none;
		flex: 1 1 auto;
		min-width: 0;
		padding: 74px 40px 32px 46px;
	}

	.home-about__media {
		width: min(860px, 48vw);
		flex: 0 0 min(860px, 48vw);
		max-width: none;
		height: auto;
	}
}

@media (max-width: 1100px) {
	.home-about {
		padding: 64px 0 72px;
	}

	.home-about__inner {
		width: 100%;
		padding: 0 24px;
		box-sizing: border-box;
	}

	.home-about__layout {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
	}

	.home-about__panel {
		width: 100%;
		max-width: none;
		height: auto;
		margin-top: -40px;
		margin-bottom: 0;
		margin-right: 0;
		padding: 72px 32px 36px 46px;
		order: 2;
		z-index: 2;
	}

	.home-about__media {
		width: 100%;
		max-width: none;
		flex: none;
		height: auto;
		order: 1;
	}

	.home-about__media img {
		min-height: 0;
		width: 100%;
		height: auto;
	}

	.home-about__media--empty {
		height: auto;
		min-height: 220px;
		aspect-ratio: 16 / 10;
	}

	.home-about__icon {
		left: -24px;
		top: -24px;
		width: 72px;
		height: 72px;
	}

	.home-about__icon img {
		width: 34px;
		height: 34px;
	}

	.home-about__title {
		font-size: 34px;
		padding-top: 8px;
	}

	.home-about__desc {
		height: 200px;
		max-height: 200px;
		font-size: 14px;
	}
}

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

	.home-about__inner {
		padding: 0 16px;
	}

	.home-about__panel {
		margin-top: -28px;
		padding: 48px 20px 28px;
	}

	.home-about__icon {
		left: -16px;
		top: -16px;
		width: 60px;
		height: 60px;
	}

	.home-about__icon img {
		width: 28px;
		height: 28px;
	}

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

	.home-about__line {
		margin: 10px 0 16px;
	}

	.home-about__desc {
		height: 180px;
		max-height: 180px;
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 20px;
	}

	.home-about__more,
	.home-news__more {
		width: 160px;
		height: 48px;
		padding: 0 12px 0 16px;
		font-size: 14px;
		gap: 10px;
	}

	.home-about__more-arrow,
	.home-news__more-arrow {
		width: 28px;
		height: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-about__panel,
	.home-about__media,
	.home-about__icon {
		animation: none;
	}

	.home-about__media img,
	.home-about__more,
	.home-about__more-arrow {
		transition: none;
	}
}

/* ── Home Video ── */
.home-video {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 80px 0 100px;
	background: #fff;
}

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

.home-video__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111;
	isolation: isolate;
}

.home-video__media,
.home-video__cover-img,
.home-video__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-video__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	background: #000;
}

.home-video__player.is-playing .home-video__media {
	opacity: 1;
	pointer-events: auto;
}

.home-video__cover {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: 0;
	transition: opacity .35s ease, visibility .35s ease;
}

.home-video__player.is-playing .home-video__cover {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.home-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(0, 0, 0, .28);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease, background .25s ease, opacity .35s ease, visibility .35s ease;
	backdrop-filter: blur(2px);
}

.home-video__play:hover {
	background: rgba(0, 0, 0, .42);
	transform: translate(-50%, -50%) scale(1.06);
}

.home-video__play-icon {
	display: flex;
	margin-left: 5px;
}

.home-video__play-icon svg {
	width: 36px;
	height: 36px;
}

.home-video__player.is-playing .home-video__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.home-video__player[data-home-video-static] .home-video__cover {
	position: relative;
}

.home-video__player[data-home-video-static] {
	aspect-ratio: 16 / 9;
}

@media (max-width: 1100px) {
	.home-video {
		padding: 56px 0 72px;
	}

	.home-video__play {
		width: 72px;
		height: 72px;
	}

	.home-video__play-icon svg {
		width: 30px;
		height: 30px;
	}
}

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

	.home-video__inner {
		padding: 0 16px;
	}

	.home-video__play {
		width: 60px;
		height: 60px;
		border-width: 1.5px;
	}

	.home-video__play-icon svg {
		width: 26px;
		height: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-video__cover,
	.home-video__play {
		transition: none;
	}
}

/* ── Home News ── */
.home-news {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	min-height: 550px;
	background-color: #eceae6;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-news__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	min-height: 550px;
	padding: 0;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
	align-items: stretch;
}

.home-news__intro {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 84px 36px 64px 0;
	box-sizing: border-box;
}

.home-news__title {
	margin: 0;
	font-family: var(--font-bold);
	font-size: 46px;
	font-weight: 700;
	line-height: 1.15;
	color: #111;
}

.home-news__line {
	display: block;
	width: 44px;
	height: 4px;
	margin: 14px 0 20px;
	background: #111d5c;
	flex-shrink: 0;
}

.home-news__desc {
	margin: 0;
	font-family: var(--font-light);
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	max-width: 280px;
}

.home-news__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	min-height: 100%;
}

.home-news__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 550px;
	padding: 74px 24px 64px;
	border-left: 1px solid #dfdfdf;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	transition: background .25s ease;
}

.home-news__card:hover {
	background: rgba(255, 255, 255, .35);
}

.home-news__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #d8d8d8;
	margin-bottom: 18px;
	flex-shrink: 0;
}

.home-news__thumb img,
.home-news__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.home-news__thumb-placeholder {
	background: linear-gradient(135deg, #cfcfcf, #9a9a9a);
}

.home-news__card:hover .home-news__thumb img {
	transform: scale(1.05);
}

.home-news__card-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	margin: 0 0 10px;
	font-family: var(--font-bold);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
}

.home-news__card-desc {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	margin: 0;
	font-family: var(--font-light);
	font-size: 14px;
	line-height: 1.65;
	color: #666;
}

.home-news__card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
}

.home-news__card-date {
	font-family: var(--font-light);
	font-size: 13px;
	color: #666;
	white-space: nowrap;
}

.home-news__card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 126px;
	height: 38px;
	padding: 0;
	background: #111d5c;
	color: #fff;
	font-family: var(--font-light);
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	white-space: nowrap;
	flex-shrink: 0;
	box-sizing: border-box;
}

@media (max-width: 1440px) {
	.home-news__inner {
		padding: 0 24px;
	}

	.home-news__intro {
		padding-right: 24px;
	}

	.home-news__card {
		padding: 56px 18px 48px;
	}
}

@media (max-width: 1100px) {
	.home-news {
		min-height: 0;
		background-size: 100% auto;
		background-repeat: repeat-y;
		background-position: top center;
	}

	.home-news__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 48px 24px;
	}

	.home-news__intro {
		padding: 0 0 32px;
	}

	.home-news__desc {
		max-width: none;
	}

	.home-news__list {
		grid-template-columns: 1fr;
	}

	.home-news__card {
		min-height: 0;
		padding: 28px 0 28px 20px;
		border-left: 1px solid #dfdfdf;
	}

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

@media (max-width: 640px) {
	.home-news__inner {
		padding: 40px 16px;
	}

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

	.home-news__desc {
		font-size: 14px;
	}

	.home-news__card {
		padding: 24px 0 24px 16px;
	}

	.home-news__card-title {
		font-size: 16px;
	}

	.home-news__card-desc {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-news__card,
	.home-news__thumb img {
		transition: none;
	}
}

/* ── Home Contact ── */
.home-contact {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 50px 0 50px;
	background: #fff;
	text-align: center;
}

.home-contact__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

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

.home-contact__desc {
	margin: 0 0 36px;
	max-width: 1200px;
	font-family: var(--font-light);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: #666;
}

.home-contact__btn {
	display: inline-flex;
	align-items: stretch;
	text-decoration: none;
	color: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}

.home-contact__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(17, 29, 92, .22);
	color: #fff;
}

.home-contact__btn-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 274px;
	height: 55px;
	padding: 0 20px;
	background: #111d5c;
	font-family: var(--font-light);
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: .02em;
	box-sizing: border-box;
	white-space: nowrap;
}

.home-contact__btn-icon {
	display: block;
	width: 57px;
	height: 55px;
	flex-shrink: 0;
	overflow: hidden;
	background: #2685f9;
}

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

@media (max-width: 1100px) {
	.home-contact {
		padding: 64px 0 72px;
	}

	.home-contact__desc {
		font-size: 15px;
		margin-bottom: 28px;
	}
}

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

	.home-contact__inner {
		padding: 0 16px;
	}

	.home-contact__desc {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.home-contact__btn-text {
		width: auto;
		min-width: 0;
		flex: 1 1 auto;
		padding: 0 16px;
		font-size: 13px;
	}

	.home-contact__btn {
		width: 100%;
		max-width: 331px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-contact__btn {
		transition: none;
	}
}

