/* ============================================================
   HYT Klean — Main Stylesheet
   Tech-blue / Klean-style commercial kitchen ESP theme.
   ============================================================ */

/* ---------- 1. Base & utilities ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.hytk-body {
	margin: 0;
	font-family: var(--hytk-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: #23303f;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.hytk-container {
	max-width: var(--hytk-container);
	margin: 0 auto;
	padding: 0 24px;
}

.hytk-section {
	padding: 84px 0;
}

.hytk-section-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.hytk-eyebrow {
	display: inline-block;
	font-family: var(--hytk-font-alt);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--hytk-theme);
	background: var(--hytk-bg-light);
	padding: 6px 16px;
	border-radius: var(--hytk-radius-pill);
	margin-bottom: 14px;
}

.hytk-section-title {
	font-family: var(--hytk-font-display);
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.15;
	color: #14212e;
	margin: 0 0 14px;
}

.hytk-section-head p {
	color: #5a6b7c;
	margin: 0;
}

.hytk-block-title {
	font-family: var(--hytk-font-display);
	font-size: 24px;
	color: #14212e;
	margin: 0 0 16px;
}

/* ---------- 2. Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 30px;
	font-family: var(--hytk-font-alt);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	border: 2px solid transparent;
	border-radius: var(--hytk-radius-pill);
	cursor: pointer;
	text-decoration: none;
	transition: all .28s ease;
}

.btn i {
	font-size: 14px;
}

.btn-accent {
	background: var(--hytk-theme);
	color: #ffffff;
	box-shadow: var(--hytk-shadow);
}

.btn-accent:hover {
	background: var(--hytk-theme-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	border-color: var(--hytk-theme);
	color: var(--hytk-theme);
}

.btn-outline:hover {
	background: var(--hytk-theme);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-sm {
	padding: 9px 20px;
	font-size: 14px;
}

.btn-lg {
	padding: 16px 38px;
	font-size: 16px;
}

/* ---------- 3. Header (capsule nav) ---------- */
.hytk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: padding .3s ease, background .3s ease;
}

.hytk-body.hytk-scrolled .hytk-header {
	padding: 8px 0;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 4px 24px rgba(0, 92, 169, .08);
}

.hytk-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: var(--hytk-radius-pill);
	box-shadow: 0 8px 32px rgba(0, 92, 169, .12);
	padding: 10px 22px;
}

.hytk-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.hytk-brand-logo {
	height: 42px;
	width: auto;
}

.hytk-brand-name {
	font-family: var(--hytk-font-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--hytk-theme);
	letter-spacing: .5px;
	text-transform: uppercase;
}

/* Primary nav */
.hytk-nav .nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
}

.hytk-nav .nav-menu > li {
	position: relative;
}

.hytk-nav .nav-menu > li > a {
	display: block;
	padding: 10px 15px;
	font-family: var(--hytk-font-alt);
	font-size: 14.5px;
	font-weight: 600;
	color: #23303f;
	text-decoration: none;
	border-radius: var(--hytk-radius-pill);
	transition: all .22s ease;
	white-space: nowrap;
}

.hytk-nav .nav-menu > li > a:hover,
.hytk-nav .nav-menu > li.current-menu-item > a,
.hytk-nav .nav-menu > li.current-menu-ancestor > a {
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
}

/* Dropdown (capsule) */
.hytk-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	list-style: none;
	margin: 8px 0 0;
	padding: 10px;
	background: #ffffff;
	border-radius: var(--hytk-radius-lg);
	box-shadow: 0 16px 40px rgba(0, 92, 169, .16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .25s ease;
	z-index: 50;
}

.hytk-nav .nav-menu > li:hover > .sub-menu,
.hytk-nav .nav-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hytk-nav .sub-menu a {
	display: block;
	padding: 9px 14px;
	font-size: 14px;
	color: #23303f;
	text-decoration: none;
	border-radius: var(--hytk-radius-sm);
	transition: all .2s ease;
}

.hytk-nav .sub-menu a:hover {
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
}

/* Header actions */
.hytk-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hytk-header-icon {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 16px;
	cursor: pointer;
	transition: all .22s ease;
}

.hytk-header-icon:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-lang-switch {
	position: relative;
}

.hytk-lang-current {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	color: #23303f;
	text-decoration: none;
	border-radius: var(--hytk-radius-pill);
	cursor: pointer;
}

.hytk-lang-current:hover {
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
}

.hytk-lang-switch ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hytk-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 0;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	cursor: pointer;
}

.hytk-nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--hytk-theme);
	border-radius: 2px;
	transition: all .25s ease;
}

.hytk-body.nav-open .hytk-nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hytk-body.nav-open .hytk-nav-toggle span:nth-child(2) {
	opacity: 0;
}

.hytk-body.nav-open .hytk-nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Search drop */
.hytk-search-drop {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 20px 0;
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 16px 40px rgba(0, 92, 169, .14);
	border-radius: 0 0 var(--hytk-radius-lg) var(--hytk-radius-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all .25s ease;
}

.hytk-search-drop.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hytk-search-form {
	display: flex;
	align-items: center;
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-pill);
	overflow: hidden;
}

.hytk-search-field {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 13px 20px;
	font-size: 15px;
	color: #23303f;
	outline: none;
}

.hytk-search-submit {
	width: 50px;
	height: 50px;
	border: 0;
	background: var(--hytk-theme);
	color: #ffffff;
	font-size: 16px;
	cursor: pointer;
	transition: background .2s ease;
}

.hytk-search-submit:hover {
	background: var(--hytk-theme-dark);
}

/* ---------- 4. Inquiry popup ---------- */
.hytk-inquiry-popup {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}

.hytk-inquiry-popup.open {
	opacity: 1;
	visibility: visible;
}

.hytk-inquiry-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 38, .6);
	backdrop-filter: blur(3px);
}

.hytk-inquiry-popup-box {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: var(--hytk-radius-lg);
	padding: 36px 34px 30px;
	box-shadow: 0 30px 80px rgba(10, 24, 38, .35);
	transform: translateY(20px) scale(.98);
	transition: transform .3s ease;
}

