/* ===== Site Header ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height, 88px);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-index .site-header:not(.is-scrolled) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
}

.page-index .site-header:not(.is-scrolled) .nav-link,
.page-index .site-header:not(.is-scrolled) .nav-link:hover,
.page-index .site-header:not(.is-scrolled) .nav-link.current {
	color: #fff;
}

.page-inner .site-header,
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height, 88px);
	margin: 0 auto;
	padding: 0 24px;
}

.site-logo img {
	height: 72px;
	width: auto;
	transition: height 0.3s ease;
}

.site-header.is-scrolled .site-logo img {
	height: 60px;
}

.main-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 18px;
	line-height: var(--header-height, 88px);
	font-size: 17px;
	font-weight: 500;
	color: var(--color-text);
	transition: color 0.25s ease;
	white-space: nowrap;
}

.nav-link:hover,
.nav-link.current {
	color: var(--color-primary);
}

.page-index .site-header:not(.is-scrolled) .nav-link.current::after {
	background: #fff;
}

.nav-link.current::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 22px;
	width: 20px;
	height: 2px;
	margin-left: -10px;
	background: var(--color-primary);
}

.nav-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.25s ease;
}

.nav-dropdown {
	position: absolute;
	top: calc(100% - 8px);
	left: 50%;
	min-width: 180px;
	padding: 8px 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: all 0.25s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.nav-item.has-dropdown:hover .nav-arrow {
	transform: rotate(180deg);
}

.nav-dropdown li a {
	display: block;
	padding: 12px 20px;
	font-size: 15px;
	color: var(--color-text);
	transition: all 0.2s ease;
}

.nav-dropdown li a:hover {
	background: var(--color-bg-gray);
	color: var(--color-primary);
	padding-left: 24px;
}

/* ===== Hero Banner (Home) ===== */
.hero-banner {
	position: relative;
	height: min(88vh, 760px);
	min-height: 520px;
	overflow: hidden;
}

.hero-banner .swiper-container,
.hero-banner .swiper-wrapper,
.hero-banner .swiper-slide {
	height: 100%;
}

.hero-slide {
	position: relative;
	height: 100%;
}

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

.hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-caption {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-42%);
	z-index: 2;
	padding: 0 24px;
}

.hero-caption-inner {
	max-width: var(--container-width);
	margin: 0 auto;
	color: #fff;
}

.hero-badge {
	display: inline-block;
	margin-bottom: 20px;
	padding: 6px 18px;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 2px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(6px);
}

.hero-caption h1 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.hero-caption p {
	font-size: clamp(16px, 2vw, 22px);
	opacity: 0.92;
	margin-bottom: 32px;
	letter-spacing: 1px;
}

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

.btn-hero {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 148px;
	height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.25s ease;
}

.btn-hero-primary {
	background: var(--color-primary);
	color: #fff;
	border: 2px solid var(--color-primary);
}

.btn-hero-primary:hover {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #fff;
}

.btn-hero-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-hero-outline:hover {
	background: #fff;
	color: var(--color-primary);
}

.hero-actions .btn-hero-primary {
	box-shadow: 0 6px 24px rgba(0, 150, 153, 0.35);
}

.hero-actions .btn-hero-outline {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
}

.hero-actions .btn-hero-outline:hover {
	background: #fff;
	color: var(--color-primary);
	border-color: #fff;
}

.hero-banner .swiper-pagination {
	bottom: 32px !important;
}

.hero-banner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	opacity: 0.5;
}

.hero-banner .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--color-primary);
	width: 28px;
	border-radius: 999px;
}

.hero-scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 3;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 12px;
	letter-spacing: 2px;
	pointer-events: none;
}

.hero-scroll-hint i {
	display: block;
	width: 22px;
	height: 36px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	position: relative;
}

.hero-scroll-hint i::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 8px;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: #fff;
	border-radius: 2px;
	animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroScrollDot {
	0%, 100% { transform: translateY(0); opacity: 1; }
	60% { transform: translateY(10px); opacity: 0.2; }
}

/* ===== Section Headers (Modern) ===== */
.section-header .section-desc {
	color: var(--color-accent);
	font-weight: 600;
	letter-spacing: 4px;
	margin-bottom: 8px;
}

