﻿/* 首页全屏海报轮播（对齐 jingtai 静态页） */

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

/* 海报下方正文层（需高于 fixed 海报 z-index:1，滚动后才能露出） */
.front-page-content {
	position: relative;
	z-index: 10;
	background: #0b0b0f;
}

/* 为固定海报占位，后续区块从此往下排 */
.hero-spacer {
	height: 100vh;
	height: 100dvh;
	pointer-events: none;
}

#hero.hero-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	z-index: 1;
	overflow: hidden;
	background: #0b0b0f;
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
	will-change: transform;
}

.hero-slide {
	position: relative;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.15);
	transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.hero-slide.is-active .hero-slide-bg {
	transform: scale(1);
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		135deg,
		rgba(8, 8, 12, 0.72) 0%,
		rgba(8, 8, 12, 0.3) 50%,
		rgba(8, 8, 12, 0.6) 100%
	);
}

.hero-slide-glow {
	position: absolute;
	width: 60%;
	height: 60%;
	top: 20%;
	right: -10%;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(circle, #c69c6d, transparent 70%);
	transition: transform 1.5s ease;
}

.hero-slide.is-active .hero-slide-glow {
	transform: translateX(-20px) scale(1.1);
}

.hero-slide-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
	padding: 0 32px;
	color: #fff;
	text-align: center;
	opacity: 0;
	transform: translateY(60px) scale(0.92);
	transition:
		opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.4s,
		transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
	pointer-events: none;
}