.hytk-inquiry-popup.open .hytk-inquiry-popup-box {
	transform: translateY(0) scale(1);
}

.hytk-inquiry-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 15px;
	cursor: pointer;
	transition: all .2s ease;
}

.hytk-inquiry-popup-close:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-inquiry-popup-header {
	margin-bottom: 24px;
}

.hytk-inquiry-popup-title {
	font-family: var(--hytk-font-display);
	font-size: 30px;
	color: #14212e;
	margin: 0 0 8px;
}

.hytk-inquiry-popup-header p {
	margin: 0;
	color: #5a6b7c;
	font-size: 14px;
}

/* ---------- 5. Floating contact aside ---------- */
.hytk-aside {
	position: fixed;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 900;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hytk-aside-item {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-theme);
	color: #ffffff;
	font-size: 18px;
	text-decoration: none;
	box-shadow: var(--hytk-shadow);
	transition: all .25s ease;
	overflow: hidden;
}

.hytk-aside-item i {
	flex-shrink: 0;
}

.hytk-aside-item span {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	max-width: 0;
	transition: all .25s ease;
}

.hytk-aside-item:hover {
	border-radius: var(--hytk-radius-pill);
	width: auto;
	padding: 0 20px;
	gap: 10px;
	background: var(--hytk-accent);
	transform: translateX(-6px);
}

.hytk-aside-item:hover span {
	opacity: 1;
	max-width: 140px;
}

/* ---------- 6. Hero ---------- */
.hytk-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hytk-hero-swiper {
	height: 620px;
}

/* 兜底：即使 Swiper 未初始化，slide 也占满容器宽度，避免只显示一部分 */
.hytk-hero-swiper .swiper-slide {
	width: 100%;
}

.hytk-hero-slide {
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hytk-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 30, 52, .72) 0%, rgba(8, 30, 52, .35) 55%, rgba(8, 30, 52, .1) 100%);
}

.hytk-hero-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
	max-width: 720px;
}

.hytk-hero-title {
	font-family: var(--hytk-font-display);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.05;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.hytk-hero-desc {
	font-size: 17px;
	line-height: 1.8;
	margin: 0 0 28px;
	opacity: .92;
	max-width: 620px;
}

.hytk-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hytk-hero-actions .btn-outline {
	border-color: #ffffff;
	color: #ffffff;
}

.hytk-hero-actions .btn-outline:hover {
	background: #ffffff;
	color: var(--hytk-theme);
}

.hytk-hero-pagination {
	bottom: 28px !important;
}

.hytk-hero-pagination .swiper-pagination-bullet {
	background: #ffffff;
	opacity: .5;
	width: 10px;
	height: 10px;
}

.hytk-hero-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	width: 26px;
	border-radius: 6px;
	background: var(--hytk-accent);
}

.hytk-hero-prev,
.hytk-hero-next {
	color: #ffffff;
}

.hytk-hero-prev::after,
.hytk-hero-next::after {
	font-size: 22px;
	font-weight: 700;
}

.hytk-hero-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 96px;
	z-index: 3;
	pointer-events: none;
}

/* ---------- 7. Advantages ---------- */
.hytk-advantages {
	background: var(--hytk-bg-light);
}

.hytk-advantage-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.hytk-advantage-card {
	background: #ffffff;
	border-radius: var(--hytk-radius-lg);
	padding: 28px 22px;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0, 92, 169, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.hytk-advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 92, 169, .16);
}

.hytk-advantage-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 24px;
	transition: transform .4s ease;
}

.hytk-advantage-card:hover .hytk-advantage-icon {
	transform: rotateY(180deg);
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-advantage-num {
	font-family: var(--hytk-font-display);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: var(--hytk-theme);
	margin-bottom: 6px;
}

.hytk-advantage-title {
	font-family: var(--hytk-font-display);
	font-size: 17px;
	font-weight: 700;
	color: #14212e;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.hytk-advantage-desc {
	font-size: 13px;
	color: #5a6b7c;
	margin: 0;
}

/* ---------- 8. Split feature ---------- */
.hytk-split {
	background: #ffffff;
}

.hytk-split-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 56px;
	margin-bottom: 64px;
}

.hytk-split-row:last-child {
	margin-bottom: 0;
}

.hytk-split-media {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
	min-height: 320px;
}

.hytk-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hytk-split-placeholder,
.hytk-sales-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	background: linear-gradient(135deg, var(--hytk-bg-light), #dcecfa);
	color: var(--hytk-theme);
	font-size: 64px;
}

.hytk-split-body .hytk-section-title {
	margin-bottom: 16px;
}

.hytk-split-text {
	color: #5a6b7c;
	margin: 0 0 20px;
}

.hytk-split-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.hytk-split-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: #23303f;
}

.hytk-split-list li i {
	color: var(--hytk-accent);
}

/* ---------- 9. Data band ---------- */
.hytk-data-band {
	background: var(--hytk-theme);
	background-image: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .08), transparent 40%);
}

.hytk-data-band-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	gap: 56px;
}

.hytk-data-band-head .hytk-eyebrow {
	background: rgba(255, 255, 255, .15);
	color: #ffffff;
}

.hytk-data-band-head .hytk-section-title {
	color: #ffffff;
	margin-bottom: 12px;
}

.hytk-data-band-head p {
	color: rgba(255, 255, 255, .85);
	margin: 0;
}

.hytk-data-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.hytk-data-stat {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--hytk-radius-lg);
	padding: 24px 20px;
	text-align: center;
	backdrop-filter: blur(4px);
}

.hytk-data-num {
	display: block;
	font-family: var(--hytk-font-display);
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
}

.hytk-data-label {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, .85);
	margin-top: 4px;
}

/* ---------- 10. Product center ---------- */
.hytk-product-center {
	background: var(--hytk-bg-beige);
}

.hytk-product-center-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 260px;
	gap: 20px;
}

.hytk-product-feature-card {
	grid-row: span 2;
	height: 100%;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
}