.section-header h2 {
	font-size: clamp(26px, 3vw, 36px);
	color: var(--color-text);
	font-weight: 700;
	position: relative;
}

.section-header h2::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	border-radius: 2px;
}

.section-header-left {
	text-align: left;
}

.section-header-left h2::after {
	margin-left: 0;
}

.btn-more-solid {
	background: var(--color-primary);
	color: #fff !important;
	border-color: var(--color-primary);
	border-radius: 999px;
	padding: 12px 32px;
}

.btn-more-solid:hover {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
}

/* ===== About Split ===== */
.section-about-split {
	background: linear-gradient(180deg, #fff 0%, var(--color-bg-gray) 100%);
}

.section-about-split .content {
	padding: calc(var(--section-gap) + 16px) 24px;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.about-lead {
	color: var(--color-text-secondary);
	line-height: 2;
	font-size: 17px;
	margin: 24px 0 32px;
	text-align: justify;
}

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

.about-stat-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 150, 153, 0.08);
	border: 1px solid rgba(0, 150, 153, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 150, 153, 0.14);
}

.about-stat-card strong {
	display: block;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.2;
}

.about-stat-card span {
	display: block;
	margin-top: 8px;
	font-size: 15px;
	color: var(--color-text-secondary);
}

.about-stat-card-accent {
	grid-column: span 2;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-color: transparent;
}

.about-stat-card-accent strong,
.about-stat-card-accent span {
	color: #fff;
}

/* ===== Products Grid (3 items) ===== */
.section-products-grid {
	background: var(--color-bg-gray);
	position: relative;
	overflow: hidden;
}

.section-products-grid::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 150, 153, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.section-products-grid .content {
	padding: var(--section-gap) 24px;
	margin: 0 auto;
}

.home-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.home-product-card {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 56px rgba(0, 150, 153, 0.16);
}

.home-product-cover {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.home-product-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.home-product-card:hover .home-product-cover img {
	transform: scale(1.08);
}

.home-product-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 122, 124, 0.72);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.home-product-overlay span {
	padding: 10px 28px;
	border: 2px solid #fff;
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.home-product-card:hover .home-product-overlay {
	opacity: 1;
}

.home-product-info {
	padding: 28px 24px 32px;
	text-align: center;
}

.home-product-info h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 10px;
}

.home-product-info p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 50px;
}

/* ===== Products Modern (legacy swiper) ===== */
.section-products-modern {
	background: var(--color-bg-gray);
	position: relative;
	overflow: hidden;
}

.section-products-modern::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 150, 153, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.product-card-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	color: #fff;
	background: rgba(235, 133, 50, 0.92);
	backdrop-filter: blur(4px);
}

/* ===== Feature Grid ===== */
.section-features-modern {
	background: #fff;
	padding: var(--section-gap) 0;
}

.section-features-modern .content {
	padding: 0 24px;
	margin: 0 auto;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.feature-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px 32px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 150, 153, 0.25);
	box-shadow: 0 20px 48px rgba(0, 150, 153, 0.12);
}

.feature-icon {
	width: 72px;
	height: 72px;
	margin-bottom: 24px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(0, 150, 153, 0.12) 0%, rgba(0, 150, 153, 0.04) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 44px;
	height: auto;
	float: none;
	margin: 0;
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 12px;
}

.feature-card p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-text-secondary);
}

/* ===== Culture Banner ===== */
.home-culture-banner {
	position: relative;
	padding: 100px 24px;
	background: url(../img/centerbg.png) center/cover no-repeat;
	overflow: hidden;
}

.home-culture-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 122, 124, 0.88) 0%, rgba(0, 150, 153, 0.72) 50%, rgba(235, 133, 50, 0.55) 100%);
}

.home-culture-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.home-culture-title {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 2px;
}

.home-culture-desc {
	display: block;
	margin-top: 16px;
	font-size: clamp(16px, 2vw, 20px);
	opacity: 0.92;
	letter-spacing: 1px;
}

/* ===== News Cards ===== */
.section-news-cards .content {
	padding: var(--section-gap) 24px 48px;
}

.news-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.news-card {
	display: flex;
	gap: 24px;
	padding: 28px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	color: inherit;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 150, 153, 0.2);
	box-shadow: 0 12px 36px rgba(0, 150, 153, 0.1);
}