.hero-slide.is-active .hero-slide-content {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.hero-slide-title {
	font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
	font-size: clamp(44px, 7vw, 84px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.5px;
	background: linear-gradient(145deg, #f0f0fa 0%, #b8b8d4 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 20px;
	transform: translateY(20px);
	opacity: 0;
	transition: transform 0.7s ease 0.6s, opacity 0.7s ease 0.6s;
}

.hero-slide.is-active .hero-slide-title {
	transform: translateY(0);
	opacity: 1;
}

.hero-slide-subtitle {
	font-size: clamp(16px, 1.4vw, 20px);
	color: rgba(220, 220, 240, 0.9);
	max-width: 600px;
	margin: 0 auto 36px;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 1.5;
	transform: translateY(20px);
	opacity: 0;
	transition: transform 0.7s ease 0.7s, opacity 0.7s ease 0.7s;
}

.hero-slide.is-active .hero-slide-subtitle {
	transform: translateY(0);
	opacity: 1;
}

.hero-slide-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(46, 46, 58, 0.75);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 16px 44px;
	border-radius: 60px;
	font-weight: 500;
	color: #fff;
	font-size: 17px;
	letter-spacing: 0.3px;
	text-decoration: none;
	transform: translateY(20px);
	opacity: 0;
	transition:
		transform 0.7s ease 0.8s,
		opacity 0.7s ease 0.8s,
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.hero-slide.is-active .hero-slide-btn {
	transform: translateY(0);
	opacity: 1;
}

.hero-slide-btn:hover {
	background: rgba(63, 63, 82, 0.9);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.hero-slide-btn-arrow {
	font-size: 18px;
	line-height: 1;
}

.hero-slide-number {
	position: absolute;
	bottom: 40px;
	right: 48px;
	z-index: 4;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.15);
	letter-spacing: 2px;
	font-variant-numeric: tabular-nums;
	pointer-events: none;
}

.hero-slide-number strong {
	font-weight: 600;
	font-size: 28px;
	color: rgba(255, 255, 255, 0.25);
}

.hero-controls {
	position: fixed;
	bottom: calc(40px + env(safe-area-inset-bottom, 0px));
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 24px;
	background: rgba(11, 11, 15, 0.5);
	backdrop-filter: blur(12px);
	padding: 10px 22px;
	border-radius: 60px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-arrows {
	display: flex;
	gap: 6px;
}

.hero-arrow {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #d0d0e0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.hero-arrow:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	transform: scale(1.08);
}

.hero-dots {
	display: flex;
	gap: 10px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
	border: none;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hero-dot.is-active {
	background: #c69c6d;
	width: 28px;
	border-radius: 6px;
	box-shadow: 0 0 20px rgba(198, 156, 109, 0.3);
}

.hero-dot.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	animation: heroProgressFill 3s linear forwards;
}

@keyframes heroProgressFill {
	from { width: 0; }
	to { width: 100%; }
}

.hero-dot:hover {
	background: rgba(255, 255, 255, 0.5);
}

.hero-autoplay-indicator {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c69c6d;
	box-shadow: 0 0 16px rgba(198, 156, 109, 0.5);
	transition: background 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}

.hero-autoplay-indicator.is-paused {
	background: rgba(198, 156, 109, 0.3);
	box-shadow: none;
}

body.hero-scrolled-past #hero.hero-banner,
body.hero-scrolled-past .hero-controls {
	visibility: hidden;
	pointer-events: none;
}

@media (max-width: 1100px) {
	.hero-controls {
		bottom: calc(28px + env(safe-area-inset-bottom, 0px));
		padding: 8px 16px;
		gap: 16px;
	}

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

	.hero-slide-number {
		right: 28px;
		bottom: 28px;
	}

	.hero-slide-btn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.hero-slide-content {
		padding: 0 20px;
	}

	.hero-slide-title {
		font-size: clamp(32px, 10vw, 44px);
		margin-bottom: 14px;
	}

	.hero-slide-subtitle {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.hero-controls {
		bottom: calc(20px + env(safe-area-inset-bottom, 0px));
		gap: 12px;
		padding: 8px 14px;
	}

	.hero-slide-number {
		display: none;
	}
}

/* 通栏海报下方全屏自动播放视频 */
.front-top-video.video-fullscreen {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #0b0b0f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.front-top-video__player {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%) scale(1.02);
	transition: transform 0.8s ease;
}

.front-top-video:hover .front-top-video__player {
	transform: translate(-50%, -50%) scale(1);
}

/* 产品索引 */
.front-products {
	padding: 80px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.front-products__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.front-products__title {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -0.8px;
	background: linear-gradient(135deg, #f0f0fa 30%, #b0b0ca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 16px;
	opacity: 0;
	transform: translateY(30px) scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.front-products__subtitle {
	color: #8a8aa0;
	font-size: 18px;
	max-width: 600px;
	margin: 0 0 48px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

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

.front-products__card {
	display: block;
	background: #13131b;
	border-radius: 28px;
	padding: 28px 16px 24px;
	border: 1px solid #1f1f2b;
	text-align: center;
	text-decoration: none;
	color: inherit;
	opacity: 0;
	transform: translateY(40px) scale(0.92);
	transition:
		opacity 0.7s ease var(--reveal-delay, 0s),
		transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) var(--reveal-delay, 0s),
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.5s ease;
}

.front-products__card.is-visible,
.front-products__title.is-visible,
.front-products__subtitle.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.front-products__card:hover {
	background: #1a1a26;
	border-color: #34344a;
	transform: translateY(-14px) scale(1.03);
	box-shadow: 0 28px 56px rgba(0, 0, 0, 0.6);
}

.front-products__card-img {
	background: #1e1e2a;
	border-radius: 20px;
	padding: 12px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	overflow: hidden;
}

.front-products__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.front-products__card:hover .front-products__card-img img {
	transform: scale(1.08);
}

.front-products__card-title {
	font-weight: 600;
	font-size: 18px;
	color: #eee;
	margin: 0;
}

.front-products__card-more {
	color: #8a8aa0;
	font-size: 14px;
	margin: 6px 0 0;
}

@media (max-width: 992px) {
	.front-products {
		padding: 64px 0;
	}

	.front-products__inner {
		padding: 0 24px;
	}

	.front-products__title {
		font-size: 36px;
	}
}

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

	.front-products__inner {
		padding: 0 20px;
	}

	.front-products__title {
		font-size: 32px;
	}

	.front-products__subtitle {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.front-products__grid {
		gap: 20px;
	}
}

/* 证书板块 */
.front-cert {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	background-color: #0b0b0f;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-bottom: none;
}

.front-cert__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 12, 0.6);
	z-index: 1;
}

.front-cert__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	padding: 0 48px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	height: 80vh;
	max-height: 800px;
	align-items: center;
}

.front-cert__left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.9s ease 0.3s, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.front-cert__left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.front-cert__title {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -0.8px;
	background: linear-gradient(135deg, #f0f0fa 30%, #b0b0ca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 16px;
}

.front-cert__desc {
	font-size: 18px;
	color: #b0b0c8;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 0 32px;
}

.front-cert__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(198, 156, 109, 0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(198, 156, 109, 0.3);
	padding: 14px 36px;
	border-radius: 60px;
	font-weight: 500;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.front-cert__btn:hover {
	background: rgba(198, 156, 109, 0.25);
	border-color: rgba(198, 156, 109, 0.6);
	color: #fff;
	transform: scale(1.04);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.front-cert__btn-arrow {
	font-size: 16px;
	line-height: 1;
}

.front-cert__right {
	background: rgba(18, 18, 26, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 24px;
	padding: 20px 16px;
	backdrop-filter: blur(4px);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	opacity: 0;
	transform: translateX(40px) scale(0.95);
	transition: opacity 0.9s ease 0.5s, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.front-cert__right.is-visible {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.front-cert__carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 16px;
}

.front-cert__track {
	display: flex;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
	will-change: transform;
}

.front-cert__slide {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	box-sizing: border-box;
}

.front-cert__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	background: #0f0f16;
	padding: 24px;
	max-height: 90%;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.front-cert__slide img:hover {
	transform: scale(1.04);
}

.front-cert__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
	z-index: 5;
}

.front-cert__nav:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.06);
}

.front-cert__nav--prev {
	left: 8px;
}

.front-cert__nav--next {
	right: 8px;
}

.front-cert__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}

.front-cert__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.front-cert__dot.is-active {
	background: #c69c6d;
	width: 24px;
	border-radius: 6px;
}

@media (max-width: 992px) {
	.front-cert {
		height: auto;
		min-height: 100vh;
		padding: 60px 0;
		background-attachment: scroll;
	}

	.front-cert__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		height: auto;
		padding: 40px 24px;
		max-height: none;
	}

	.front-cert__right {
		height: 400px;
	}

	.front-cert__nav {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.front-cert__inner {
		padding: 32px 20px;
	}

	.front-cert__title {
		font-size: 32px;
	}

	.front-cert__desc {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.front-cert__right {
		height: 320px;
		padding: 12px;
	}

	.front-cert__slide img {
		padding: 12px;
	}
}

/* 工艺展示全屏视频 */
.front-craft {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #0b0b0f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.front-craft__player {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%) scale(1.02);
	transition: transform 0.8s ease;
}

.front-craft:hover .front-craft__player {
	transform: translate(-50%, -50%) scale(1);
}

.front-craft__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.front-craft__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 40px;
	color: #fff;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.front-craft__content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.front-craft__title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #f0f0fa 30%, #b0b0ca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 16px;
}

.front-craft__subtitle {
	font-size: clamp(16px, 1.2vw, 20px);
	color: rgba(220, 220, 240, 0.92);
	max-width: 580px;
	line-height: 1.7;
	margin: 0 0 28px;
}

.front-craft__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(198, 156, 109, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(198, 156, 109, 0.3);
	padding: 14px 40px;
	border-radius: 60px;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.front-craft__btn:hover {
	background: rgba(198, 156, 109, 0.35);
	border-color: rgba(198, 156, 109, 0.6);
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.front-craft__btn-play {
	font-size: 12px;
	line-height: 1;
}

@media (max-width: 992px) {
	.front-craft__title {
		font-size: clamp(34px, 5vw, 52px);
	}

	.front-craft__subtitle {
		font-size: clamp(14px, 1.1vw, 17px);
	}

	.front-craft__btn {
		padding: 12px 30px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.front-craft__content {
		padding: 16px 20px;
	}

	.front-craft__title {
		font-size: clamp(28px, 7vw, 38px);
	}

	.front-craft__subtitle {
		font-size: clamp(13px, 1.8vw, 16px);
		max-width: 90%;
		margin-bottom: 22px;
	}

	.front-craft__btn {
		padding: 10px 24px;
		font-size: 13px;
	}
}

/* 品牌展示（两排滚动） */
.front-brands {
	width: 100%;
	padding: 70px 0 50px;
	background: #14141c;
	overflow: hidden;
}

.front-brands__title {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -0.8px;
	background: linear-gradient(135deg, #f0f0fa 30%, #b0b0ca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 40px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.front-brands__title.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.front-brands__scroll {
	display: flex;
	flex-direction: column;
	gap: 28px;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	padding: 10px 0;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.9s ease 0.3s, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
	/* 静态页 16s，慢三分之一 → 24s；两排共用 */
	--brands-duration: 32s;
}

.front-brands__scroll.is-visible {
	opacity: 1;
	transform: scale(1);
}

.front-brands__track {
	display: flex;
	gap: 60px;
	width: max-content;
	flex-shrink: 0;
	animation-duration: var(--brands-duration, 32s);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: paused;
}

.front-brands__scroll.is-ready .front-brands__track {
	animation-play-state: running;
}

.front-brands__track--left {
	animation-name: frontBrandsScrollLeft;
}

.front-brands__track--right {
	animation-name: frontBrandsScrollRight;
}

.front-brands__img {
	width: 160px;
	height: 120px;
	object-fit: contain;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	padding: 4px;
	flex-shrink: 0;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.front-brands__img:hover {
	transform: scale(1.08) rotate(1deg);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

@keyframes frontBrandsScrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes frontBrandsScrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

@media (max-width: 992px) {
	.front-brands__track {
		gap: 40px;
	}

	.front-brands__img {
		width: 130px;
		height: 98px;
	}
}

@media (max-width: 768px) {
	.front-brands {
		padding: 50px 0 30px;
	}

	.front-brands__title {
		font-size: 32px;
		margin-bottom: 28px;
	}

	.front-brands__scroll {
		gap: 20px;
	}

	.front-brands__track {
		gap: 30px;
	}

	.front-brands__img {
		width: 100px;
		height: 75px;
	}
}

@media (max-width: 480px) {
	.front-brands__scroll {
		gap: 16px;
	}

	.front-brands__track {
		gap: 20px;
	}

	.front-brands__img {
		width: 75px;
		height: 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-track,
	.hero-slide-bg,
	.hero-slide-content,
	.hero-slide-glow {
		transition: none !important;
	}

	.hero-dot.is-active::after {
		animation: none;
	}

	.front-products__title,
	.front-products__subtitle,
	.front-products__card,
	.front-cert__left,
	.front-craft__content,
	.front-brands__title,
	.front-brands__scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.front-brands__track {
		animation: none !important;
	}

	.front-top-video__player,
	.front-craft__player {
		transition: none;
	}
}