.hytk-product-feature-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.hytk-product-feature-link > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.hytk-product-feature-link:hover > img {
	transform: scale(1.06);
}

.hytk-product-feature-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 26px;
	background: linear-gradient(180deg, rgba(8, 30, 52, .05) 30%, rgba(8, 30, 52, .78) 100%);
	color: #ffffff;
	transition: background .3s ease;
}

.hytk-product-feature-index {
	font-family: var(--hytk-font-display);
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	opacity: .9;
	margin-bottom: 8px;
}

.hytk-product-feature-title {
	font-family: var(--hytk-font-display);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.hytk-product-feature-model {
	font-size: 14px;
	opacity: .85;
	margin-bottom: 14px;
}

.hytk-product-feature-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(8px);
	transition: all .3s ease;
}

.hytk-product-feature-link:hover .hytk-product-feature-more {
	opacity: 1;
	transform: translateY(0);
}

.hytk-product-bg-card {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	position: relative;
}

.hytk-product-bg-card > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	text-decoration: none;
}

.hytk-product-bg-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	background: linear-gradient(180deg, rgba(8, 30, 52, .05) 40%, rgba(8, 30, 52, .7) 100%);
	color: #ffffff;
	transition: background .3s ease;
}

.hytk-product-bg-title {
	font-family: var(--hytk-font-display);
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.hytk-product-bg-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--hytk-accent);
	color: #ffffff;
	font-size: 14px;
	opacity: 0;
	transform: translateY(8px);
	transition: all .3s ease;
}

.hytk-product-bg-card:hover .hytk-product-bg-more {
	opacity: 1;
	transform: translateY(0);
}

.hytk-section-cta {
	text-align: center;
	margin-top: 40px;
}

/* ---------- 11. Product card grid (shortcode / related) ---------- */
.hytk-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hytk-product-grid-sm {
	grid-template-columns: repeat(4, 1fr);
}

.product-card {
	background: #ffffff;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 92, 169, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 92, 169, .16);
}

.product-card-media {
	display: block;
	aspect-ratio: 6 / 5;
	overflow: hidden;
	background: var(--hytk-bg-light);
}

.product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.product-card:hover .product-card-media img {
	transform: scale(1.05);
}

.product-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--hytk-theme);
	font-size: 40px;
}

.product-card-body {
	padding: 18px 20px 22px;
}

.product-card-title {
	font-family: var(--hytk-font-display);
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 4px;
}

.product-card-title a {
	color: #14212e;
	text-decoration: none;
}

.product-card-title a:hover {
	color: var(--hytk-theme);
}

.product-card-model {
	font-size: 13px;
	color: #5a6b7c;
	margin-bottom: 10px;
}

.product-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	color: var(--hytk-theme);
	text-decoration: none;
}

.product-card-link:hover {
	color: var(--hytk-accent);
}

/* ---------- 12. Video wall ---------- */
.hytk-video-wall {
	background: #ffffff;
}

.hytk-video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hytk-video-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
	background: #14212e;
}

.hytk-video-cover {
	cursor: pointer;
}

.hytk-video-cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hytk-video-cover:hover .hytk-video-cover-img {
	transform: scale(1.05);
}

.hytk-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 92, 169, 0.92);
	color: #ffffff;
	font-size: 24px;
	box-shadow: 0 8px 24px rgba(8, 30, 52, 0.4);
	transition: transform 0.25s ease, background 0.25s ease;
	pointer-events: none;
}

.hytk-video-cover:hover .hytk-video-play {
	transform: translate(-50%, -50%) scale(1.12);
	background: var(--hytk-accent);
}

.hytk-video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ---------- 13. Sales presence ---------- */
.hytk-sales {
	background: var(--hytk-bg-light);
}

.hytk-sales-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	align-items: center;
	gap: 56px;
}

.hytk-sales-media {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
}

.hytk-sales-media img {
	width: 100%;
}

.hytk-country-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 28px;
	padding: 0;
}

.hytk-country-list li {
	font-size: 13px;
	font-weight: 500;
	color: #23303f;
	background: #ffffff;
	border: 1px solid #e1ecf5;
	border-radius: var(--hytk-radius-pill);
	padding: 5px 13px;
}

/* ---------- 14. News ---------- */
.hytk-news {
	background: var(--hytk-bg-light-2);
}

.hytk-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.hytk-news-card {
	background: #ffffff;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 92, 169, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.hytk-news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 92, 169, .16);
}

.hytk-news-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--hytk-bg-light);
}

.hytk-news-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.hytk-news-card:hover .hytk-news-media img {
	transform: scale(1.05);
}

.hytk-news-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--hytk-theme);
	font-size: 40px;
}

.hytk-news-body {
	padding: 22px 24px 24px;
}

.hytk-news-date {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--hytk-theme);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 8px;
}

.hytk-news-type {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--hytk-accent);
	background: #eaf9ee;
	padding: 3px 10px;
	border-radius: var(--hytk-radius-pill);
	margin-bottom: 8px;
}

.hytk-news-title {
	font-family: var(--hytk-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 8px;
}

.hytk-news-title a {
	color: #14212e;
	text-decoration: none;
}

.hytk-news-title a:hover {
	color: var(--hytk-theme);
}

.hytk-news-excerpt {
	font-size: 14px;
	color: #5a6b7c;
	margin: 0 0 12px;
}

.hytk-news-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	color: var(--hytk-theme);
	text-decoration: none;
}

.hytk-news-more:hover {
	color: var(--hytk-accent);
}

/* ---------- 15. Footer ---------- */
.hytk-footer {
	background: var(--hytk-bg-light-2);
	border-top: 1px solid #e1ecf5;
	padding: 64px 0 0;
}

.hytk-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
	gap: 40px;
	padding-bottom: 48px;
}

.hytk-footer-logo img {
	height: 40px;
	width: auto;
	margin-bottom: 16px;
}

.hytk-footer-tagline {
	color: #5a6b7c;
	font-size: 14px;
	margin: 0 0 20px;
}