.news-card-date {
	flex-shrink: 0;
	width: 72px;
	text-align: center;
	padding: 12px 0;
	border-radius: 12px;
	background: var(--color-bg-gray);
}

.news-card-date strong {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
}

.news-card-date span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: var(--color-text-muted);
}

.news-card-body h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.5;
	margin-bottom: 10px;
	transition: color 0.25s ease;
}

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

.news-card-body p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card-link {
	display: inline-block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
}

/* ===== Home CTA ===== */
.home-cta {
	background: linear-gradient(135deg, #008588 0%, #006668 100%);
	padding: 72px 24px;
}

.home-cta-inner {
	text-align: center;
	color: #fff;
	padding: 0;
	margin: 0 auto;
}

.home-cta-inner h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	margin-bottom: 12px;
}

.home-cta-inner p {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 32px;
}

.home-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.home-cta .btn-hero-primary {
	background: #fff;
	color: var(--color-primary);
	border-color: #fff;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.home-cta .btn-hero-primary:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
	box-shadow: 0 8px 28px rgba(235, 133, 50, 0.35);
}

.home-cta .btn-hero-outline {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(6px);
}

.home-cta .btn-hero-outline:hover {
	background: rgba(255, 255, 255, 0.26);
	border-color: #fff;
	color: #fff;
}

/* ===== Product Swiper ===== */
.section-products-slider {
	padding: var(--section-gap) 0;
	background: #fff;
	overflow: hidden;
}

.product-swiper-wrap {
	position: relative;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.product-swiper {
	overflow: hidden;
	padding: 16px 0 32px;
}

.product-swiper .swiper-slide {
	width: 260px;
}

.product-card {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 150, 153, 0.18);
}

.product-card-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.product-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.product-card-body {
	padding: 18px 20px 22px;
}

.product-card-body h3 {
	font-size: 17px;
	color: var(--color-text);
	margin-bottom: 6px;
	font-weight: 600;
}

.product-card-body p {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.7;
	height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-card-more {
	display: inline-block;
	margin-top: 12px;
	font-size: 14px;
	color: var(--color-primary);
	font-weight: 500;
}

.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	color: var(--color-primary);
}

.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
	font-size: 18px;
	font-weight: bold;
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
	position: relative;
	height: 320px;
	margin-top: var(--header-height, 88px);
	background-color: var(--color-primary-dark);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.page-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
	padding: 0 24px;
}

.page-hero-content h1 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.page-hero-label {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 16px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 3px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(4px);
}

.page-hero-sm {
	height: auto;
	min-height: 220px;
	padding: 48px 24px 56px;
}

.page-hero-article .page-hero-content {
	max-width: 860px;
	margin: 0 auto;
}