.hytk-footer-social {
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
}

.hytk-footer-social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 15px;
	text-decoration: none;
	transition: all .22s ease;
}

.hytk-footer-social a:hover {
	background: var(--hytk-theme);
	color: #ffffff;
	transform: translateY(-3px);
}

.hytk-footer-title {
	font-family: var(--hytk-font-display);
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	color: #14212e;
	margin: 0 0 18px;
}

.hytk-footer-links,
.hytk-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hytk-footer-links li {
	margin-bottom: 10px;
}

.hytk-footer-links a {
	color: #5a6b7c;
	text-decoration: none;
	font-size: 14px;
	transition: color .2s ease, padding-left .2s ease;
}

.hytk-footer-links a:hover {
	color: var(--hytk-theme);
	padding-left: 4px;
}

.hytk-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #5a6b7c;
}

.hytk-footer-contact i {
	color: var(--hytk-theme);
	margin-top: 4px;
}

.hytk-footer-contact a {
	color: #5a6b7c;
	text-decoration: none;
	word-break: break-all;
}

.hytk-footer-contact a:hover {
	color: var(--hytk-theme);
}

.hytk-footer-details {
	margin-bottom: 18px;
}

.hytk-footer-details summary {
	cursor: pointer;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	color: #23303f;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background: #ffffff;
	border-radius: var(--hytk-radius-sm);
	border: 1px solid #e1ecf5;
	transition: all .2s ease;
}

.hytk-footer-details summary::-webkit-details-marker {
	display: none;
}

.hytk-footer-details summary i {
	transition: transform .25s ease;
	color: var(--hytk-theme);
}

.hytk-footer-details[open] summary i {
	transform: rotate(180deg);
}

.hytk-footer-details .hytk-footer-links {
	padding: 10px 0 0;
}

.hytk-footer-details .hytk-footer-links li {
	margin-bottom: 6px;
}

.hytk-footer-qr {
	text-align: center;
	margin-top: 8px;
}

.hytk-footer-qr img {
	width: 110px;
	height: 110px;
	object-fit: contain;
	border: 1px solid #e1ecf5;
	border-radius: var(--hytk-radius-sm);
	background: #ffffff;
	padding: 6px;
	margin: 0 auto 8px;
}

.hytk-footer-qr-label {
	font-size: 13px;
	font-weight: 600;
	color: #23303f;
}

.hytk-footer-wa {
	background: var(--hytk-accent);
	color: #ffffff;
}

.hytk-footer-wa:hover {
	background: #1f9c3a;
	color: #ffffff;
}

.hytk-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid #e1ecf5;
	padding: 20px 0;
}

.hytk-footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: #7a8ba0;
}

.hytk-footer-bottom-links {
	list-style: none;
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
}

.hytk-footer-bottom-links a {
	font-size: 13px;
	color: #7a8ba0;
	text-decoration: none;
}

.hytk-footer-bottom-links a:hover {
	color: var(--hytk-theme);
}

/* ---------- 16. Page banner & breadcrumbs ---------- */
.hytk-page-banner {
	background: var(--hytk-bg-light);
	background-image: radial-gradient(circle at 90% 10%, rgba(0, 92, 169, .08), transparent 45%);
	padding: 150px 0 46px;
	margin-top: 0;
}

.hytk-page-title {
	font-family: var(--hytk-font-display);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	text-transform: uppercase;
	color: #14212e;
	margin: 0 0 12px;
}

.breadcrumbs {
	font-size: 14px;
}

.breadcrumbs-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.breadcrumbs-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #5a6b7c;
}

.breadcrumbs-item a {
	color: var(--hytk-theme);
	text-decoration: none;
}

.breadcrumbs-item a:hover {
	text-decoration: underline;
}

.breadcrumbs-sep {
	color: #a9b8c8;
}

/* ---------- 17. Page body & article ---------- */
.hytk-page-body {
	padding: 56px 24px 84px;
}

.hytk-entry-content {
	font-size: 16px;
	line-height: 1.85;
	color: #2a3949;
}

.hytk-entry-content > *:first-child {
	margin-top: 0;
}

.hytk-entry-content img {
	border-radius: var(--hytk-radius-sm);
}

.hytk-entry-content h2,
.hytk-entry-content h3,
.hytk-entry-content h4 {
	font-family: var(--hytk-font-display);
	color: #14212e;
}

.hytk-pagination-wrap {
	text-align: center;
	margin-top: 48px;
}

.hytk-pagination-wrap .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hytk-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: #23303f;
	font-family: var(--hytk-font-alt);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all .22s ease;
}

.hytk-pagination-wrap .page-numbers.current,
.hytk-pagination-wrap .page-numbers:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

/* ---------- 18. Single post ---------- */
.hytk-single {
	max-width: 860px;
}

.hytk-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: #5a6b7c;
	font-size: 14px;
	margin-bottom: 22px;
}

.hytk-single-meta i {
	color: var(--hytk-theme);
	margin-right: 6px;
}

.hytk-single-meta a {
	color: var(--hytk-theme);
	text-decoration: none;
}

.hytk-single-featured {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	margin-bottom: 26px;
	box-shadow: var(--hytk-shadow);
}

.hytk-single-featured img {
	width: 100%;
}

.hytk-single-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 32px 0;
	padding: 18px 0;
	border-top: 1px solid #e1ecf5;
	border-bottom: 1px solid #e1ecf5;
	font-family: var(--hytk-font-alt);
	font-weight: 600;
	font-size: 14px;
	color: #23303f;
}

.hytk-single-share a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 14px;
	text-decoration: none;
	transition: all .22s ease;
}

.hytk-single-share a:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-single-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 32px;
}

.hytk-single-nav a {
	display: block;
	padding: 16px 18px;
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-sm);
	color: #23303f;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all .22s ease;
}

.hytk-single-nav a:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-single-nav-next {
	text-align: right;
}

/* ---------- 19. Product single ---------- */
.hytk-product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 44px;
}

.hytk-product-gallery {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
}

.hytk-product-gallery img {
	width: 100%;
}

.hytk-product-gallery-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 64px;
}

.hytk-product-tag {
	display: inline-block;
	font-family: var(--hytk-font-alt);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--hytk-theme);
	background: var(--hytk-bg-light);
	padding: 6px 14px;
	border-radius: var(--hytk-radius-pill);
	margin-bottom: 16px;
}

.hytk-product-desc {
	font-size: 17px;
	color: #5a6b7c;
	margin-bottom: 26px;
}

.hytk-product-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

.hytk-product-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
}

.hytk-product-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.hytk-product-details > :only-child {
	grid-column: 1 / -1;
}

.hytk-product-specs,
.hytk-product-features {
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-lg);
	padding: 28px;
}

.hytk-spec-table {
	width: 100%;
	border-collapse: collapse;
}

.hytk-spec-table th,
.hytk-spec-table td {
	text-align: left;
	padding: 10px 6px;
	border-bottom: 1px solid #dfe9f3;
	font-size: 14px;
}

.hytk-spec-table th {
	color: #14212e;
	width: 42%;
	font-weight: 600;
}

.hytk-spec-table td {
	color: #5a6b7c;
}

.hytk-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hytk-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	color: #23303f;
	font-size: 14px;
}

.hytk-feature-list li i {
	color: var(--hytk-accent);
	margin-top: 3px;
}

.hytk-use-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hytk-use-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 7px 0;
	color: #23303f;
	font-size: 14px;
}

.hytk-use-list li i {
	color: var(--hytk-theme);
	margin-top: 3px;
}

.hytk-related {
	background: var(--hytk-bg-light-2);
}

.hytk-related-title {
	text-align: center;
	margin-bottom: 36px;
}

/* ---------- 20. Solutions grid ---------- */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.project-card {
	position: relative;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--hytk-shadow);
}

.project-card > a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.project-card:hover img {
	transform: scale(1.06);
}

.project-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 44px;
}

.project-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
	background: linear-gradient(180deg, rgba(8, 30, 52, .05) 40%, rgba(8, 30, 52, .75) 100%);
	color: #ffffff;
	transition: background .3s ease;
}

.project-card-overlay h3 {
	font-family: var(--hytk-font-display);
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.project-card-overlay span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(8px);
	transition: all .3s ease;
}

.project-card:hover .project-card-overlay span {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- 21. Forms ---------- */
.contact-form-wrap {
	max-width: 760px;
}

.hytk-inquiry-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.hytk-inquiry-form .form-field {
	margin-bottom: 16px;
}

.hytk-inquiry-form label {
	display: block;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 600;
	color: #23303f;
	margin-bottom: 6px;
}

.hytk-inquiry-form input[type="text"],
.hytk-inquiry-form input[type="email"],
.hytk-inquiry-form input[type="tel"],
.hytk-inquiry-form textarea {
	width: 100%;
	border: 1px solid #dfe9f3;
	border-radius: var(--hytk-radius-sm);
	background: #ffffff;
	padding: 12px 16px;
	font-size: 15px;
	font-family: var(--hytk-font-body);
	color: #23303f;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.hytk-inquiry-form input:focus,
.hytk-inquiry-form textarea:focus {
	border-color: var(--hytk-theme);
	box-shadow: 0 0 0 3px rgba(0, 92, 169, .12);
}

.hytk-inquiry-form textarea {
	resize: vertical;
}

.hytk-inquiry-status {
	margin-top: 14px;
	padding: 12px 16px;
	border-radius: var(--hytk-radius-sm);
	font-size: 14px;
	font-weight: 500;
}

.hytk-inquiry-status.ok {
	background: #eaf9ee;
	color: #1f9c3a;
}

.hytk-inquiry-status.err {
	background: #fdecec;
	color: #d0342c;
}

.hytk-search-form-lg {
	max-width: 620px;
	margin: 0 auto 40px;
}

.hytk-search-none {
	text-align: center;
	color: #5a6b7c;
	padding: 40px 0;
}

/* ---------- 22. 404 ---------- */
.hytk-404 {
	max-width: 720px;
	text-align: center;
}

.hytk-404-code {
	font-family: var(--hytk-font-display);
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	color: var(--hytk-bg-light);
	-webkit-text-stroke: 2px var(--hytk-theme);
	color: transparent;
}

.hytk-404-title {
	font-family: var(--hytk-font-display);
	font-size: 30px;
	color: #14212e;
	margin: 10px 0 12px;
}

.hytk-404 p {
	color: #5a6b7c;
	margin-bottom: 26px;
}

.hytk-404 .hytk-search-form {
	margin-bottom: 28px;
}

.hytk-404-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

/* ---------- 23. Misc ---------- */
.page-links {
	margin: 24px 0;
	font-family: var(--hytk-font-alt);
	font-weight: 600;
}

.hytk-comments-wrap {
	margin-top: 40px;
}

.hytk-comments-wrap .comment-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.hytk-comments-wrap .comment-body {
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-sm);
	padding: 18px;
	margin-bottom: 14px;
}

.hytk-comments-wrap .comment-meta {
	font-size: 13px;
	color: #5a6b7c;
	margin-bottom: 8px;
}

.hytk-comments-wrap .comment-reply-link {
	color: var(--hytk-theme);
	font-size: 13px;
	text-decoration: none;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1px solid #dfe9f3;
	border-radius: var(--hytk-radius-sm);
	padding: 11px 14px;
	font-size: 15px;
}

.comment-form .submit {
	background: var(--hytk-theme);
	color: #ffffff;
	border: 0;
	border-radius: var(--hytk-radius-pill);
	padding: 11px 28px;
	font-family: var(--hytk-font-alt);
	font-weight: 600;
	cursor: pointer;
}

@media (min-width: 601px) {
	.admin-bar .hytk-header {
		top: 32px;
	}
}

/* ---------- 24. About page ---------- */
.hytk-value-band {
	background: var(--hytk-bg-light-2);
}

.hytk-value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hytk-value-card {
	background: var(--hytk-white);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius-lg);
	padding: 36px 28px;
	text-align: center;
	transition: transform .28s ease, box-shadow .28s ease;
}