.page-hero-title {
	font-size: clamp(22px, 3.5vw, 34px);
	line-height: 1.45;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.breadcrumb-sep {
	margin: 0 8px;
	opacity: 0.6;
}

.page-breadcrumb {
	font-size: 14px;
	opacity: 0.85;
}

.page-breadcrumb a {
	color: #fff;
}

.page-breadcrumb a:hover {
	text-decoration: underline;
}

/* ===== Page Main ===== */
.page-inner .page-main {
	padding: 56px 0 72px;
	background: linear-gradient(180deg, var(--color-bg-gray) 0%, #fff 160px);
}

.page-main {
	padding: 56px 0 72px;
}

.page-main .content {
	padding: 0 24px;
	margin: 0 auto;
}

.page-section-card {
	background: #fff;
	border-radius: 20px;
	padding: 48px 40px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.page-intro-text {
	max-width: 640px;
	margin: 0 auto 40px;
	text-align: center;
	color: var(--color-text-secondary);
	line-height: 1.9;
	font-size: 16px;
}

.page-intro {
	max-width: 900px;
	margin: 0 auto 48px;
	text-align: center;
}

.page-intro-left {
	text-align: left;
	margin: 24px 0 40px;
}

.page-intro-left p {
	text-align: justify;
}

.page-intro p {
	color: var(--color-text-secondary);
	line-height: 2;
	font-size: 17px;
	text-align: justify;
}

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

.about-stats-inline .about-stat-card-accent {
	grid-column: span 1;
}

/* Contact modern */
.contact-cards-modern {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 8px;
}

.contact-card-modern {
	text-align: center;
	padding: 40px 28px;
	background: var(--color-bg-gray);
	border-radius: 16px;
	border: 1px solid rgba(0, 150, 153, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-modern:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 150, 153, 0.12);
}

.contact-card-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 150, 153, 0.1);
}

.contact-card-icon img {
	width: 32px;
	height: auto;
	float: none;
	margin: 0;
	display: block;
}

.contact-card-modern .label {
	display: block;
	font-size: 13px;
	color: var(--color-text-muted);
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.contact-card-modern .value {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.5;
}

.contact-card-modern a.value:hover {
	color: var(--color-primary);
}

/* Inner list pages */
.product-list-page,
.news-list-page {
	margin-bottom: 16px;
}

.inner-pagination {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.inner-pagination .page {
	text-align: center;
}

.inner-pagination .page dd {
	display: inline-block;
	margin: 0 4px;
}

.inner-pagination .page dd a {
	display: inline-block;
	min-width: 36px;
	height: 36px;
	line-height: 34px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--color-text-secondary);
	font-size: 14px;
	transition: all 0.25s ease;
}

.inner-pagination .page dd a:hover,
.inner-pagination .page dd a.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Article detail */
.article-page-card {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 0 0 40px;
	box-shadow: 0 12px 48px rgba(0, 150, 153, 0.08);
	border: 1px solid rgba(0, 150, 153, 0.08);
	max-width: 860px;
	margin: -32px auto 0;
	overflow: hidden;
}

.article-page-card::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.article-meta-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	padding: 28px 40px 0;
}

.article-meta-item {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 13px;
	color: var(--color-text-secondary);
	background: var(--color-bg-gray);
}

.meta-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	margin-right: 8px;
	flex-shrink: 0;
}

.article-body {
	padding: 32px 48px 8px;
	line-height: 2;
	color: var(--color-text);
	font-size: 16px;
}

.article-body p {
	margin-bottom: 1.2em;
	text-align: justify;
}

.article-body h2,
.article-body h3,
.article-body h4 {
	color: var(--color-text);
	font-weight: 600;
	margin: 1.6em 0 0.8em;
	line-height: 1.4;
}

.article-body h2 {
	font-size: 22px;
	padding-left: 12px;
	border-left: 4px solid var(--color-primary);
}

.article-body h3 {
	font-size: 19px;
	color: var(--color-primary-dark);
}

.article-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 20px auto;
	display: block;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.article-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
}

.article-body table td,
.article-body table th {
	border: 1px solid rgba(0, 0, 0, 0.08);
	padding: 10px 14px;
}

.article-toolbar {
	padding: 8px 48px 0;
}

.btn-article-back {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 14px;
	color: var(--color-primary);
	border: 1px solid rgba(0, 150, 153, 0.35);
	transition: all 0.25s ease;
}

.btn-article-back:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.article-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 32px 48px 0;
	padding-top: 28px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-nav-item {
	display: block;
	padding: 20px 24px;
	background: var(--color-bg-gray);
	border-radius: 14px;
	border: 1px solid transparent;
	transition: all 0.25s ease;
	color: inherit;
}

.article-nav-item:hover {
	background: #fff;
	border-color: rgba(0, 150, 153, 0.2);
	box-shadow: 0 8px 24px rgba(0, 150, 153, 0.1);
}

.article-nav-prev:hover {
	transform: translateX(-4px);
}

.article-nav-next {
	text-align: right;
}

.article-nav-next:hover {
	transform: translateX(4px);
}