.hytk-value-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hytk-shadow-lg);
}

.hytk-value-icon {
	width: 66px;
	height: 66px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 26px;
}

.hytk-value-title {
	font-family: var(--hytk-font-display);
	font-size: 22px;
	font-weight: 700;
	color: #14212e;
	margin: 0 0 10px;
}

.hytk-value-text {
	color: #5a6b7c;
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

/* Certifications */
.hytk-cert-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hytk-cert-card {
	background: var(--hytk-bg-light-2);
	border: 1px solid transparent;
	border-radius: var(--hytk-radius-lg);
	padding: 34px 22px;
	text-align: center;
	transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.hytk-cert-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 92, 169, .25);
	box-shadow: var(--hytk-shadow);
}

.hytk-cert-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-white);
	box-shadow: var(--hytk-shadow);
	color: var(--hytk-theme);
	font-size: 24px;
}

.hytk-cert-title {
	font-family: var(--hytk-font-display);
	font-size: 20px;
	font-weight: 700;
	color: #14212e;
	margin: 0 0 8px;
}

.hytk-cert-text {
	color: #5a6b7c;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

/* CTA band */
.hytk-cta-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background:
		linear-gradient(135deg, var(--hytk-theme), var(--hytk-theme-dark)),
		radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .12), transparent 40%);
	border-radius: var(--hytk-radius-lg);
	padding: 52px 56px;
	box-shadow: var(--hytk-shadow-lg);
}

.hytk-cta-title {
	font-family: var(--hytk-font-display);
	font-size: clamp(26px, 3.4vw, 34px);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	margin: 0 0 8px;
}

.hytk-cta-desc {
	color: rgba(255, 255, 255, .85);
	font-size: 16px;
	margin: 0;
}

.hytk-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	flex-shrink: 0;
}

.hytk-cta-band .btn-accent {
	background: #ffffff;
	color: var(--hytk-theme);
	box-shadow: none;
}

.hytk-cta-band .btn-accent:hover {
	background: var(--hytk-bg-light);
}

.hytk-cta-band .btn-outline {
	border-color: #ffffff;
	color: #ffffff;
}

.hytk-cta-band .btn-outline:hover {
	background: rgba(255, 255, 255, .15);
}

/* ---------- 25. Contact page ---------- */
.hytk-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hytk-contact-card {
	background: var(--hytk-white);
	border: 1px solid var(--hytk-line);
	border-top: 3px solid var(--hytk-theme);
	border-radius: var(--hytk-radius);
	padding: 32px 20px;
	text-align: center;
	transition: transform .28s ease, box-shadow .28s ease;
}

.hytk-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hytk-shadow-lg);
}

.hytk-contact-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hytk-bg-light);
	color: var(--hytk-theme);
	font-size: 22px;
}

.hytk-contact-label {
	font-family: var(--hytk-font-display);
	font-size: 20px;
	font-weight: 700;
	color: #14212e;
	margin: 0 0 8px;
}

.hytk-contact-value {
	display: block;
	color: #5a6b7c;
	font-size: 15px;
	line-height: 1.55;
	word-break: break-word;
	text-decoration: none;
}

a.hytk-contact-value:hover {
	color: var(--hytk-theme);
}

/* Form + Map */
.hytk-contact-main {
	background: var(--hytk-bg-light-2);
}

.hytk-contact-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.hytk-contact-form-wrap {
	background: var(--hytk-white);
	border-radius: var(--hytk-radius-lg);
	box-shadow: var(--hytk-shadow);
	padding: 36px;
	height: 100%;
}

.hytk-contact-form-intro {
	color: #5a6b7c;
	font-size: 15px;
	margin: 0 0 22px;
}

.hytk-contact-form-wrap .btn {
	margin-top: 10px;
}

.hytk-contact-map-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hytk-contact-map {
	flex: 1;
	min-height: 320px;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
}

.hytk-contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
}

.hytk-contact-address {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--hytk-white);
	border-radius: var(--hytk-radius);
	padding: 14px 18px;
	color: #23303f;
	font-size: 15px;
	box-shadow: var(--hytk-shadow);
}

.hytk-contact-address i {
	color: var(--hytk-theme);
}

/* ---------- 20. News section head (action) ---------- */
.hytk-section-head-flex {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
	max-width: none;
}

.hytk-section-head-flex .hytk-section-head-title {
	max-width: 620px;
}

.hytk-section-head-action {
	flex-shrink: 0;
	margin-bottom: 4px;
}

/* ---------- 21. Product gallery carousel ---------- */
.hytk-gallery-main {
	position: relative;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	background: var(--hytk-bg-light);
}

.hytk-gallery-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hytk-bg-light);
}

.hytk-gallery-main .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.hytk-gallery-thumbs {
	margin-top: 14px;
	padding-bottom: 2px;
}

.hytk-gallery-thumbs .swiper-slide {
	width: 25%;
	aspect-ratio: 1 / 1;
	opacity: 0.45;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	transition: opacity 0.25s ease, border-color 0.25s ease;
}

.hytk-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: var(--hytk-theme);
}

.hytk-gallery-thumbs .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hytk-gallery-nav {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(20, 33, 46, 0.55);
	color: #ffffff;
	transition: background 0.25s ease;
}

.hytk-gallery-nav::after {
	font-size: 15px;
	font-weight: 700;
}

.hytk-gallery-nav:hover {
	background: var(--hytk-theme);
}

.hytk-gallery-pagination {
	bottom: 14px;
}

.hytk-gallery-pagination .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.6;
}

.hytk-gallery-pagination .swiper-pagination-bullet-active {
	background: var(--hytk-theme);
	opacity: 1;
}

/* ---------- 22. Product category filter bar ---------- */
.hytk-product-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.hytk-product-cat {
	display: inline-flex;
	align-items: center;
	font-family: var(--hytk-font-alt);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #23303f;
	background: var(--hytk-white);
	border: 1px solid #dfe6ee;
	border-radius: var(--hytk-radius-pill);
	padding: 8px 18px;
	transition: all 0.25s ease;
}

.hytk-product-cat:hover {
	border-color: var(--hytk-theme);
	color: var(--hytk-theme);
}

.hytk-product-cat.is-active {
	background: var(--hytk-theme);
	border-color: var(--hytk-theme);
	color: #ffffff;
}

/* ---------- 23. Team (archive + single) ---------- */
.hytk-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hytk-team-card {
	background: var(--hytk-white);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hytk-team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hytk-shadow-lg);
}

.hytk-team-media {
	display: block;
	aspect-ratio: 4 / 3.4;
	overflow: hidden;
	background: var(--hytk-bg-light);
}

.hytk-team-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.hytk-team-card:hover .hytk-team-media img {
	transform: scale(1.06);
}

.hytk-team-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 3.4;
	background: linear-gradient(135deg, var(--hytk-bg-light) 0%, #d9ecfb 100%);
	color: var(--hytk-theme);
	font-size: 44px;
}

.hytk-team-placeholder-lg {
	aspect-ratio: auto;
	height: 100%;
	min-height: 320px;
	font-size: 84px;
}

.hytk-team-body {
	padding: 20px 22px 24px;
	text-align: center;
}

.hytk-team-name {
	font-size: 20px;
	margin: 0 0 4px;
}

.hytk-team-name a {
	color: #14212e;
}

.hytk-team-name a:hover {
	color: var(--hytk-theme);
}

.hytk-team-position {
	display: inline-block;
	font-family: var(--hytk-font-alt);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--hytk-theme);
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-pill);
	padding: 4px 14px;
	margin-bottom: 12px;
}

.hytk-team-position-lg {
	font-size: 14px;
	padding: 6px 18px;
	margin-bottom: 24px;
}

.hytk-team-excerpt {
	color: var(--hytk-text-muted);
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 14px;
}

.hytk-team-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14px;
	color: var(--hytk-theme);
}

.hytk-team-more:hover {
	color: var(--hytk-accent);
}

/* Team single */
.hytk-team-single-layout {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 40px;
}

.hytk-team-single-media {
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow-lg);
	background: var(--hytk-bg-light);
}

.hytk-team-single-media img {
	width: 100%;
	height: auto;
	display: block;
}

.hytk-team-single-info {
	padding-top: 12px;
}

/* ---------- 24. FAQ (archive accordion + single) ---------- */
.hytk-faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.hytk-faq-item {
	background: var(--hytk-white);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius);
	margin-bottom: 14px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hytk-faq-item.open {
	border-color: rgba(0, 92, 169, 0.35);
	box-shadow: var(--hytk-shadow);
}

.hytk-faq-q {
	margin: 0;
}

.hytk-faq-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 20px 24px;
	font-family: var(--hytk-font-body);
	font-size: 17px;
	font-weight: 600;
	color: #14212e;
	transition: color 0.25s ease;
}

.hytk-faq-toggle:hover {
	color: var(--hytk-theme);
}

.hytk-faq-toggle i {
	flex: 0 0 auto;
	color: var(--hytk-theme);
	transition: transform 0.3s ease;
}

.hytk-faq-item.open .hytk-faq-toggle i {
	transform: rotate(180deg);
}

.hytk-faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.hytk-faq-item.open .hytk-faq-a {
	grid-template-rows: 1fr;
}

.hytk-faq-a-inner {
	overflow: hidden;
}

.hytk-faq-a-inner p:last-child {
	margin-bottom: 0;
}

.hytk-faq-item .hytk-entry-content {
	padding: 0 24px 22px;
	color: var(--hytk-text-muted);
	line-height: 1.75;
}

/* FAQ single CTA */
.hytk-faq-cta {
	margin-top: 44px;
	padding: 40px;
	text-align: center;
	background: linear-gradient(135deg, var(--hytk-bg-light) 0%, #ffffff 100%);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius-lg);
}

.hytk-faq-cta h3 {
	font-size: 26px;
	margin-bottom: 8px;
}

.hytk-faq-cta p {
	color: var(--hytk-text-muted);
	margin-bottom: 22px;
}

.hytk-faq-cta-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------- 25. Product single enhancements ---------- */
.hytk-product-subtitle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--hytk-font-alt);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #14212e;
	margin: 0 0 12px;
}

.hytk-product-subtitle i {
	color: var(--hytk-accent);
}

.hytk-product-highlights {
	border: 1px dashed #cfe2f2;
	background: var(--hytk-bg-light-2);
	border-radius: var(--hytk-radius);
	padding: 18px 20px;
	margin-bottom: 18px;
}

.hytk-highlight-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hytk-highlight-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 5px 0;
	font-size: 14px;
	color: #23303f;
}

.hytk-highlight-list li i {
	color: var(--hytk-accent);
	margin-top: 3px;
}

.hytk-product-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.hytk-product-trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12.5px;
	font-weight: 600;
	color: #5a6b7c;
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-pill);
	padding: 6px 13px;
}

.hytk-product-trust span i {
	color: var(--hytk-theme);
}

/* 规格表 / 特点块增强 */
.hytk-product-specs,
.hytk-product-features {
	border: 1px solid var(--hytk-line);
}

.hytk-spec-table th {
	color: var(--hytk-theme);
}

.hytk-spec-table th,
.hytk-spec-table td {
	padding: 12px 10px;
}

.hytk-spec-table tr:nth-child(even) th,
.hytk-spec-table tr:nth-child(even) td {
	background: rgba(0, 92, 169, 0.045);
}

.hytk-spec-table tr:last-child th,
.hytk-spec-table tr:last-child td {
	border-bottom: 0;
}

.hytk-block-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	margin-bottom: 16px;
}

.hytk-block-title::before {
	content: '';
	flex: 0 0 auto;
	width: 4px;
	height: 20px;
	background: var(--hytk-theme);
	border-radius: 4px;
}