.article-nav-item .nav-label {
	display: block;
	font-size: 12px;
	color: var(--color-accent);
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.article-nav-item .nav-title {
	display: block;
	font-size: 15px;
	color: var(--color-text);
	line-height: 1.55;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.article-nav-item:hover .nav-title {
	color: var(--color-primary);
}

/* Product detail */
.product-detail-modern {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
	background: #fff;
	border-radius: 20px;
	padding: 48px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-detail-cover {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-detail-cover img {
	width: 100%;
	display: block;
}

.product-detail-block {
	margin-bottom: 32px;
}

.product-detail-block:last-of-type {
	margin-bottom: 0;
}

.product-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.stat-card {
	text-align: center;
	padding: 40px 24px;
	background: var(--color-bg-gray);
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
}

.stat-number {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.2;
}

.stat-label {
	display: block;
	margin-top: 8px;
	font-size: 16px;
	color: var(--color-text-secondary);
}

/* Contact cards */
.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.contact-card {
	text-align: center;
	padding: 40px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-4px);
}

.contact-card img {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	display: block;
}

.contact-card .label {
	display: block;
	font-size: 16px;
	color: var(--color-primary);
	margin-bottom: 8px;
	font-weight: 600;
}

.contact-card .value {
	display: block;
	font-size: 18px;
	color: var(--color-text);
	line-height: 1.6;
}

/* Product grid (list page) */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.product-grid-item {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.product-grid-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 150, 153, 0.15);
}

.product-grid-item .thumb {
	height: 240px;
	overflow: hidden;
}

.product-grid-item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-grid-item:hover .thumb img {
	transform: scale(1.06);
}

.product-grid-item .title {
	padding: 20px;
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	color: var(--color-text);
}

/* News list unified */
.news-list-unified .newsItem {
	border-bottom: 1px solid #eee;
	padding: 28px 0;
	margin: 0;
}

.news-list-unified .newsItem:last-child {
	border-bottom: none;
}

/* Product detail */
.product-detail-page {
	max-width: 960px;
	margin: 0 auto;
}

.product-detail-page h1 {
	font-size: 36px;
	color: var(--color-primary);
	text-align: center;
	margin-bottom: 32px;
}

.product-detail-cover {
	max-width: 640px;
	margin: 0 auto 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-detail-cover img {
	width: 100%;
	display: block;
}

.product-block-title {
	font-size: 22px;
	color: var(--color-accent);
	margin: 32px 0 16px;
	padding-left: 12px;
	border-left: 4px solid var(--color-accent);
}

.product-block-content {
	line-height: 2;
	color: var(--color-text-secondary);
	font-size: 17px;
}

/* Footer */
.site-footer {
	padding: 0;
	background: #1a1f24;
	color: rgba(255, 255, 255, 0.88);
}

.site-footer-top {
	padding: 72px 0 56px;
	background: linear-gradient(180deg, #252b31 0%, #1a1f24 100%);
	border-top: 3px solid transparent;
	border-image: linear-gradient(90deg, var(--color-primary), var(--color-accent)) 1;
}

.site-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 48px;
	padding: 0 24px;
	margin: 0 auto;
}

.footer-logo img {
	height: 64px;
	width: auto;
	filter: brightness(1.05);
}

.footer-slogan {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 1px;
}

.footer-desc {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.55);
	max-width: 320px;
}

.footer-nav-col h4,
.footer-contact-col h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}

.footer-nav-col h4::after,
.footer-contact-col h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--color-primary);
	border-radius: 1px;
}

.footer-nav-list li {
	margin-bottom: 14px;
}

.footer-nav-list a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-nav-list a:hover {
	color: var(--color-primary);
	padding-left: 6px;
}

.footer-contact-list li {
	margin-bottom: 20px;
}

.footer-contact-label {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.footer-contact-list a,
.footer-contact-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
}

.footer-contact-list a:hover {
	color: var(--color-primary);
}

.site-footer-bottom {
	padding: 24px 0;
	background: #14181c;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-bottom .content {
	padding: 0 24px;
	margin: 0 auto;
	text-align: center;
}

.site-footer-bottom p {
	font-size: 13px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.38);
}

.webFooter .content {
	margin: 0 auto;
}

/* Mobile nav updates */
.mobile-subnav {
	padding: 0 0 8px 24px;
}

.mobile-subnav a {
	display: block;
	padding: 10px 0;
	font-size: 14px;
	color: var(--color-text-secondary);
}