/* ---------- 26. Single post enhancements ---------- */
.hytk-single-reading {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hytk-single-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 26px 0 4px;
	font-family: var(--hytk-font-alt);
	font-weight: 600;
	font-size: 13px;
	color: #23303f;
}

.hytk-single-tags i {
	color: var(--hytk-theme);
}

.hytk-single-tags a {
	display: inline-block;
	background: var(--hytk-bg-light);
	color: #23303f;
	font-size: 12.5px;
	font-weight: 600;
	padding: 5px 13px;
	border-radius: var(--hytk-radius-pill);
	transition: all 0.22s ease;
}

.hytk-single-tags a:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-author-box {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--hytk-bg-light);
	border-radius: var(--hytk-radius-lg);
	padding: 24px 28px;
	margin-bottom: 26px;
}

.hytk-author-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: var(--hytk-shadow);
}

.hytk-author-label {
	font-family: var(--hytk-font-alt);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--hytk-theme);
}

.hytk-author-name {
	font-size: 20px;
	margin: 4px 0 8px;
}

.hytk-author-bio {
	margin: 0;
	color: var(--hytk-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

/* 文章内容排版微调 */
.hytk-entry-content h2,
.hytk-entry-content h3 {
	margin-top: 1.4em;
}

.hytk-entry-content img {
	border-radius: var(--hytk-radius);
}

.hytk-entry-content blockquote {
	border-left: 4px solid var(--hytk-theme);
	background: var(--hytk-bg-light);
	margin: 1.4em 0;
	padding: 14px 22px;
	border-radius: 0 var(--hytk-radius-sm) var(--hytk-radius-sm) 0;
	color: #23303f;
}

.hytk-entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.hytk-entry-content ul,
.hytk-entry-content ol {
	padding-left: 1.3em;
}

.hytk-entry-content li {
	margin-bottom: 0.4em;
}

/* ---------- 27. About story block ---------- */
.hytk-about-story {
	background: var(--hytk-bg-light-2);
}

.hytk-about-story-body {
	max-width: 880px;
	margin: 0 auto;
	font-size: 16.5px;
	line-height: 1.85;
	color: var(--hytk-text-muted);
}

.hytk-about-story-body p:last-child {
	margin-bottom: 0;
}

.hytk-about-story-body img {
	border-radius: var(--hytk-radius-lg);
	box-shadow: var(--hytk-shadow);
	margin: 1.4em auto;
}

.hytk-about-story-body h2,
.hytk-about-story-body h3 {
	margin-top: 1.4em;
}

/* ---------- 28. Product single enhancements (v2) ---------- */
/* 分类 chips */
.hytk-product-cat-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.hytk-product-cat-chips a {
	display: inline-block;
	font-family: var(--hytk-font-alt);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #5a6b7c;
	background: #f0f6fc;
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius-pill);
	padding: 4px 12px;
	transition: all 0.22s ease;
}

.hytk-product-cat-chips a:hover {
	background: var(--hytk-theme);
	border-color: var(--hytk-theme);
	color: #ffffff;
}

/* 规格速览条 */
.hytk-specstrip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

.hytk-specstrip-item {
	background: var(--hytk-bg-light-2);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius-sm);
	padding: 12px 14px;
	text-align: center;
}

.hytk-specstrip-key {
	display: block;
	font-family: var(--hytk-font-alt);
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--hytk-theme);
	margin-bottom: 4px;
}

.hytk-specstrip-val {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: #14212e;
	word-break: break-word;
}

/* 应用场景 */
.hytk-product-apps {
	margin-top: 8px;
}

.hytk-application-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hytk-application-card {
	background: var(--hytk-white);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius);
	padding: 22px 18px;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hytk-application-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hytk-shadow);
}

.hytk-application-card i {
	font-size: 26px;
	color: var(--hytk-theme);
	margin-bottom: 10px;
}

.hytk-application-card h4 {
	font-size: 15px;
	margin: 0 0 6px;
}

.hytk-application-card p {
	font-size: 13px;
	color: var(--hytk-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* 资料下载 */
.hytk-product-docs {
	margin-top: 8px;
}

.hytk-docs-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.hytk-docs-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--hytk-bg-light);
	border: 1px solid var(--hytk-line);
	border-radius: var(--hytk-radius-sm);
	padding: 14px 16px;
	color: #23303f;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.22s ease;
}

.hytk-docs-list li a:hover {
	background: var(--hytk-theme);
	color: #ffffff;
}

.hytk-docs-list li a i:first-child {
	color: #e0524d;
}

.hytk-docs-list li a .fa-download {
	margin-left: auto;
	color: var(--hytk-theme);
}

.hytk-docs-list li a:hover i {
	color: #ffffff;
}

/* 粘性询盘栏 */
.hytk-sticky-quote {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	background: rgba(20, 33, 46, 0.96);
	box-shadow: 0 -8px 24px rgba(8, 30, 52, 0.25);
	padding: 12px 0;
	transform: translateY(110%);
	transition: transform 0.35s ease;
}

.hytk-sticky-quote.is-visible {
	transform: translateY(0);
}

.hytk-sticky-quote-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hytk-sticky-quote-name {
	font-family: var(--hytk-font-display);
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 55%;
}

.hytk-sticky-quote-actions {
	display: flex;
	gap: 10px;
}

.hytk-sticky-quote .btn-outline {
	border-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;
}

.hytk-sticky-quote .btn-outline:hover {
	background: #ffffff;
	color: #14212e;
}

body.hytk-sticky-open .hytk-footer {
	padding-bottom: 64px;
}

/* ---------- 29. About company album ---------- */
.hytk-album-band {
	background: var(--hytk-bg-light-2);
}

.hytk-album-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hytk-album-item {
	margin: 0;
	border-radius: var(--hytk-radius-lg);
	overflow: hidden;
	box-shadow: var(--hytk-shadow);
	background: var(--hytk-white);
}

.hytk-album-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.hytk-album-item:hover img {
	transform: scale(1.06);
}