@media (max-width: 992px) {
	.stats-grid,
	.contact-cards,
	.product-grid,
	.about-grid,
	.feature-grid,
	.news-card-grid,
	.home-product-grid,
	.site-footer-grid,
	.contact-cards-modern,
	.about-stats-inline {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-stat-card-accent {
		grid-column: span 2;
	}

	.hero-banner {
		min-height: 460px;
		height: 70vh;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 64px;
	}

	.site-header {
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	}

	.page-index .site-header:not(.is-scrolled) {
		background: rgba(255, 255, 255, 0.98);
	}

	.page-index .site-header:not(.is-scrolled) .nav-link,
	.page-index .site-header:not(.is-scrolled) .nav-link:hover,
	.page-index .site-header:not(.is-scrolled) .nav-link.current {
		color: var(--color-text);
	}

	.site-logo img,
	.site-header.is-scrolled .site-logo img {
		height: 48px;
	}

	.site-header-inner.content {
		width: 100%;
		max-width: 100%;
		margin: 0 auto !important;
		padding: 0 16px !important;
		box-sizing: border-box;
	}

	.site-logo {
		flex-shrink: 0;
		display: flex;
		align-items: center;
	}

	.main-nav {
		display: none;
	}

	.mobileNav {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		float: none;
		margin: 0;
		margin-left: auto;
		width: 40px;
		height: 40px;
		padding: 4px;
		box-sizing: border-box;
		background: url(../img/menu.png) no-repeat center;
		background-size: 28px 28px;
	}

	.mobile-header-popover-container {
		position: fixed;
		left: 0;
		right: 0;
		top: calc(64px - 100vh);
		height: calc(100vh - 64px);
		overflow-y: auto;
		background: #fff;
		z-index: 999;
		opacity: 0;
		transition: all 0.35s ease;
	}

	.header-show {
		top: 64px;
		opacity: 1;
	}

	.mobile-header-item a,
	.mobile-nav-link {
		display: flex;
		height: 56px;
		align-items: center;
		padding: 0 24px;
		font-size: 16px;
		color: var(--color-text);
		border-bottom: 1px solid rgba(140, 140, 140, 0.15);
	}

	.mobile-header-contact-us {
		position: fixed;
		bottom: -60px;
		left: 0;
		right: 0;
		height: 60px;
		background: linear-gradient(180deg, #fafcfe 0%, #f4f7fb 100%);
		padding: 0 16px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		transition: all 0.35s ease;
		z-index: 1100;
	}

	.mobile-header-contact-us-show {
		bottom: 0;
	}

	.hero-banner {
		min-height: 420px;
		height: 62vh;
	}

	.page-index .hero-banner {
		margin-top: 0;
		padding-top: 64px;
		box-sizing: border-box;
	}

	.hero-caption {
		transform: translateY(-36%);
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn-hero {
		width: 100%;
		max-width: 240px;
	}

	.page-hero {
		height: 220px;
	}

	.page-hero-content h1 {
		font-size: 28px;
	}

	.stats-grid,
	.contact-cards,
	.product-grid,
	.about-grid,
	.feature-grid,
	.news-card-grid,
	.home-product-grid,
	.site-footer-grid {
		grid-template-columns: 1fr;
	}

	.home-product-cover {
		height: 240px;
	}

	.footer-brand {
		text-align: center;
	}

	.footer-desc {
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-nav-col h4::after,
	.footer-contact-col h4::after {
		left: 50%;
		margin-left: -16px;
	}

	.about-stats-inline,
	.contact-cards-modern,
	.product-detail-modern,
	.article-nav {
		grid-template-columns: 1fr;
	}

	.page-section-card,
	.article-page-card,
	.product-detail-modern {
		padding: 32px 24px;
	}

	.article-page-card {
		margin-top: -20px;
		padding-bottom: 28px;
	}

	.article-meta-bar {
		padding: 20px 20px 0;
	}

	.article-body,
	.article-toolbar,
	.article-nav {
		padding-left: 20px;
		padding-right: 20px;
	}

	.article-nav {
		margin-left: 20px;
		margin-right: 20px;
	}

	.about-stat-card-accent {
		grid-column: span 1;
	}

	.section-header-left {
		text-align: center;
	}

	.section-header-left h2::after {
		margin-left: auto;
	}

	.about-lead {
		text-align: center;
	}

	.news-card {
		flex-direction: column;
		gap: 16px;
	}

	.news-card-date {
		width: auto;
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 16px;
	}

	.news-card-date strong {
		font-size: 22px;
	}

	.news-card-date span {
		margin-top: 0;
	}

	.hero-scroll-hint {
		display: none;
	}

	.product-swiper .swiper-slide {
		width: 72%;
		max-width: 240px;
	}

	.product-swiper .swiper-button-prev,
	.product-swiper .swiper-button-next {
		display: none;
	}

	.product-card-img {
		height: 200px;
	}
}
