/* ============================================
   Tengzhuo Packing - Global Stylesheet
   Based on Visual_Design_Execution_Tengzhuo.md
   ============================================ */

/* ---- 0. Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ---- 1. CSS Variables ---- */
:root {
  /* Brand Colors */
  --color-primary: #1A56A8;
  --color-primary-hover: #123E7A;
  --color-accent: #f09456;
  --color-accent-hover: #d98149;

  /* Background & Surface */
  --color-bg: #FFFFFF;
  --color-surface: #F8F9FA;
  --color-border: #E2E8F0;

  /* Text Colors */
  --color-text-primary: #2D3748;
  --color-text-secondary: #718096;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing (8pt grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 120px;
  --space-3xl: 96px;
  --space-4xl: 120px;

  /* Layout */
  --container-max: 1400px;
  --container-content: 1400px;
  --gutter: 24px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;

  /* Transitions */
  --transition: 0.3s ease-in-out;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

/* ---- 2. Base Reset ---- */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

body img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* ---- 3. Typography Scale ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 600;
  text-wrap: balance;
}

h1.tzp-text-white,
h2.tzp-text-white,
h3.tzp-text-white,
h4.tzp-text-white,
h5.tzp-text-white,
h6.tzp-text-white {
  color: var(--color-white);
}

h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-primary);
}

.caption {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* Responsive Typography */
@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 19px; }
  h4 { font-size: 17px; }
  p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* ---- 4. Layout System ---- */

/* Container System */
.tzp-container {
  width: 100%;
  max-width: var(--container-content);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.tzp-container--wide {
  max-width: var(--container-max);
}

/* Section Spacing */
.tzp-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

@media (max-width: 767px) {
  .tzp-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

/* Section Title (centered) */
.tzp-section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.tzp-section-title h2 {
  margin-bottom: var(--space-sm);
}

/* ---- 5. Button System ---- */

/* Base Button */
.tzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

/* Primary Button - Orange CTA */
.tzp-btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.tzp-btn--primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 4px 14px rgba(240, 148, 86, 0.3);
  transform: translateY(-1px);
}

/* Secondary Button - Blue Outlined */
.tzp-btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.tzp-btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Mobile Full Width */
@media (max-width: 767px) {
  .tzp-btn {
    width: 100%;
  }
}

/* ---- 6. Form Inputs ---- */

/* Form Inputs */
.tzp-input,
.tzp-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.tzp-input:focus,
.tzp-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 168, 0.2);
}

.tzp-input::placeholder,
.tzp-select::placeholder {
  color: var(--color-text-secondary);
}

/* Textarea */
.tzp-textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.tzp-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 168, 0.2);
}

/* ---- 7. B2B Components ---- */

/* Specification Table (Zebra Striping) */
.tzp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.tzp-table thead {
  background-color: var(--color-surface);
}

.tzp-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-border);
}

.tzp-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}

.tzp-table tbody tr:nth-child(even) {
  background-color: var(--color-surface);
}

/* Card with Hover Effect */
.tzp-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tzp-card h3 {
  margin-bottom: var(--space-sm);
}

/* Card Image (tzp-card-img alias) */
.tzp-card-img,
.tzp-card-image {
  width: 100%;
  overflow: hidden;
}

.tzp-card-img img,
.tzp-card-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* Card Body/Content */
.tzp-card-body,
.tzp-card-content {
  padding: var(--space-lg);
}

.tzp-card-body h3,
.tzp-card-content h3 {
  margin-bottom: var(--space-sm);
}

.tzp-card-body p,
.tzp-card-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.tzp-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* Trust Badge Container */
.tzp-trust-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* ---- 8. Animation Utilities ---- */

/* Scroll Reveal Animation */
.tzp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tzp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 9. Utility Classes ---- */

/* Spacing Utilities - Margin Top */
.tzp-mt-xs { margin-top: var(--space-xs); }
.tzp-mt-sm { margin-top: var(--space-sm); }
.tzp-mt-md { margin-top: var(--space-md); }
.tzp-mt-lg { margin-top: var(--space-lg); }
.tzp-mt-xl { margin-top: var(--space-xl); }
.tzp-mt-2xl { margin-top: var(--space-2xl); }

/* Spacing Utilities - Margin Bottom */
.tzp-mb-xs { margin-bottom: var(--space-xs); }
.tzp-mb-sm { margin-bottom: var(--space-sm); }
.tzp-mb-md { margin-bottom: var(--space-md); }
.tzp-mb-lg { margin-bottom: var(--space-lg); }
.tzp-mb-xl { margin-bottom: var(--space-xl); }
.tzp-mb-2xl { margin-bottom: var(--space-2xl); }

/* Text Color Utilities */
.tzp-text-primary { color: var(--color-text-primary); }
.tzp-text-secondary { color: var(--color-text-secondary); }
.tzp-text-accent { color: var(--color-accent); }
.tzp-text-white { color: var(--color-white); }

/* Background Utilities */
.tzp-bg-surface { background-color: var(--color-surface); }
.tzp-bg-primary { background-color: var(--color-primary); }
.tzp-bg-white { background-color: var(--color-white); }

/* Text Alignment */
.tzp-text-left { text-align: left; }
.tzp-text-center { text-align: center; }
.tzp-text-right { text-align: right; }

/* Display Utilities */
.tzp-hidden { display: none; }
@media (max-width: 767px) {
  .tzp-hidden-mobile { display: none; }
}
@media (min-width: 768px) {
  .tzp-hidden-desktop { display: none; }
}

/* ========================================
   Top Bar Styles (Auxiliary Navigation)
   ======================================== */

.top-bar {
  background-color: #F8F9FA;
  border-bottom: 1px solid #E2E8F0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 100 !important;
  display: block !important;
  pointer-events: auto !important;
}

.top-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  min-height: 45px;
}

.top-bar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-bar-item {
  position: relative;
}

.top-bar-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4A5568;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 12px 0;
}

.top-bar-link:hover,
.top-bar-link.is-active {
  color: #1A56A8;
}

/* Top Bar Dropdown */
.top-bar-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  list-style: none !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
}

.top-bar-item:hover .top-bar-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.top-bar-dropdown li {
  margin: 0;
}

.top-bar-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2D3748;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-bar-dropdown a:hover {
  background-color: #F7FAFC;
  color: #1A56A8;
  padding-left: 24px;
}

/* Download Catalog Button */
.btn-top-bar-catalog {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A56A8;
  background: transparent;
  border: 1px solid #1A56A8;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-top-bar-catalog:hover {
  background-color: #1A56A8;
  color: #FFFFFF;
}

/* Header Wrapper */
.pl-header-wrapper {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #FFFFFF !important;
}

.navbar {
  position: relative;
  z-index: 10;
}

/* 防止导航链接文字换行 */
.nav-link {
  white-space: nowrap !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .top-bar {
    display: none !important;
  }
}

/* ============================================
   CTA Section (统一样式)
   ============================================ */

/* Section 背景 + 遮罩 */
.tzp-cta-section {
  background-image: url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/04/turnkey-automated-packaging-line-tengzhuo-3-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 30px 0px;
}

.tzp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(26, 86, 168, 0.85) 100%);
  backdrop-filter: blur(4px);
}

.tzp-cta-section .tzp-container {
  position: relative;
  z-index: 2;
}

/* 左右网格布局 */
.tzp-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .tzp-cta__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* 左侧文案区 */
.tzp-cta__left {
  color: #FFFFFF;
}

.tzp-cta__title {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .tzp-cta__title {
    font-size: 28px;
  }
}

.tzp-cta__description {
  font-size: 18px;
  color: #E2E8F0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.tzp-cta__lead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.tzp-cta__bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.tzp-cta__bullets li {
  padding-left: 40px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
}

.tzp-cta__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
  background: rgba(240, 148, 86, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tzp-cta__contact {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.tzp-cta__contact-item {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

.tzp-cta__contact-label {
  font-weight: 600;
  color: #A0AEC0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.tzp-cta__contact-value {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
}

.tzp-cta-section--shared .tzp-cta__lead {
  font-size: 20px;
  margin-top: 80px;
  margin-bottom: 20px;
}

.tzp-cta-section--shared .tzp-cta__bullets li:nth-child(1),
.tzp-cta-section--shared .tzp-cta__bullets li:nth-child(2) {
  font-size: 16px;
}

.tzp-cta-section--shared .tzp-cta__bullets li:nth-child(3),
.tzp-cta-section--shared .tzp-cta__bullets li:nth-child(4) {
  font-size: 15px;
}

.tzp-cta-section--shared .tzp-cta__form {
  line-height: 32px;
  padding: 32px;
}

.tzp-cta-section--shared .tzp-cta__form-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.tzp-cta-section--shared .tzp-cta__contact {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  height: 120px;
}

.tzp-cta-section--shared .tzp-cta__contact-item {
  min-width: 0;
}

@media (max-width: 767px) {
  .tzp-cta-section--shared .tzp-cta__contact {
    grid-template-columns: 1fr;
    height: auto;
  }
}

/* 右侧表单区 */
.tzp-cta__right {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .tzp-cta__right {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.tzp-cta__form {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .tzp-cta__form {
    padding: 32px 24px;
  }
}

.tzp-cta__form-title {
  color: #0A192F;
  margin-bottom: 32px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .tzp-cta__form-title {
    font-size: 22px;
  }
}

.tzp-cta__form-group {
  margin-bottom: 24px;
}

.tzp-cta__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4A5568;
  font-size: 14px;
}

.tzp-cta__form-input,
.tzp-cta__form-select,
.tzp-cta__form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  background-color: #F8F9FA;
  transition: all 0.3s ease;
}

.tzp-cta__form-input:focus,
.tzp-cta__form-select:focus,
.tzp-cta__form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(26, 86, 168, 0.1);
}

.tzp-cta__form-textarea {
  min-height: 140px;
  resize: vertical;
}

.tzp-cta__form-button {
  width: 100%;
  padding: 18px 32px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.tzp-cta__form-button:hover {
  background-color: #d98149;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(240, 148, 86, 0.3);
}

/* ============================================
   10. Hero Section Pattern
   ============================================ */

.tzp-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tzp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.7), transparent 120px);
  z-index: 1;
}

.tzp-hero .tzp-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 40px;
}

.tzp-hero-content {
  position: relative;
  color: #FFFFFF;
  max-width: 800px;
  text-align: left;
}

.tzp-hero h1 {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  text-align: left;
}

.tzp-hero h2,
.tzp-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 700px;
  opacity: 0.85;
  text-align: left;
}

.tzp-hero h2 {
  margin-top: 20px;
}

.tzp-hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#tzp-filling-machines-wrapper .tzp-hero-content {
  margin-bottom: 50px;
}

#tzp-filling-machines-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

#tzp-filling-machines-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

#tzp-filling-machines-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

.tzp-hero-buttons .tzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 18px 40px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.tzp-hero-buttons .tzp-btn--primary {
  background-color: #f09456;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(240, 148, 86, 0.4);
}

.tzp-hero-buttons .tzp-btn--primary:hover {
  background-color: #d98149;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 148, 86, 0.6);
}

.tzp-hero-buttons .tzp-btn--secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tzp-hero-buttons .tzp-btn--secondary:hover {
  background-color: #FFFFFF;
  color: #1A56A8;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .tzp-hero {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .tzp-hero .tzp-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tzp-hero h1 {
    font-size: 30px;
  }
  .tzp-hero h2,
  .tzp-hero p {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .tzp-hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .tzp-hero-buttons .tzp-btn {
    width: 100%;
  }
}

/* ============================================
   10A. Category Page Patterns
   ============================================ */

.tzp-category-page {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 16px;
}

.tzp-category-page a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.tzp-category-page img {
  max-width: 100%;
  display: block;
}

.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h1,
.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h2,
.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h3,
.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h4 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 600;
  text-wrap: balance;
}

.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h2 {
  font-size: 40px;
  line-height: 1.3;
}

.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h3 {
  font-size: 24px;
  line-height: 1.4;
}

.tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-primary);
}

.tzp-category-page .tzp-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.tzp-category-page section[id] {
  scroll-margin-top: 160px;
}

.tzp-category-page .tzp-section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.tzp-category-page .tzp-section-title.tzp-text-left,
.tzp-category-page .tzp-section-title.tzp-text-left h2 {
  text-align: left;
}

.tzp-category-page .tzp-section-title.tzp-text-left {
  padding-left: 0;
}

.tzp-category-page .tzp-section-title h2 {
  margin-bottom: var(--space-sm);
}

.tzp-category-page--level1 > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) .tzp-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.tzp-category-page--level2 > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) .tzp-container {
  width: 100%;
  max-width: var(--container-content);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.tzp-category-page--level1 .tzp-section:not(.tzp-hero) .tzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.tzp-category-page--level1 .tzp-section:not(.tzp-hero) .tzp-btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(240, 148, 86, 0.4);
}

.tzp-category-page--level1 .tzp-section:not(.tzp-hero) .tzp-btn--primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 6px 20px rgba(240, 148, 86, 0.5);
  transform: translateY(-2px);
}

.tzp-category-page--level2 .tzp-section .tzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.tzp-category-page--level2 .tzp-section .tzp-btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.tzp-category-page--level2 .tzp-section .tzp-btn--primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 4px 14px rgba(240, 148, 86, 0.3);
  transform: translateY(-1px);
}

.tzp-category-page--level2 .tzp-section .tzp-btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.tzp-category-page--level2 .tzp-section .tzp-btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tzp-category-page--level1 .tzp-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
}

.tzp-category-page--level1 .tzp-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(240, 148, 86, 0.15);
}

.tzp-category-page--level1 .tzp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tzp-category-page--level1 .tzp-card:hover::before {
  transform: scaleX(1);
}

.tzp-category-page--level2 .tzp-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-category-page--level2 .tzp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h1 {
    font-size: 36px;
  }

  .tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h2 {
    font-size: 28px;
  }

  .tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) h3 {
    font-size: 19px;
  }

  .tzp-category-page > :not(.tzp-cta-section):not(.tzp-hero):not(#cta) p {
    font-size: 15px;
    line-height: 1.7;
  }

  .tzp-category-page .tzp-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .tzp-category-page section[id] {
    scroll-margin-top: 110px;
  }

  .tzp-category-page--level1 .tzp-section:not(.tzp-hero) .tzp-btn {
    min-width: 280px;
  }

  .tzp-category-page--level2 .tzp-section .tzp-btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

/* ============================================
   10A-1. Filling Machines Page
   ============================================ */

#tzp-filling-machines-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

#tzp-filling-machines-wrapper #filling-products .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

#tzp-filling-machines-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#tzp-filling-machines-wrapper #filling-products .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

#tzp-filling-machines-wrapper .tzp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

#tzp-filling-machines-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

#tzp-filling-machines-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

#tzp-filling-machines-wrapper .tzp-text-center.tzp-mt-xl .tzp-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

#tzp-filling-machines-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#tzp-filling-machines-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

#tzp-filling-machines-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Precision-Automatic-Filling-Machines.webp');
}

#tzp-filling-machines-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

#tzp-filling-machines-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#tzp-filling-machines-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

#tzp-filling-machines-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#tzp-filling-machines-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

#tzp-filling-machines-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

#tzp-filling-machines-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

#tzp-filling-machines-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

#tzp-filling-machines-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

#tzp-filling-machines-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

#tzp-filling-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#tzp-filling-machines-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tzp-filling-machines-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

#tzp-filling-machines-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

#tzp-filling-machines-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#tzp-filling-machines-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

#tzp-filling-machines-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

#tzp-filling-machines-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

#tzp-filling-machines-wrapper .tzp-industry-item h3::before {
  display: none !important;
}

#tzp-filling-machines-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

#tzp-filling-machines-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

#tzp-filling-machines-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: tech-counter;
}

#tzp-filling-machines-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white);
}

#tzp-filling-machines-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

#tzp-filling-machines-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#tzp-filling-machines-wrapper .tzp-tech-item::before {
  content: '0' counter(tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

#tzp-filling-machines-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

#tzp-filling-machines-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

#tzp-filling-machines-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

#tzp-filling-machines-wrapper .tzp-tech-item h3,
#tzp-filling-machines-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

#tzp-filling-machines-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

#tzp-filling-machines-wrapper .tzp-cta-form {
  background-color: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

#tzp-filling-machines-wrapper .tzp-form-group {
  margin-bottom: 24px;
}

#tzp-filling-machines-wrapper .tzp-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 14px;
}

#tzp-filling-machines-wrapper .tzp-contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

#tzp-filling-machines-wrapper .tzp-contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

#tzp-filling-machines-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#tzp-filling-machines-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

#tzp-filling-machines-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

#tzp-filling-machines-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

#tzp-filling-machines-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

@media (max-width: 1023px) {
  #tzp-filling-machines-wrapper .tzp-grid-4,
  #tzp-filling-machines-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #tzp-filling-machines-wrapper .tzp-grid-4,
  #tzp-filling-machines-wrapper .tzp-grid-2,
  #tzp-filling-machines-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  #tzp-filling-machines-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  #tzp-filling-machines-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #tzp-filling-machines-wrapper .tzp-custom-card .tzp-card-image,
  #tzp-filling-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  #tzp-filling-machines-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-2. Capping Machines Page
   ============================================ */

#tzp-capping-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('https://placehold.co/1920x1080?text=Capping+Machine+Hero');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

#tzp-capping-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

#tzp-capping-hero .tzp-container {
  position: relative;
  z-index: 2;
}

#tzp-capping-hero .tzp-hero-content {
  max-width: 700px;
}

#tzp-capping-hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

#tzp-capping-hero .tzp-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #F0F0F0;
  margin-bottom: 32px;
}

#tzp-capping-hero .tzp-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#tzp-capping-hero .tzp-btn--secondary {
  border-color: var(--color-white);
  color: var(--color-white);
}

#tzp-capping-hero .tzp-btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

#tzp-capping-products {
  background-color: var(--color-white);
}

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

#tzp-capping-products .tzp-product-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#tzp-capping-products .tzp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#tzp-capping-products .tzp-product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

#tzp-capping-products .tzp-product-content {
  padding: 24px;
}

#tzp-capping-products .tzp-product-content h3 {
  margin-bottom: 16px;
}

#tzp-capping-products .tzp-product-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

#tzp-capping-customization {
  background-color: var(--color-surface);
}

#tzp-capping-customization .tzp-section-title p {
  color: var(--color-text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

#tzp-capping-customization .tzp-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

#tzp-capping-customization .tzp-custom-card {
  background-color: var(--color-white);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#tzp-capping-customization .tzp-custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#tzp-capping-customization .tzp-custom-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}

#tzp-capping-customization .tzp-custom-card h3 {
  margin-bottom: 16px;
}

#tzp-capping-customization .tzp-custom-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
}

#tzp-capping-customization .tzp-custom-cta {
  text-align: center;
}

#tzp-capping-industries {
  background-color: var(--color-white);
}

#tzp-capping-industries .tzp-industries-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#tzp-capping-industries .tzp-industries-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

#tzp-capping-industries .tzp-industry-item {
  margin-bottom: 32px;
}

#tzp-capping-industries .tzp-industry-item:last-child {
  margin-bottom: 0;
}

#tzp-capping-industries .tzp-industry-item h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

#tzp-capping-industries .tzp-industry-item p {
  font-size: 15px;
  color: var(--color-text-secondary);
}

#tzp-capping-industries .tzp-industry-item p::before {
  content: '✓ ';
  color: var(--color-accent);
  font-weight: 600;
  margin-right: 8px;
}

#tzp-capping-technology {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#tzp-capping-technology h2 {
  color: var(--color-white);
}

#tzp-capping-technology .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

#tzp-capping-technology .tzp-tech-item h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}

#tzp-capping-technology .tzp-tech-item p {
  color: #E0E0E0;
  font-size: 15px;
}

#tzp-capping-integration {
  background-color: var(--color-white);
}

#tzp-capping-integration .tzp-integration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#tzp-capping-integration .tzp-integration-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

#tzp-capping-integration h2 {
  margin-bottom: 24px;
}

#tzp-capping-integration .tzp-integration-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

@media (max-width: 1199px) {
  #tzp-capping-customization .tzp-custom-grid,
  #tzp-capping-technology .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 991px) {
  #tzp-capping-products .tzp-product-grid,
  #tzp-capping-industries .tzp-industries-layout,
  #tzp-capping-integration .tzp-integration-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  #tzp-capping-industries .tzp-industries-layout,
  #tzp-capping-integration .tzp-integration-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  #tzp-capping-products .tzp-product-grid,
  #tzp-capping-customization .tzp-custom-grid,
  #tzp-capping-technology .tzp-tech-grid {
    grid-template-columns: 1fr;
  }
}

#tzp-capping-machines-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#tzp-capping-machines-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

#tzp-capping-machines-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Precision-Automatic-Capping-Machines-1.webp');
}

#tzp-capping-machines-wrapper .tzp-hero-content {
  margin-bottom: 50px;
}

#tzp-capping-machines-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

#tzp-capping-machines-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

#tzp-capping-machines-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

#tzp-capping-machines-wrapper .tzp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#tzp-capping-machines-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

#tzp-capping-machines-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

#tzp-capping-machines-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

#tzp-capping-machines-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#tzp-capping-machines-wrapper .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

#tzp-capping-machines-wrapper .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

#tzp-capping-machines-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

#tzp-capping-machines-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#tzp-capping-machines-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

#tzp-capping-machines-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#tzp-capping-machines-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

#tzp-capping-machines-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

#tzp-capping-machines-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

#tzp-capping-machines-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

#tzp-capping-machines-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

#tzp-capping-machines-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

#tzp-capping-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#tzp-capping-machines-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tzp-capping-machines-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

#tzp-capping-machines-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

#tzp-capping-machines-wrapper .tzp-text-center.tzp-mt-xl .tzp-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

#tzp-capping-machines-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#tzp-capping-machines-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 0;
}

#tzp-capping-machines-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

#tzp-capping-machines-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

#tzp-capping-machines-wrapper .tzp-industry-item h3::before,
#tzp-capping-machines-wrapper .tzp-industry-item p::before {
  display: none !important;
  content: none !important;
}

#tzp-capping-machines-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

#tzp-capping-machines-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

#tzp-capping-machines-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: capping-tech-counter;
}

#tzp-capping-machines-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white);
}

#tzp-capping-machines-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: capping-tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

#tzp-capping-machines-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#tzp-capping-machines-wrapper .tzp-tech-item::before {
  content: '0' counter(capping-tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

#tzp-capping-machines-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

#tzp-capping-machines-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

#tzp-capping-machines-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

#tzp-capping-machines-wrapper .tzp-tech-item h3,
#tzp-capping-machines-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

#tzp-capping-machines-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

#tzp-capping-machines-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#tzp-capping-machines-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

#tzp-capping-machines-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

#tzp-capping-machines-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

#tzp-capping-machines-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

#tzp-capping-integration .tzp-integration-desc {
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  #tzp-capping-machines-wrapper .tzp-grid-3,
  #tzp-capping-machines-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #tzp-capping-machines-wrapper .tzp-grid-3,
  #tzp-capping-machines-wrapper .tzp-grid-2,
  #tzp-capping-machines-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  #tzp-capping-machines-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  #tzp-capping-machines-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #tzp-capping-machines-wrapper .tzp-custom-card .tzp-card-image,
  #tzp-capping-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  #tzp-capping-machines-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-3. Sleeving & Labeling Page
   ============================================ */

.tzp-sleeving-labeling-wrapper .tzp-container--wide {
  max-width: var(--container-max);
}

.tzp-sleeving-labeling-wrapper .tzp-grid {
  display: grid;
  gap: var(--space-xl);
}

.tzp-sleeving-labeling-wrapper .tzp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.tzp-sleeving-labeling-wrapper .tzp-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.tzp-sleeving-labeling-wrapper .tzp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.tzp-sleeving-labeling-wrapper .tzp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('https://placehold.co/1920x1080?text=High-Speed+Labeling+Machine+Operation');
  background-size: cover;
  background-position: center;
}

.tzp-sleeving-labeling-wrapper .tzp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.tzp-sleeving-labeling-wrapper .tzp-hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 800px;
}

.tzp-sleeving-labeling-wrapper .tzp-hero-content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.tzp-sleeving-labeling-wrapper .tzp-hero-content p {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: var(--space-xl);
}

.tzp-sleeving-labeling-wrapper .tzp-hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.tzp-sleeving-labeling-wrapper .tzp-category-section {
  padding: var(--space-3xl) 0;
}

.tzp-sleeving-labeling-wrapper .tzp-category-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.tzp-sleeving-labeling-wrapper .tzp-category-feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.tzp-sleeving-labeling-wrapper .tzp-category-feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-category-feature-content h3 {
  margin-bottom: var(--space-md);
}

.tzp-sleeving-labeling-wrapper .tzp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tzp-sleeving-labeling-wrapper .tzp-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card:hover .tzp-product-card-image img {
  transform: scale(1.05);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card-content {
  padding: var(--space-lg);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card-content h3 {
  margin-bottom: var(--space-sm);
}

.tzp-sleeving-labeling-wrapper .tzp-product-card-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card {
  background-color: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card-image {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card h3 {
  margin-bottom: var(--space-sm);
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.tzp-sleeving-labeling-wrapper .tzp-industry-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item {
  margin-bottom: var(--space-xl);
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item h3 {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item h3::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 28px;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item {
  text-align: center;
  padding: var(--space-lg);
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.tzp-sleeving-labeling-wrapper .tzp-integration-section {
  text-align: center;
}

.tzp-sleeving-labeling-wrapper .tzp-integration-section p {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  font-size: 18px;
}

.tzp-sleeving-labeling-wrapper .tzp-integration-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tzp-sleeving-labeling-wrapper .tzp-integration-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-footer-cta {
  position: relative;
  background-image: url('https://placehold.co/1920x800?text=Factory+Background');
  background-size: cover;
  background-position: center;
}

.tzp-sleeving-labeling-wrapper .tzp-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.tzp-sleeving-labeling-wrapper .tzp-footer-cta-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.tzp-sleeving-labeling-wrapper .tzp-footer-cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.tzp-sleeving-labeling-wrapper .tzp-footer-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.tzp-sleeving-labeling-wrapper .tzp-contact-info {
  margin-bottom: var(--space-lg);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.tzp-sleeving-labeling-wrapper .tzp-form-box {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
}

.tzp-sleeving-labeling-wrapper .tzp-form-group {
  margin-bottom: var(--space-md);
}

.tzp-sleeving-labeling-wrapper .tzp-form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-text-primary);
}

.tzp-sleeving-labeling-wrapper .tzp-form-submit {
  width: 100%;
  margin-top: var(--space-md);
}

@media (max-width: 1023px) {
  .tzp-sleeving-labeling-wrapper .tzp-grid--2,
  .tzp-sleeving-labeling-wrapper .tzp-grid--3,
  .tzp-sleeving-labeling-wrapper .tzp-grid--4,
  .tzp-sleeving-labeling-wrapper .tzp-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tzp-sleeving-labeling-wrapper .tzp-category-feature,
  .tzp-sleeving-labeling-wrapper .tzp-industry-section,
  .tzp-sleeving-labeling-wrapper .tzp-footer-cta-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .tzp-sleeving-labeling-wrapper .tzp-grid--2,
  .tzp-sleeving-labeling-wrapper .tzp-grid--3,
  .tzp-sleeving-labeling-wrapper .tzp-grid--4,
  .tzp-sleeving-labeling-wrapper .tzp-category-grid {
    grid-template-columns: 1fr;
  }

  .tzp-sleeving-labeling-wrapper .tzp-hero {
    min-height: 60vh;
  }

  .tzp-sleeving-labeling-wrapper .tzp-hero-content {
    text-align: left;
  }
}

.tzp-sleeving-labeling-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.tzp-sleeving-labeling-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

.tzp-sleeving-labeling-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Flawless-Sleeving-Labeling-Machines-for-Every-Container-Shape.webp');
}

.tzp-sleeving-labeling-wrapper .tzp-hero-content {
  margin-bottom: 50px;
}

.tzp-sleeving-labeling-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

.tzp-sleeving-labeling-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

.tzp-sleeving-labeling-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

.tzp-sleeving-labeling-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.tzp-sleeving-labeling-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

.tzp-sleeving-labeling-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

.tzp-sleeving-labeling-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.tzp-sleeving-labeling-wrapper .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.tzp-sleeving-labeling-wrapper .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

.tzp-sleeving-labeling-wrapper #sleeving-labeling-products .tzp-card .tzp-btn--secondary {
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.tzp-sleeving-labeling-wrapper #sleeving-labeling-products .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white) !important;
}

.tzp-sleeving-labeling-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

.tzp-sleeving-labeling-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tzp-sleeving-labeling-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

.tzp-sleeving-labeling-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tzp-sleeving-labeling-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

.tzp-sleeving-labeling-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

.tzp-sleeving-labeling-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

.tzp-sleeving-labeling-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 0;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item h3::before {
  display: none !important;
  content: none !important;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

.tzp-sleeving-labeling-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: sleeving-tech-counter;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: sleeving-tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item::before {
  content: '0' counter(sleeving-tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-item h3,
.tzp-sleeving-labeling-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

.tzp-sleeving-labeling-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

.tzp-sleeving-labeling-wrapper .tzp-bg-primary .tzp-section-title h2,
.tzp-sleeving-labeling-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white) !important;
}

.tzp-sleeving-labeling-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tzp-sleeving-labeling-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.tzp-sleeving-labeling-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

.tzp-sleeving-labeling-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

.tzp-sleeving-labeling-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

.tzp-sleeving-labeling-wrapper .tzp-integration-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  .tzp-sleeving-labeling-wrapper .tzp-grid-2,
  .tzp-sleeving-labeling-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tzp-sleeving-labeling-wrapper .tzp-grid-2,
  .tzp-sleeving-labeling-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  .tzp-sleeving-labeling-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  .tzp-sleeving-labeling-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-card-image,
  .tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  .tzp-sleeving-labeling-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-4. Sealing Machines Page
   ============================================ */

#sealing-machines-wrapper .sm-hero {
  position: relative;
  min-height: 80vh;
  background-image: url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/100-Airtight-Sealing-Seaming-Solutions-for-Maximum-Product-Security.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: 145px;
}

#sealing-machines-wrapper .sm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

#sealing-machines-wrapper .sm-hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding-left: 80px;
  max-width: 800px;
}

#sealing-machines-wrapper .sm-hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

#sealing-machines-wrapper .sm-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 32px;
  opacity: 0.95;
}

#sealing-machines-wrapper .sm-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#sealing-machines-wrapper .sm-section-title {
  text-align: center;
  margin-bottom: 64px;
}

#sealing-machines-wrapper .sm-section-title h2 {
  margin-bottom: 16px;
}

#sealing-machines-wrapper .sm-section-lead {
  font-size: 18px;
  color: var(--color-text-secondary);
}

#sealing-machines-wrapper .sm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

#sealing-machines-wrapper .sm-card {
  background-color: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#sealing-machines-wrapper .sm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#sealing-machines-wrapper .sm-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-surface);
}

#sealing-machines-wrapper .sm-card-image--spaced {
  margin-bottom: 20px;
}

#sealing-machines-wrapper .sm-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sealing-machines-wrapper .sm-card-content {
  padding: 32px;
}

#sealing-machines-wrapper .sm-card h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
}

#sealing-machines-wrapper .sm-card p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

#sealing-machines-wrapper .sm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

#sealing-machines-wrapper .sm-feature-card {
  text-align: center;
}

#sealing-machines-wrapper .sm-feature-card h3 {
  margin-bottom: 12px;
}

#sealing-machines-wrapper .sm-feature-card p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

#sealing-machines-wrapper .sm-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#sealing-machines-wrapper .sm-split-image {
  order: 1;
}

#sealing-machines-wrapper .sm-split-content {
  order: 2;
}

#sealing-machines-wrapper .sm-split-image img {
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#sealing-machines-wrapper .sm-industry-item {
  margin-bottom: 32px;
}

#sealing-machines-wrapper .sm-industry-item h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#sealing-machines-wrapper .sm-industry-item h3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

#sealing-machines-wrapper .sm-industry-item p {
  color: var(--color-text-secondary);
  padding-left: 40px;
}

#sealing-machines-wrapper .sm-tech-section {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#sealing-machines-wrapper .sm-tech-section h2 {
  color: var(--color-white);
  margin-bottom: 64px;
}

#sealing-machines-wrapper .sm-tech-item {
  text-align: center;
  color: var(--color-white);
}

#sealing-machines-wrapper .sm-tech-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

#sealing-machines-wrapper .sm-tech-item h3 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 20px;
}

#sealing-machines-wrapper .sm-tech-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

#sealing-machines-wrapper .sm-center-cta {
  text-align: center;
  margin-top: 48px;
}

#sealing-machines-wrapper .sm-inline-link {
  color: var(--color-primary);
  font-weight: 600;
}

#sealing-machines-wrapper .sm-cta-section {
  background-color: var(--color-surface);
}

#sealing-machines-wrapper .sm-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

#sealing-machines-wrapper .sm-cta-content h2 {
  color: var(--color-primary);
  margin-bottom: 16px;
}

#sealing-machines-wrapper .sm-cta-content p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

#sealing-machines-wrapper .sm-cta-contact {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

#sealing-machines-wrapper .sm-cta-contact strong {
  color: var(--color-primary);
}

#sealing-machines-wrapper .sm-cta-form {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

#sealing-machines-wrapper .sm-form-group {
  margin-bottom: 20px;
}

#sealing-machines-wrapper .sm-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

#sealing-machines-wrapper .sm-form-input,
#sealing-machines-wrapper .sm-form-select,
#sealing-machines-wrapper .sm-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#sealing-machines-wrapper .sm-form-input:focus,
#sealing-machines-wrapper .sm-form-select:focus,
#sealing-machines-wrapper .sm-form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 168, 0.2);
}

#sealing-machines-wrapper .sm-form-textarea {
  min-height: 120px;
  resize: vertical;
}

#sealing-machines-wrapper .sm-submit-btn {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  #sealing-machines-wrapper .sm-hero-content {
    padding-left: 32px;
  }

  #sealing-machines-wrapper .sm-grid-3,
  #sealing-machines-wrapper .sm-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #sealing-machines-wrapper .sm-split-section,
  #sealing-machines-wrapper .sm-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  #sealing-machines-wrapper .sm-hero {
    padding-top: 95px;
  }

  #sealing-machines-wrapper .sm-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  #sealing-machines-wrapper .sm-hero-subtitle {
    font-size: 16px;
  }

  #sealing-machines-wrapper .sm-grid-3,
  #sealing-machines-wrapper .sm-grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #sealing-machines-wrapper .sm-card-content {
    padding: 24px;
  }

  #sealing-machines-wrapper .sm-cta-form {
    padding: 32px 24px;
  }
}

#sealing-machines-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#sealing-machines-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

#sealing-machines-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/100-Airtight-Sealing-Seaming-Solutions-for-Maximum-Product-Security.webp');
}

#sealing-machines-wrapper .tzp-hero::before {
  background: none;
}

#sealing-machines-wrapper .tzp-hero-content {
  margin-bottom: 50px;
  padding-left: 0;
}

#sealing-machines-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

#sealing-machines-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

#sealing-machines-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

#sealing-machines-wrapper .tzp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#sealing-machines-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

#sealing-machines-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

#sealing-machines-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

#sealing-machines-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#sealing-machines-wrapper .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

#sealing-machines-wrapper .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

#sealing-machines-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

#sealing-machines-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#sealing-machines-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

#sealing-machines-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#sealing-machines-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

#sealing-machines-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

#sealing-machines-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

#sealing-machines-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

#sealing-machines-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

#sealing-machines-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

#sealing-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#sealing-machines-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sealing-machines-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

#sealing-machines-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

#sealing-machines-wrapper .sm-center-cta {
  text-align: center;
  margin-top: 20px;
}

#sealing-machines-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#sealing-machines-wrapper .sm-split-content h2 {
  margin-bottom: 8px;
}

#sealing-machines-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 0;
}

#sealing-machines-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

#sealing-machines-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

#sealing-machines-wrapper .tzp-industry-item h3::before,
#sealing-machines-wrapper .tzp-industry-item p::before {
  display: none !important;
  content: none !important;
}

#sealing-machines-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

#sealing-machines-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

#sealing-machines-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: sealing-tech-counter;
}

#sealing-machines-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: sealing-tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

#sealing-machines-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#sealing-machines-wrapper .tzp-tech-item::before {
  content: '0' counter(sealing-tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

#sealing-machines-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

#sealing-machines-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

#sealing-machines-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

#sealing-machines-wrapper .tzp-text-white {
  color: var(--color-white);
}

#sealing-machines-wrapper .tzp-bg-primary .tzp-section-title h2,
#sealing-machines-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white) !important;
}

#sealing-machines-wrapper .tzp-tech-item h3,
#sealing-machines-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

#sealing-machines-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

#sealing-machines-wrapper .sm-tech-icon {
  display: none;
}

#sealing-machines-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#sealing-machines-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

#sealing-machines-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

#sealing-machines-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

#sealing-machines-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

#sealing-machines-wrapper .tzp-integration-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  #sealing-machines-wrapper .tzp-grid-3,
  #sealing-machines-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #sealing-machines-wrapper .tzp-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #sealing-machines-wrapper .tzp-grid-3,
  #sealing-machines-wrapper .tzp-grid-2,
  #sealing-machines-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  #sealing-machines-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  #sealing-machines-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #sealing-machines-wrapper .tzp-custom-card .tzp-card-image,
  #sealing-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  #sealing-machines-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-5. End-of-Line & QC Page
   ============================================ */

#tzp-eol-qc-wrapper .eol-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: 145px;
  background-image: url('https://placehold.co/1920x1080?text=Robotic+Palletizer+in+Operation');
  background-size: cover;
  background-position: center;
}

#tzp-eol-qc-wrapper .eol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#tzp-eol-qc-wrapper .eol-hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 800px;
}

#tzp-eol-qc-wrapper .eol-hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

#tzp-eol-qc-wrapper .eol-hero p {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 32px;
}

#tzp-eol-qc-wrapper .eol-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#tzp-eol-qc-wrapper .eol-products {
  background-color: var(--color-white);
}

#tzp-eol-qc-wrapper .eol-product-category {
  margin-bottom: 64px;
}

#tzp-eol-qc-wrapper .eol-product-category:last-child {
  margin-bottom: 0;
}

#tzp-eol-qc-wrapper .eol-product-category h3 {
  margin-bottom: 32px;
  color: var(--color-primary);
}

#tzp-eol-qc-wrapper .eol-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#tzp-eol-qc-wrapper .eol-product-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#tzp-eol-qc-wrapper .eol-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#tzp-eol-qc-wrapper .eol-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

#tzp-eol-qc-wrapper .eol-product-card-content {
  padding: 24px;
}

#tzp-eol-qc-wrapper .eol-product-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

#tzp-eol-qc-wrapper .eol-product-card p {
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

#tzp-eol-qc-wrapper .eol-customization {
  background-color: var(--color-surface);
}

#tzp-eol-qc-wrapper .eol-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

#tzp-eol-qc-wrapper .eol-custom-card {
  text-align: center;
}

#tzp-eol-qc-wrapper .eol-custom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

#tzp-eol-qc-wrapper .eol-custom-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

#tzp-eol-qc-wrapper .eol-custom-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

#tzp-eol-qc-wrapper .eol-custom-cta {
  text-align: center;
  margin-top: 48px;
}

#tzp-eol-qc-wrapper .eol-industry {
  background-color: var(--color-white);
}

#tzp-eol-qc-wrapper .eol-industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#tzp-eol-qc-wrapper .eol-industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

#tzp-eol-qc-wrapper .eol-industry-item {
  margin-bottom: 32px;
}

#tzp-eol-qc-wrapper .eol-industry-item:last-child {
  margin-bottom: 0;
}

#tzp-eol-qc-wrapper .eol-industry-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

#tzp-eol-qc-wrapper .eol-industry-item p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

#tzp-eol-qc-wrapper .eol-technology {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#tzp-eol-qc-wrapper .eol-technology h2 {
  color: var(--color-white);
}

#tzp-eol-qc-wrapper .eol-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

#tzp-eol-qc-wrapper .eol-tech-item {
  text-align: center;
}

#tzp-eol-qc-wrapper .eol-tech-item h3 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 18px;
}

#tzp-eol-qc-wrapper .eol-tech-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

#tzp-eol-qc-wrapper .eol-cta {
  background-image: url('https://placehold.co/1920x800?text=Facility+Background');
  background-size: cover;
  background-position: center;
  position: relative;
}

#tzp-eol-qc-wrapper .eol-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

#tzp-eol-qc-wrapper .eol-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#tzp-eol-qc-wrapper .eol-cta-text h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

#tzp-eol-qc-wrapper .eol-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

#tzp-eol-qc-wrapper .eol-cta-text .contact-info {
  color: var(--color-white);
  font-size: 14px;
  margin-bottom: 24px;
}

#tzp-eol-qc-wrapper .eol-cta-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 6px;
}

#tzp-eol-qc-wrapper .eol-cta-form .form-group {
  margin-bottom: 16px;
}

#tzp-eol-qc-wrapper .eol-cta-form input,
#tzp-eol-qc-wrapper .eol-cta-form select,
#tzp-eol-qc-wrapper .eol-cta-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#tzp-eol-qc-wrapper .eol-cta-form input:focus,
#tzp-eol-qc-wrapper .eol-cta-form select:focus,
#tzp-eol-qc-wrapper .eol-cta-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 168, 0.2);
}

#tzp-eol-qc-wrapper .eol-cta-form textarea {
  min-height: 120px;
  resize: vertical;
}

#tzp-eol-qc-wrapper .eol-cta-form button {
  width: 100%;
}

@media (max-width: 1023px) {
  #tzp-eol-qc-wrapper .eol-product-grid,
  #tzp-eol-qc-wrapper .eol-custom-grid,
  #tzp-eol-qc-wrapper .eol-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #tzp-eol-qc-wrapper .eol-industry-grid,
  #tzp-eol-qc-wrapper .eol-cta-content {
    grid-template-columns: 1fr;
  }

  #tzp-eol-qc-wrapper .eol-industry-grid {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  #tzp-eol-qc-wrapper .eol-hero {
    padding-top: 95px;
  }

  #tzp-eol-qc-wrapper .eol-product-grid,
  #tzp-eol-qc-wrapper .eol-custom-grid,
  #tzp-eol-qc-wrapper .eol-tech-grid {
    grid-template-columns: 1fr;
  }

  #tzp-eol-qc-wrapper .eol-hero-cta {
    flex-direction: column;
  }

  #tzp-eol-qc-wrapper .eol-cta-form {
    padding: 24px;
  }
}

#tzp-eol-qc-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#tzp-eol-qc-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

#tzp-eol-qc-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Automate-Your-Final-Step-Integrated-End-of-Line-Inspection-Systems.webp');
}

#tzp-eol-qc-wrapper .tzp-hero::before {
  background: none;
}

#tzp-eol-qc-wrapper .tzp-hero-content {
  margin-bottom: 50px;
}

#tzp-eol-qc-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

#tzp-eol-qc-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

#tzp-eol-qc-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

#tzp-eol-qc-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

#tzp-eol-qc-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

#tzp-eol-qc-wrapper .eol-product-category h3 {
  margin-bottom: 32px;
  color: #0A192F;
  font-size: 28px;
}

#tzp-eol-qc-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

#tzp-eol-qc-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#tzp-eol-qc-wrapper .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

#tzp-eol-qc-wrapper .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

#tzp-eol-qc-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

#tzp-eol-qc-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#tzp-eol-qc-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

#tzp-eol-qc-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#tzp-eol-qc-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

#tzp-eol-qc-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

#tzp-eol-qc-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

#tzp-eol-qc-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

#tzp-eol-qc-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

#tzp-eol-qc-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

#tzp-eol-qc-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#tzp-eol-qc-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tzp-eol-qc-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

#tzp-eol-qc-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

#tzp-eol-qc-wrapper .eol-custom-cta {
  text-align: center;
  margin-top: 20px;
}

#tzp-eol-qc-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#tzp-eol-qc-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 0;
}

#tzp-eol-qc-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

#tzp-eol-qc-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

#tzp-eol-qc-wrapper .tzp-industry-item h3::before,
#tzp-eol-qc-wrapper .tzp-industry-item p::before {
  display: none !important;
  content: none !important;
}

#tzp-eol-qc-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

#tzp-eol-qc-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

#tzp-eol-qc-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: eol-tech-counter;
}

#tzp-eol-qc-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: eol-tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

#tzp-eol-qc-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#tzp-eol-qc-wrapper .tzp-tech-item::before {
  content: '0' counter(eol-tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

#tzp-eol-qc-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

#tzp-eol-qc-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

#tzp-eol-qc-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

#tzp-eol-qc-wrapper .tzp-tech-item h3,
#tzp-eol-qc-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

#tzp-eol-qc-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

#tzp-eol-qc-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#tzp-eol-qc-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

#tzp-eol-qc-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

#tzp-eol-qc-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

#tzp-eol-qc-wrapper .tzp-bg-primary .tzp-section-title h2,
#tzp-eol-qc-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white) !important;
}

#tzp-eol-qc-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

#tzp-eol-qc-wrapper .tzp-integration-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  #tzp-eol-qc-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #tzp-eol-qc-wrapper .tzp-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #tzp-eol-qc-wrapper .tzp-grid-2,
  #tzp-eol-qc-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  #tzp-eol-qc-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  #tzp-eol-qc-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #tzp-eol-qc-wrapper .tzp-custom-card .tzp-card-image,
  #tzp-eol-qc-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  #tzp-eol-qc-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-6. Auxiliary Machines Page
   ============================================ */

#tzp-auxiliary-machines-wrapper .ilb-zoom {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#tzp-auxiliary-machines-wrapper .ilb-zoom:hover {
  transform: scale(1.05);
}

#tzp-auxiliary-machines-wrapper .tzp-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Complete-Your-Production-Line-with-High-Speed-Auxiliary-Equipment.webp');
}

#tzp-auxiliary-machines-wrapper .tzp-hero-content {
  margin-bottom: 50px;
}

#tzp-auxiliary-machines-wrapper .tzp-hero-buttons {
  margin-top: 0;
}

#tzp-auxiliary-machines-wrapper .tzp-hero-buttons .tzp-btn {
  padding-left: 40px;
  padding-right: 40px;
}

#tzp-auxiliary-machines-wrapper .tzp-hero-buttons .tzp-btn--secondary:hover {
  color: var(--color-white);
}

#tzp-auxiliary-machines-wrapper .tzp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#tzp-auxiliary-machines-wrapper .tzp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

#tzp-auxiliary-machines-wrapper .tzp-section.tzp-bg-surface .tzp-grid-2 {
  align-items: stretch;
}

#tzp-auxiliary-machines-wrapper .tzp-card .tzp-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  justify-content: flex-start;
  align-self: flex-start;
  width: fit-content;
  min-width: 0;
  padding: 10px 20px;
  font-size: 12px;
}

#tzp-auxiliary-machines-wrapper .tzp-card .tzp-btn--secondary::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

#tzp-auxiliary-machines-wrapper .tzp-card .tzp-btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateX(4px);
}

#tzp-auxiliary-machines-wrapper .tzp-card .tzp-btn--secondary:hover::after {
  transform: translateX(4px);
}

#tzp-auxiliary-machines-wrapper .tzp-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--color-surface);
  position: relative;
}

#tzp-auxiliary-machines-wrapper .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

#tzp-auxiliary-machines-wrapper .tzp-card:hover .tzp-card-image img {
  transform: scale(1.08);
}

#tzp-auxiliary-machines-wrapper .tzp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#tzp-auxiliary-machines-wrapper .tzp-card-content h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}

#tzp-auxiliary-machines-wrapper .tzp-card-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

#tzp-auxiliary-machines-wrapper .tzp-card-content p {
  color: #4A5568;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-border);
  height: 100%;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.2);
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-card-image {
  width: 40%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 220px;
  display: flex;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card h3 {
  margin-bottom: 12px;
  color: #0A192F;
  font-size: 18px;
  font-weight: 700;
}

#tzp-auxiliary-machines-wrapper .tzp-custom-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

#tzp-auxiliary-machines-wrapper .tzp-cta-wrapper {
  text-align: center;
  margin-top: 20px;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item {
  padding: 24px 24px 24px 64px;
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 0;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 168, 0.08);
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item h3::before,
#tzp-auxiliary-machines-wrapper .tzp-industry-item p::before {
  display: none !important;
  content: none !important;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item h3 {
  margin-bottom: 8px;
  color: #0A192F;
  font-size: 18px;
}

#tzp-auxiliary-machines-wrapper .tzp-industry-item p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 0;
  counter-reset: aux-tech-counter;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  counter-increment: aux-tech-counter;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item::before {
  content: '0' counter(aux-tech-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item:hover::before {
  color: rgba(240, 148, 86, 0.25);
  transform: scale(1.05);
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item:hover::after {
  width: 100%;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-item h3,
#tzp-auxiliary-machines-wrapper .tzp-tech-grid .tzp-tech-item h3 {
  margin-bottom: 16px;
  color: var(--color-white) !important;
  font-size: 20px;
}

#tzp-auxiliary-machines-wrapper .tzp-tech-grid .tzp-tech-item p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  line-height: 1.7;
}

#tzp-auxiliary-machines-wrapper .tzp-bg-primary .tzp-section-title h2,
#tzp-auxiliary-machines-wrapper .tzp-bg-primary .tzp-section-title h2.tzp-text-white {
  color: var(--color-white) !important;
}

#tzp-auxiliary-machines-wrapper .tzp-media-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#tzp-auxiliary-machines-wrapper .tzp-media-frame--stretch {
  align-self: stretch;
  display: flex;
  align-items: center;
}

#tzp-auxiliary-machines-wrapper .tzp-media-frame__image {
  display: block;
  width: 100%;
}

#tzp-auxiliary-machines-wrapper .tzp-media-frame__image--cover {
  height: 100%;
  object-fit: cover;
}

#tzp-auxiliary-machines-wrapper .tzp-section-heading-left {
  margin-bottom: 24px;
  text-align: left;
}

#tzp-auxiliary-machines-wrapper .tzp-integration-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

#tzp-auxiliary-machines-wrapper #tzp-auxiliary-machines-integration a:not(.tzp-btn) {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 1023px) {
  #tzp-auxiliary-machines-wrapper .tzp-grid-3,
  #tzp-auxiliary-machines-wrapper .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #tzp-auxiliary-machines-wrapper .tzp-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #tzp-auxiliary-machines-wrapper .tzp-grid-3,
  #tzp-auxiliary-machines-wrapper .tzp-grid-2,
  #tzp-auxiliary-machines-wrapper .tzp-tech-grid {
    grid-template-columns: 1fr;
  }

  #tzp-auxiliary-machines-wrapper .tzp-grid-2 {
    gap: 32px;
  }

  #tzp-auxiliary-machines-wrapper .tzp-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-card-image,
  #tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-custom-card-text {
    width: 100%;
  }

  #tzp-auxiliary-machines-wrapper .tzp-custom-card .tzp-card-image {
    margin-bottom: 20px;
    min-height: 0;
  }
}

/* ============================================
   10A-7. Level 1 Shared Refinements
   ============================================ */

#tzp-capping-machines-wrapper .tzp-hero::before,
.tzp-sleeving-labeling-wrapper .tzp-hero::before,
#sealing-machines-wrapper .sm-hero.tzp-hero::before,
#tzp-eol-qc-wrapper .eol-hero.tzp-hero::before,
#tzp-auxiliary-machines-wrapper .tzp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.7), transparent 120px);
  z-index: 1;
}

#tzp-capping-machines-wrapper .tzp-hero,
.tzp-sleeving-labeling-wrapper .tzp-hero,
#sealing-machines-wrapper .sm-hero.tzp-hero,
#tzp-eol-qc-wrapper .eol-hero.tzp-hero {
  min-height: 60vh;
  padding-top: 40px;
  padding-bottom: 40px;
}

#tzp-filling-machines-wrapper .tzp-hero-content,
#tzp-capping-machines-wrapper .tzp-hero-content,
.tzp-sleeving-labeling-wrapper .tzp-hero-content,
#sealing-machines-wrapper .tzp-hero-content,
#tzp-eol-qc-wrapper .tzp-hero-content,
#tzp-auxiliary-machines-wrapper .tzp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
}

#tzp-filling-machines-wrapper .tzp-hero-content h1,
#tzp-filling-machines-wrapper .tzp-hero-content h2,
#tzp-filling-machines-wrapper .tzp-hero-buttons,
#tzp-capping-machines-wrapper .tzp-hero-content h1,
#tzp-capping-machines-wrapper .tzp-hero-content h2,
#tzp-capping-machines-wrapper .tzp-hero-buttons,
.tzp-sleeving-labeling-wrapper .tzp-hero-content h1,
.tzp-sleeving-labeling-wrapper .tzp-hero-content h2,
.tzp-sleeving-labeling-wrapper .tzp-hero-buttons,
#sealing-machines-wrapper .tzp-hero-content h1,
#sealing-machines-wrapper .tzp-hero-content h2,
#sealing-machines-wrapper .tzp-hero-buttons,
#tzp-eol-qc-wrapper .tzp-hero-content h1,
#tzp-eol-qc-wrapper .tzp-hero-content h2,
#tzp-eol-qc-wrapper .tzp-hero-buttons,
#tzp-auxiliary-machines-wrapper .tzp-hero-content h1,
#tzp-auxiliary-machines-wrapper .tzp-hero-content h2,
#tzp-auxiliary-machines-wrapper .tzp-hero-buttons {
  margin: 0;
}

#tzp-filling-machines-wrapper .tzp-hero-content h2,
#tzp-capping-machines-wrapper .tzp-hero-content h2,
.tzp-sleeving-labeling-wrapper .tzp-hero-content h2,
#sealing-machines-wrapper .tzp-hero-content h2,
#tzp-eol-qc-wrapper .tzp-hero-content h2,
#tzp-auxiliary-machines-wrapper .tzp-hero-content h2 {
  max-width: 720px;
}

#tzp-filling-machines-wrapper .tzp-hero-buttons,
#tzp-capping-machines-wrapper .tzp-hero-buttons,
.tzp-sleeving-labeling-wrapper .tzp-hero-buttons,
#sealing-machines-wrapper .tzp-hero-buttons,
#tzp-eol-qc-wrapper .tzp-hero-buttons,
#tzp-auxiliary-machines-wrapper .tzp-hero-buttons {
  gap: 20px 24px;
  padding-top: 8px;
}

#tzp-filling-machines-wrapper .tzp-hero-buttons .tzp-btn,
#tzp-capping-machines-wrapper .tzp-hero-buttons .tzp-btn,
.tzp-sleeving-labeling-wrapper .tzp-hero-buttons .tzp-btn,
#sealing-machines-wrapper .tzp-hero-buttons .tzp-btn,
#tzp-eol-qc-wrapper .tzp-hero-buttons .tzp-btn,
#tzp-auxiliary-machines-wrapper .tzp-hero-buttons .tzp-btn {
  min-width: 220px;
  min-height: 56px;
}

#tzp-filling-machines-wrapper .tzp-section-title,
#tzp-capping-machines-wrapper .tzp-section-title,
.tzp-sleeving-labeling-wrapper .tzp-section-title,
#sealing-machines-wrapper .tzp-section-title,
#tzp-eol-qc-wrapper .tzp-section-title,
#tzp-auxiliary-machines-wrapper .tzp-section-title {
  margin-bottom: 56px;
}

#tzp-filling-machines-wrapper .tzp-section-title p,
#tzp-capping-machines-wrapper .tzp-section-title p,
.tzp-sleeving-labeling-wrapper .tzp-section-title p,
#sealing-machines-wrapper .tzp-section-title p,
#tzp-eol-qc-wrapper .tzp-section-title p,
#tzp-auxiliary-machines-wrapper .tzp-section-title p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#tzp-filling-machines-wrapper .tzp-card,
#tzp-capping-machines-wrapper .tzp-card,
.tzp-sleeving-labeling-wrapper .tzp-card,
#sealing-machines-wrapper .tzp-card,
#tzp-eol-qc-wrapper .tzp-card,
#tzp-auxiliary-machines-wrapper .tzp-card {
  height: 100%;
}

#tzp-filling-machines-wrapper .tzp-card-content,
#tzp-capping-machines-wrapper .tzp-card-content,
.tzp-sleeving-labeling-wrapper .tzp-card-content,
#sealing-machines-wrapper .tzp-card-content,
#tzp-eol-qc-wrapper .tzp-card-content,
#tzp-auxiliary-machines-wrapper .tzp-card-content {
  min-height: 250px;
}

#tzp-filling-machines-wrapper .tzp-card-content .tzp-btn,
#tzp-capping-machines-wrapper .tzp-card-content .tzp-btn,
.tzp-sleeving-labeling-wrapper .tzp-card-content .tzp-btn,
#sealing-machines-wrapper .tzp-card-content .tzp-btn,
#tzp-eol-qc-wrapper .tzp-card-content .tzp-btn,
#tzp-auxiliary-machines-wrapper .tzp-card-content .tzp-btn {
  margin-top: auto;
}

#tzp-filling-machines-wrapper .tzp-custom-card,
#tzp-capping-machines-wrapper .tzp-custom-card,
.tzp-sleeving-labeling-wrapper .tzp-custom-card,
#sealing-machines-wrapper .tzp-custom-card,
#tzp-eol-qc-wrapper .tzp-custom-card,
#tzp-auxiliary-machines-wrapper .tzp-custom-card {
  min-height: 272px;
}

#tzp-filling-machines-wrapper .tzp-industry-list,
#tzp-capping-machines-wrapper .tzp-industry-list,
.tzp-sleeving-labeling-wrapper .tzp-industry-list,
#sealing-machines-wrapper .tzp-industry-list,
#tzp-eol-qc-wrapper .tzp-industry-list,
#tzp-auxiliary-machines-wrapper .tzp-industry-list {
  gap: 24px;
}

#tzp-filling-machines-wrapper .tzp-industry-list > h2,
#tzp-capping-machines-wrapper .tzp-industry-list > h2,
.tzp-sleeving-labeling-wrapper .tzp-industry-list > h2,
#sealing-machines-wrapper .tzp-industry-list > h2,
#tzp-eol-qc-wrapper .tzp-industry-list > h2,
#tzp-auxiliary-machines-wrapper .tzp-industry-list > h2 {
  margin-bottom: 4px;
}

#tzp-filling-industries .tzp-grid-2,
#tzp-capping-industries .tzp-grid-2,
#tzp-sleeving-labeling-industries .tzp-grid-2,
#sealing-machines-wrapper .sm-split-section.tzp-grid-2,
#tzp-eol-qc-wrapper .eol-industry-grid.tzp-grid-2,
#tzp-auxiliary-machines-industries .tzp-grid-2 {
  align-items: stretch;
}

#tzp-filling-machines-wrapper .tzp-media-frame--stretch,
#tzp-capping-machines-wrapper .tzp-media-frame--stretch,
.tzp-sleeving-labeling-wrapper .tzp-media-frame--stretch,
#sealing-machines-wrapper .tzp-media-frame--stretch,
#tzp-eol-qc-wrapper .tzp-media-frame--stretch,
#tzp-auxiliary-machines-wrapper .tzp-media-frame--stretch {
  height: 100%;
  align-items: stretch;
}

#tzp-filling-machines-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover,
#tzp-capping-machines-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover,
.tzp-sleeving-labeling-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover,
#sealing-machines-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover,
#tzp-eol-qc-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover,
#tzp-auxiliary-machines-wrapper .tzp-media-frame--stretch .tzp-media-frame__image--cover {
  flex: 1 1 auto;
  height: 100%;
}

@media (min-width: 768px) {
  #tzp-filling-industries .tzp-media-frame--stretch,
  #tzp-capping-industries .tzp-media-frame--stretch,
  #tzp-sleeving-labeling-industries .tzp-media-frame--stretch,
  #sealing-machines-wrapper .sm-split-section .tzp-media-frame--stretch,
  #tzp-eol-qc-wrapper .eol-industry-grid .tzp-media-frame--stretch,
  #tzp-auxiliary-machines-industries .tzp-media-frame--stretch {
    position: relative;
    display: block;
    min-height: 100%;
  }

  #tzp-filling-industries .tzp-media-frame--stretch .tzp-media-frame__image--cover,
  #tzp-capping-industries .tzp-media-frame--stretch .tzp-media-frame__image--cover,
  #tzp-sleeving-labeling-industries .tzp-media-frame--stretch .tzp-media-frame__image--cover,
  #sealing-machines-wrapper .sm-split-section .tzp-media-frame--stretch .tzp-media-frame__image--cover,
  #tzp-eol-qc-wrapper .eol-industry-grid .tzp-media-frame--stretch .tzp-media-frame__image--cover,
  #tzp-auxiliary-machines-industries .tzp-media-frame--stretch .tzp-media-frame__image--cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
  }
}

#tzp-filling-machines-wrapper .tzp-tech-grid,
#tzp-capping-machines-wrapper .tzp-tech-grid,
.tzp-sleeving-labeling-wrapper .tzp-tech-grid,
#sealing-machines-wrapper .tzp-tech-grid,
#tzp-eol-qc-wrapper .tzp-tech-grid,
#tzp-auxiliary-machines-wrapper .tzp-tech-grid {
  align-items: stretch;
}

#tzp-filling-machines-wrapper .tzp-tech-item,
#tzp-capping-machines-wrapper .tzp-tech-item,
.tzp-sleeving-labeling-wrapper .tzp-tech-item,
#sealing-machines-wrapper .tzp-tech-item,
#tzp-eol-qc-wrapper .tzp-tech-item,
#tzp-auxiliary-machines-wrapper .tzp-tech-item {
  height: 100%;
}

#tzp-filling-machines-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc,
#tzp-capping-machines-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc,
.tzp-sleeving-labeling-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc,
#sealing-machines-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc,
#tzp-eol-qc-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc,
#tzp-auxiliary-machines-wrapper .tzp-grid-2 > :first-child .tzp-integration-desc {
  max-width: 680px;
}

@media (max-width: 767px) {
  #tzp-capping-machines-wrapper .tzp-hero,
  .tzp-sleeving-labeling-wrapper .tzp-hero,
  #sealing-machines-wrapper .sm-hero.tzp-hero,
  #tzp-eol-qc-wrapper .eol-hero.tzp-hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #tzp-filling-machines-wrapper .tzp-hero-content,
  #tzp-capping-machines-wrapper .tzp-hero-content,
  .tzp-sleeving-labeling-wrapper .tzp-hero-content,
  #sealing-machines-wrapper .tzp-hero-content,
  #tzp-eol-qc-wrapper .tzp-hero-content,
  #tzp-auxiliary-machines-wrapper .tzp-hero-content {
    gap: 20px;
  }

  #tzp-filling-machines-wrapper .tzp-hero-buttons .tzp-btn,
  #tzp-capping-machines-wrapper .tzp-hero-buttons .tzp-btn,
  .tzp-sleeving-labeling-wrapper .tzp-hero-buttons .tzp-btn,
  #sealing-machines-wrapper .tzp-hero-buttons .tzp-btn,
  #tzp-eol-qc-wrapper .tzp-hero-buttons .tzp-btn,
  #tzp-auxiliary-machines-wrapper .tzp-hero-buttons .tzp-btn {
    min-width: 0;
    min-height: 52px;
    width: 100%;
  }

  #tzp-filling-machines-wrapper .tzp-section-title,
  #tzp-capping-machines-wrapper .tzp-section-title,
  .tzp-sleeving-labeling-wrapper .tzp-section-title,
  #sealing-machines-wrapper .tzp-section-title,
  #tzp-eol-qc-wrapper .tzp-section-title,
  #tzp-auxiliary-machines-wrapper .tzp-section-title {
    margin-bottom: 40px;
  }

  #tzp-filling-machines-wrapper .tzp-card-content,
  #tzp-capping-machines-wrapper .tzp-card-content,
  .tzp-sleeving-labeling-wrapper .tzp-card-content,
  #sealing-machines-wrapper .tzp-card-content,
  #tzp-eol-qc-wrapper .tzp-card-content,
  #tzp-auxiliary-machines-wrapper .tzp-card-content,
  #tzp-filling-machines-wrapper .tzp-custom-card,
  #tzp-capping-machines-wrapper .tzp-custom-card,
  .tzp-sleeving-labeling-wrapper .tzp-custom-card,
  #sealing-machines-wrapper .tzp-custom-card,
  #tzp-eol-qc-wrapper .tzp-custom-card,
  #tzp-auxiliary-machines-wrapper .tzp-custom-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  body #home-wrapper h1,
  body [id$="-wrapper"] h1,
  body [class*="-wrapper"] h1 {
    font-size: 34px;
  }

  body #home-wrapper h2,
  body [id$="-wrapper"] h2,
  body [class*="-wrapper"] h2 {
    font-size: 28px;
  }

  body #home-wrapper h3,
  body [id$="-wrapper"] h3,
  body [class*="-wrapper"] h3 {
    font-size: 18px;
  }

  body #home-wrapper h4,
  body [id$="-wrapper"] h4,
  body [class*="-wrapper"] h4 {
    font-size: 16px;
  }

  body #home-wrapper p,
  body [id$="-wrapper"] p,
  body [class*="-wrapper"] p {
    font-size: 15px;
    line-height: 1.7;
  }

  body #home-wrapper .tzp-hero h1,
  body #home-wrapper #home-hero .home-hero__title,
  body [id$="-wrapper"] .tzp-hero h1,
  body [class*="-wrapper"] .tzp-hero h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  body #home-wrapper #home-hero .home-hero__subtitle,
  body [id$="-wrapper"] .tzp-hero h2,
  body [id$="-wrapper"] .tzp-hero p,
  body [class*="-wrapper"] .tzp-hero h2,
  body [class*="-wrapper"] .tzp-hero p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  body #home-wrapper #home-hero .home-hero__pre-title,
  body #home-wrapper #home-hero .home-hero__data-text {
    font-size: 13px !important;
  }

  body #home-wrapper .home-section__title h2,
  body #home-wrapper .home-solutions__title,
  body #home-wrapper .home-why__title,
  body #home-wrapper .home-factory__title,
  body #home-wrapper .home-service__step-title,
  body #home-wrapper .home-blog__card-title {
    font-size: 24px !important;
  }
}

/* ============================================
   10B. Capping Detail Page Pattern
   ============================================ */

.tzp-capping-detail-page .tzp-hero {
  min-height: 60vh;
}

.tzp-capping-detail-page .tzp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
}

.tzp-capping-detail-page .tzp-hero-content h1,
.tzp-capping-detail-page .tzp-hero-content h2,
.tzp-capping-detail-page .tzp-hero-buttons {
  margin: 0;
}

.tzp-capping-detail-page .tzp-hero-content h2 {
  max-width: 720px;
}

.tzp-capping-detail-page .tzp-hero-buttons {
  gap: 20px 24px;
  padding-top: 8px;
}

.tzp-capping-detail-page .tzp-hero-buttons .tzp-btn {
  padding: 18px 44px;
}

.tzp-cta-section .tzp-cta__left,
.tzp-cta-section .tzp-cta__left .tzp-cta__title,
.tzp-cta-section .tzp-cta__left .tzp-cta__bullets li,
.tzp-cta-section .tzp-cta__left .tzp-cta__contact-value {
  color: #FFFFFF;
}

.tzp-cta-section .tzp-cta__left .tzp-cta__description {
  color: #E2E8F0;
}

.tzp-cta-section .tzp-cta__left .tzp-cta__lead {
  color: var(--color-accent);
}

.tzp-capping-detail-page .pain-points {
  background-color: var(--color-surface);
}

.tzp-capping-detail-page .pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.tzp-capping-detail-page .pain-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tzp-capping-detail-page .pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tzp-capping-detail-page .pain-card h3 {
  color: var(--color-primary);
  margin-bottom: 24px;
  font-size: 20px;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 16px;
  font-weight: 700;
}

.tzp-capping-detail-page .pain-item {
  margin-bottom: 20px;
}

.tzp-capping-detail-page .pain-item:last-child {
  margin-bottom: 0;
}

.tzp-capping-detail-page .pain-item-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tzp-capping-detail-page .pain-item-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.tzp-capping-detail-page .pain-item.traditional .pain-item-label {
  color: var(--color-text-secondary);
}

.tzp-capping-detail-page .pain-item.traditional .pain-item-label::before {
  background-color: var(--color-text-secondary);
}

.tzp-capping-detail-page .pain-item.traditional .pain-copy {
  background: var(--color-surface);
  border-left: 4px solid var(--color-border);
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.tzp-capping-detail-page .pain-item.solution .pain-item-label {
  color: var(--color-primary);
}

.tzp-capping-detail-page .pain-item.solution .pain-item-label::before {
  background-color: var(--color-primary);
}

.tzp-capping-detail-page .pain-item.solution .pain-copy {
  background: #f0f7ff;
  border-left: 4px solid var(--color-primary);
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
  color: var(--color-text-primary);
  font-size: 14px;
  line-height: 1.6;
}

.tzp-capping-detail-page .pain-item.solution .pain-copy strong {
  color: var(--color-primary);
  font-weight: 700;
}

.tzp-capping-detail-page .tech-section {
  background: #e8f4fc;
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.tzp-capping-detail-page .tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(240, 148, 86, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tzp-capping-detail-page .tech-section h2 {
  color: var(--color-text-primary);
  position: relative;
  z-index: 1;
}

.tzp-capping-detail-page .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.tzp-capping-detail-page .tech-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 20px;
}

.tzp-capping-detail-page .tech-card h3 {
  color: var(--color-text-primary);
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  grid-column: 2;
  grid-row: 1;
}

.tzp-capping-detail-page .tech-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
}

.tzp-capping-detail-page .tech-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  color: var(--color-primary);
  background: #f0f7ff;
  border: 1px solid rgba(0, 102, 204, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  grid-column: 1;
  grid-row: 1 / 3;
}

.tzp-capping-detail-page .product-series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.tzp-capping-detail-page .product-series-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tzp-capping-detail-page .product-series-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.tzp-capping-detail-page .product-series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tzp-capping-detail-page .product-series-card-body {
  padding: 24px;
}

.tzp-capping-detail-page .product-series-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.tzp-capping-detail-page .product-series-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.tzp-capping-detail-page .applications-section {
  background-color: var(--color-surface);
}

.tzp-capping-detail-page .tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.tzp-capping-detail-page .tab-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text-primary);
}

.tzp-capping-detail-page .tab-btn:hover,
.tzp-capping-detail-page .tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.tzp-capping-detail-page .tab-content {
  display: none;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.tzp-capping-detail-page .tab-content.active {
  display: block;
}

.tzp-capping-detail-page .tab-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.tzp-capping-detail-page .tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.tzp-capping-detail-page .tab-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tzp-capping-detail-page .tab-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform var(--transition);
}

.tzp-capping-detail-page .tab-image:hover img {
  transform: scale(1.05);
}

.tzp-capping-detail-page .solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.tzp-capping-detail-page .solution-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
}

.tzp-capping-detail-page .solution-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tzp-capping-detail-page .solution-card-image {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.tzp-capping-detail-page .solution-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition);
}

.tzp-capping-detail-page .solution-card:hover .solution-card-image img {
  transform: scale(1.05);
}

.tzp-capping-detail-page .solution-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

.tzp-capping-detail-page .solution-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.tzp-capping-detail-page .solution-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 14px;
}

.tzp-capping-detail-page .why-section {
  background-color: var(--color-surface);
}

.tzp-capping-detail-page .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.tzp-capping-detail-page .why-list {
  list-style: none;
}

.tzp-capping-detail-page .why-list li {
  margin-bottom: var(--space-lg);
  padding-left: 40px;
  position: relative;
}

.tzp-capping-detail-page .why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.tzp-capping-detail-page .why-list h3 {
  margin-bottom: var(--space-xs);
  font-size: 20px;
}

.tzp-capping-detail-page .why-list p {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.tzp-capping-detail-page .why-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.tzp-capping-detail-page .faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.tzp-capping-detail-page .faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  background: var(--color-surface);
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tzp-capping-detail-page .faq-question:hover {
  background: #edf2f7;
}

.tzp-capping-detail-page .faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.tzp-capping-detail-page .faq-question.active::after {
  content: '−';
}

.tzp-capping-detail-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 var(--space-md);
}

.tzp-capping-detail-page .faq-answer.active {
  max-height: 500px;
  padding: var(--space-md);
}

.tzp-capping-detail-page .faq-answer p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

#tzp-screw-capping-wrapper #screw-capping-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Precision-Automatic-Screw-Capping-Machines-1.webp');
}

#tzp-vacuum-capping-wrapper #vacuum-capping-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Vacuum-Jar-Capping-Machines.webp');
}

#tzp-snap-press-on-wrapper #snap-press-on-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Speed-Snap-Lid-Pressing-Machines.webp');
}

#tzp-shrink-sleeve-wrapper #shrink-sleeve-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Speed-Shrink-Sleeve-Labeling-Machines.webp');
}

#tzp-sticker-wrapper #sticker-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Precision-Sticker-Labeling-Machines.webp');
}

#tzp-induction-wrapper #induction-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Speed-Induction-Sealing-Machines.webp');
}

#tzp-can-seaming-wrapper #can-seaming-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Speed-Can-Seaming-Sealing-Machines.webp');
}

#tzp-cup-filling-sealing-wrapper #cup-filling-sealing-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Efficiency-Cup-Filling-Sealing-Machines.webp');
}

#tzp-box-packaging-palletizing-wrapper #box-packaging-palletizing-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/Full-End-of-Line-Packaging-Palletizing-Automation.webp');
}

#tzp-inspection-wrapper #inspection-hero {
  background-image: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.08) 100%), url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/High-Precision-Inspection-Quality-Control-Systems.webp');
}

@media (max-width: 1023px) {
  .tzp-capping-detail-page .product-series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tzp-capping-detail-page .tech-grid,
  .tzp-capping-detail-page .solutions-grid,
  .tzp-capping-detail-page .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tzp-capping-detail-page .tzp-hero-content {
    gap: 20px;
  }

  .tzp-capping-detail-page .tzp-hero-buttons {
    gap: 14px;
    padding-top: 4px;
  }

  .tzp-capping-detail-page .tzp-hero-buttons .tzp-btn {
    padding: 16px 24px;
  }

  .tzp-capping-detail-page .pain-grid,
  .tzp-capping-detail-page .product-series-grid,
  .tzp-capping-detail-page .tab-grid {
    grid-template-columns: 1fr;
  }

  .tzp-capping-detail-page .tabs-container {
    gap: var(--space-sm);
  }

  .tzp-capping-detail-page .tab-btn {
    width: 100%;
  }
}

/* ============================================
   11. Grid System Extended
   ============================================ */

.tzp-grid {
  display: grid;
  gap: var(--space-xl);
}

.tzp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.tzp-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.tzp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  .tzp-grid--2,
  .tzp-grid--3,
  .tzp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tzp-grid--2,
  .tzp-grid--3,
  .tzp-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   12. Card Variants
   ============================================ */

/* Product Card with Image Ratio */
.tzp-product-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tzp-product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tzp-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.tzp-product-card:hover .tzp-product-card-image img {
  transform: scale(1.05);
}

.tzp-product-card-content {
  padding: var(--space-lg);
}

/* Feature Card (Centered with Icon) */
.tzp-feature-card {
  text-align: center;
}

.tzp-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background-color: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
}

/* Custom Card */
.tzp-custom-card {
  background-color: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.tzp-custom-card-image {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Advantage Card */
.tzp-advantage-card {
  background: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-advantage-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.tzp-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tzp-advantage-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 86, 168, 0.1);
  border-radius: var(--radius-md);
}

.tzp-advantage-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}

/* ============================================
   13. Split Section (Image + Content)
   ============================================ */

.tzp-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 1023px) {
  .tzp-split-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.tzp-split-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tzp-split-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   14. Industry Items (Checkmark List)
   ============================================ */

.tzp-industry-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 1023px) {
  .tzp-industry-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.tzp-industry-item {
  margin-bottom: 0px
}

.tzp-industry-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tzp-industry-item h3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.tzp-industry-item p {
  color: var(--color-text-secondary);
  padding-left: 40px;
}

/* ============================================
   15. Tech Section (Dark Background)
   ============================================ */

.tzp-tech-section {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tzp-tech-section h2 {
  color: var(--color-white);
}

.tzp-tech-item {
  text-align: center;
}

.tzp-tech-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.tzp-tech-item h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-size: 20px;
}

.tzp-tech-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

/* Tech Grid - 4 Column Responsive */
.tzp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: var(--space-2xl);
  text-align: center;
}

@media (max-width: 1023px) {
  .tzp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .tzp-tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Tech Card */
.tzp-tech-card {
  text-align: center;
}

.tzp-tech-card h3 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.tzp-tech-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   16. Workflow Timeline
   ============================================ */

.tzp-workflow-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.tzp-workflow-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: translateX(-50%);
}

.tzp-workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.tzp-workflow-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.tzp-workflow-step:last-child {
  margin-bottom: 0;
}

.tzp-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26, 86, 168, 0.3);
}

.tzp-step-content {
  width: calc(50% - 50px);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.tzp-workflow-step:nth-child(odd) .tzp-step-content {
  margin-left: auto;
}

.tzp-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

@media (max-width: 767px) {
  .tzp-workflow-timeline::before {
    left: 20px;
  }
  .tzp-step-number {
    left: 20px;
    transform: translateX(0);
  }
  .tzp-workflow-step,
  .tzp-workflow-step:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 56px;
  }
  .tzp-step-content {
    width: 100%;
    margin-left: 0 !important;
  }
}

/* ============================================
   17. Level Number Badge
   ============================================ */

.tzp-level-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

/* ============================================
   18. Coverage/Compliance Card
   ============================================ */

.tzp-coverage-level,
.tzp-compliance-card {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-surface) 100%);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--color-border);
}

.tzp-coverage-level:hover,
.tzp-compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.tzp-compliance-card {
  text-align: left;
}

/* ============================================
   19. Integration Section
   ============================================ */

.tzp-integration-section {
  text-align: center;
}

.tzp-integration-section p {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  font-size: 18px;
}

.tzp-integration-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tzp-integration-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   20. Hero Subtitle (White text on dark bg)
   ============================================ */

.tzp-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

@media (max-width: 767px) {
  .tzp-hero-subtitle {
    font-size: 16px;
    margin-bottom: var(--space-lg);
  }
}

/* ============================================
   21. Product Grid (4-column responsive)
   ============================================ */

.tzp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.tzp-product-grid .tzp-product-card h3 {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.tzp-product-grid .tzp-product-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

@media (max-width: 1023px) {
  .tzp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tzp-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Image & Content */
.tzp-product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: var(--color-surface);
}

.tzp-product-content {
  padding: var(--space-lg);
}

/* ============================================
   22. FAQ Section (Accordion Style)
   ============================================ */

.tzp-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.tzp-faq-item:last-child {
  border-bottom: none;
}

.tzp-faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}

.tzp-faq-question:hover {
  color: var(--color-primary);
}

.tzp-faq-answer {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-top: var(--space-sm);
}

@media (max-width: 767px) {
  .tzp-faq-question {
    font-size: 16px;
  }
}

/* ============================================
   23. Solution Grid & Card
   ============================================ */

.tzp-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.tzp-solution-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-bg);
}

.tzp-solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.tzp-solution-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Solution Cards for Powder/Similar Pages */
.solution-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-bg);
}

.solution-card .solution-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.solution-card .solution-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.solution-card .solution-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.solution-card .tzp-btn {
  margin-top: auto;
}

@media (max-width: 1023px) {
  .tzp-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tzp-solution-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   24. Application Grid & Card
   ============================================ */

.tzp-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.tzp-app-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tzp-app-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tzp-app-content {
  padding: var(--space-xl);
}

.tzp-app-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.tzp-app-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .tzp-app-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   25. Why Choose Grid & Item
   ============================================ */

.tzp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.tzp-why-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.tzp-why-item {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  position: relative;
}

.tzp-why-item:last-child {
  margin-bottom: 0;
}

.tzp-why-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
}

.tzp-why-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.tzp-why-item p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.tzp-why-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

@media (max-width: 767px) {
  .tzp-why-grid {
    grid-template-columns: 1fr;
  }
  .tzp-why-image {
    height: 300px;
    order: -1;
  }
}

/* ============================================
   26. Pain Points / Challenge Grid & Card
   ============================================ */

.tzp-pain-grid,
.tzp-challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.tzp-pain-card,
.tzp-challenge-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tzp-pain-card:hover,
.tzp-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tzp-pain-card h3,
.tzp-challenge-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.tzp-pain-card p,
.tzp-challenge-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Traditional vs Solution comparison */
.tzp-traditional {
  padding: var(--space-md);
  background-color: rgba(240, 148, 86, 0.1);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
}

.tzp-solution {
  padding: var(--space-md);
  background-color: rgba(26, 86, 168, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

/* ============================================
   Styles Extracted from footer.php
   ============================================ */

/* Modal System */
.tzp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tzp-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.tzp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 86, 168, 0.9);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.tzp-modal-content {
    position: relative;
    background: #fff;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    z-index: 10000;
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tzp-modal.is-visible .tzp-modal-content {
    transform: scale(1);
    opacity: 1;
}

.tzp-modal-content--small {
    max-width: 500px;
    flex-direction: column;
    padding: var(--space-2xl);
    overflow-y: auto;
}

.tzp-modal-content--promo {
    background: #0A192F;
    max-width: 1200px;
    width: 95%;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.tzp-exit-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 480px;
    width: 100%;
}

.tzp-exit-image-col {
    position: relative;
    background: url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Get-Our-Latest-Product-Catalog.webp') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    padding: 30px;
}

.tzp-exit-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.05), rgba(10, 25, 47, 0.4) 98%);
}

.tzp-exit-badge {
    position: relative;
    z-index: 2;
    background: rgba(240, 148, 86, 0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(240, 148, 86, 0.4);
}

.tzp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-surface);
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-primary);
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tzp-modal-close:hover {
    background: var(--color-text-primary);
    color: #fff;
}

.tzp-modal-close--light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.tzp-modal-close--light:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Inquiry Modal Layout */
.tzp-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-width: 800px;
    width: 100%;
}

.tzp-modal-left {
    position: relative;
    background: url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Request-a-Custom-Packaging-Machine-Quote.webp') center/cover no-repeat;
    color: #fff;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tzp-modal-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.2), rgba(26, 86, 168, 0.7) 95%);
}

.tzp-modal-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #fff;
}

.tzp-modal-subtitle {
    position: relative;
    z-index: 2;
    font-size: 15px;
    opacity: 1;
    color: #fff;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.tzp-modal-features {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.tzp-modal-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 14px;
    color: #fff;
}

.tzp-modal-features i {
    color: var(--color-accent);
}

.tzp-modal-badges {
    position: relative;
    z-index: 2;
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tzp-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9999px;
}

.tzp-modal-right {
    padding: var(--space-2xl);
    overflow-y: auto;
    background: #fff;
}

/* Catalog Modal Layout (Similar to Exit Intent) */
.tzp-catalog-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 480px;
    width: 100%;
}

.tzp-catalog-image-col {
    position: relative;
    /* Use a placeholder or actual catalog image here */
    background: url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Get-Our-Latest-Product-Catalog.webp') center/cover no-repeat;
    background-color: var(--color-primary); /* fallback */
    display: flex;
    align-items: flex-start;
    padding: 30px;
}

.tzp-catalog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.05), rgba(10, 25, 47, 0.4) 98%);
}

.tzp-catalog-badge {
    position: relative;
    z-index: 2;
    background: rgba(26, 86, 168, 0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(26, 86, 168, 0.4);
}

.tzp-catalog-content {
    padding: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: #0A192F;
}

.tzp-catalog-header {
    text-align: left;
    margin-bottom: 24px;
}

.tzp-catalog-title {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.2;
}

.tzp-catalog-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.tzp-catalog-secure {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Exit Intent Modal */
.tzp-exit-content {
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.tzp-exit-title {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.2;
}

.tzp-exit-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.tzp-exit-subtitle strong {
    color: #f09456;
    font-weight: 600;
}

/* Form Styles */
.tzp-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tzp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.tzp-form-group {
    display: flex;
    flex-direction: column;
}

.tzp-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.tzp-btn--full {
    width: 100%;
}

.tzp-input--glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.tzp-input--glass:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.tzp-input--glass::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.tzp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
}

.tzp-btn-outline:hover {
    background-color: #f09456;
    border-color: #f09456;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(240, 148, 86, 0.3);
}

/* Dark Outlined Button (for light backgrounds) */
.tzp-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: transparent;
    color: #0A192F;
    border: 2px solid #0A192F;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.tzp-btn-outline-dark:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(240, 148, 86, 0.3);
}

.tzp-exit-secure {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Footer CTA */
.tzp-footer-cta {
    background: var(--color-primary);
    padding: var(--space-2xl) 0;
}

.tzp-cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.tzp-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.tzp-cta-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tzp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-end;
}

.tzp-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-size: 14px;
}

.tzp-contact-item i {
    color: var(--color-accent);
}

/* Footer Main */
.tzp-footer-main {
    background: var(--color-text-primary);
    color: #fff;
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.tzp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--space-2xl);
}

.tzp-footer-col--brand {
    padding-right: var(--space-xl);
}

.tzp-footer-brand-link {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.tzp-footer-logo {
    height: auto;
    width: 74px;
}

.tzp-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.tzp-social-links {
    display: flex;
    gap: var(--space-sm);
}

.tzp-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    transition: all var(--transition);
}

.tzp-social-link:hover {
    background: var(--color-accent);
}

.tzp-footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tzp-footer-heading--sub {
    margin-top: var(--space-lg);
}

.tzp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.tzp-footer-links li {
    margin-bottom: 8px;
}

.tzp-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.tzp-footer-links a:hover {
    color: var(--color-accent);
}

.tzp-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tzp-contact-row {
    display: flex;
    gap: var(--space-sm);
}

.tzp-contact-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tzp-contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.tzp-contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.tzp-contact-value a {
    color: rgba(255, 255, 255, 0.9);
}

.tzp-contact-value a:hover {
    color: var(--color-accent);
}

/* Footer Bottom */
.tzp-footer-bottom {
    background: #1a1a1a;
    padding: var(--space-lg) 0;
}

.tzp-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tzp-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.tzp-footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
}

.tzp-footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.tzp-footer-legal a:hover {
    color: #fff;
}

.tzp-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1023px) {
    .tzp-modal-grid {
        grid-template-columns: 1fr;
        min-width: auto;
    }

    .tzp-modal-left {
        display: none;
    }

    .tzp-cta-grid {
        grid-template-columns: 1fr;
    }

    .tzp-cta-actions {
        align-items: flex-start;
    }

    .tzp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .tzp-footer-col--brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .tzp-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .tzp-modal-content--small,
    .tzp-modal-content--promo {
        max-width: 100%;
    }

    .tzp-modal-content--promo {
        width: min(92vw, 560px);
        height: auto;
        max-height: 90vh;
        border-radius: 16px;
    }

    .tzp-exit-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tzp-exit-image-col {
        min-height: 180px;
        padding: 20px;
        background-position: center top;
    }

    .tzp-modal-right,
    .tzp-exit-content,
    .tzp-catalog-content,
    .tzp-modal-content--small {
        padding: var(--space-lg);
    }

    .tzp-exit-content {
        padding: 24px 20px 20px;
    }

    .tzp-exit-title,
    .tzp-exit-subtitle {
        text-align: left;
    }

    .tzp-form-row {
        grid-template-columns: 1fr;
    }

    .tzp-footer-grid {
        grid-template-columns: 1fr;
    }

    .tzp-footer-col--brand {
        grid-column: span 1;
    }

    .tzp-footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .tzp-footer-legal {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .tzp-separator {
        display: none;
    }

    .tzp-cta-title {
        font-size: 24px;
    }
}

/* ============================================
   Shortcode: [tz_blog]
   ============================================ */
#tzp-blog-wrapper .tzp-hero{background-image:linear-gradient(to right,rgba(10,25,47,.82) 0%,rgba(10,25,47,.32) 50%,rgba(10,25,47,.08) 100%),url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/06/Insights-News-and-Packaging-Technology-Trends.webp');background-position:center}
#tzp-blog-wrapper .tzp-hero-content{max-width:820px;margin-bottom:50px}
#tzp-blog-wrapper .tzp-hero-subtitle{max-width:720px}
#tzp-blog-wrapper .tzp-hero-buttons{margin-top:0}
#tzp-blog-wrapper .tzp-hero-buttons .tzp-btn{padding-left:40px;padding-right:40px}
#tzp-blog-wrapper .tzp-filters{display:flex;justify-content:center;flex-wrap:wrap;gap:var(--space-sm);margin-bottom:var(--space-xl)}
#tzp-blog-wrapper .tzp-filter-btn{padding:10px 20px;font-family:var(--font-body);font-size:14px;font-weight:500;color:var(--color-text-secondary);background-color:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition);-webkit-tap-highlight-color:transparent}
#tzp-blog-wrapper .tzp-filter-btn:hover,#tzp-blog-wrapper .tzp-filter-btn.active{color:var(--color-primary);background-color:rgba(26,86,168,.1);border-color:var(--color-primary)}
#tzp-blog-wrapper .tzp-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-xl)}
#tzp-blog-wrapper .tzp-blog-card{display:flex;flex-direction:column;background-color:var(--color-white);border-radius:var(--radius-md);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06);transition:transform var(--transition),box-shadow var(--transition);opacity:0;transform:translateY(20px)}
#tzp-blog-wrapper .tzp-blog-card.is-visible{opacity:1;transform:translateY(0)}
#tzp-blog-wrapper .tzp-blog-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.1)}
#tzp-blog-wrapper .tzp-blog-card-image{overflow:hidden}
#tzp-blog-wrapper .tzp-blog-card-image img{width:100%;height:200px;object-fit:cover;transition:transform var(--transition)}
#tzp-blog-wrapper .tzp-blog-card:hover .tzp-blog-card-image img{transform:scale(1.05)}
#tzp-blog-wrapper .tzp-blog-card-content{padding:var(--space-lg);flex:1;display:flex;flex-direction:column}
#tzp-blog-wrapper .tzp-blog-card-meta{font-size:13px;color:var(--color-text-secondary);margin-bottom:var(--space-sm);display:flex;gap:var(--space-xs);align-items:center}
#tzp-blog-wrapper .tzp-blog-card-tag{color:var(--color-primary);font-weight:600}
#tzp-blog-wrapper .tzp-blog-card-content h3{font-size:18px;margin-bottom:var(--space-sm);line-height:1.4}
#tzp-blog-wrapper .tzp-blog-card-excerpt{font-size:14px;color:var(--color-text-secondary);line-height:1.6;flex:1}
#tzp-blog-wrapper .tzp-blog-card-link{color:var(--color-accent);font-weight:600;font-size:14px;transition:color var(--transition)}
#tzp-blog-wrapper .tzp-blog-card-link:hover{color:var(--color-accent-hover)}
#tzp-blog-wrapper .tzp-load-more{text-align:center;margin-top:var(--space-2xl)}
@media (max-width:1023px){#tzp-blog-wrapper .tzp-blog-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){#tzp-blog-wrapper .tzp-blog-grid{grid-template-columns:1fr}#tzp-blog-wrapper .tzp-filters{flex-direction:column;align-items:center}#tzp-blog-wrapper .tzp-hero-content{margin-bottom:0}}

/* ============================================
   Shortcode: [tz_case]
   ============================================ */
#case-studies-wrapper .cs-filter-section{background-color:var(--color-bg)}
#case-studies-wrapper .cs-filter-container{max-width:900px;}
#case-studies-wrapper .cs-filter-group{margin-bottom:var(--space-lg)}
#case-studies-wrapper .cs-filter-label{font-family:var(--font-heading);font-size:18px;font-weight:600;margin-bottom:var(--space-sm);color:var(--color-text-primary)}
#case-studies-wrapper .cs-filter-buttons{display:flex;flex-wrap:wrap;gap:var(--space-sm)}
#case-studies-wrapper .cs-filter-btn{padding:10px 20px;background-color:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);font-family:var(--font-body);font-size:14px;font-weight:500;color:var(--color-text-secondary);cursor:pointer;transition:all var(--transition);text-decoration:none;display:inline-block}
#case-studies-wrapper .cs-filter-btn:hover,#case-studies-wrapper .cs-filter-btn.active{color:var(--color-primary);background-color:rgba(26,86,168,.1);border-color:var(--color-primary)}
#case-studies-wrapper .cs-cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-xl);margin-top:var(--space-2xl)}
#case-studies-wrapper .cs-case-card{background-color:var(--color-white);border-radius:var(--radius-md);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06);display:flex;flex-direction:column;opacity:0;transform:translateY(20px);transition:opacity .6s,transform .6s}
#case-studies-wrapper .cs-case-card.is-visible{opacity:1;transform:translateY(0)}
#case-studies-wrapper .cs-card-image{width:100%;aspect-ratio:16/9;object-fit:cover}
#case-studies-wrapper .cs-card-content{padding:var(--space-lg);flex:1;display:flex;flex-direction:column}
#case-studies-wrapper .cs-card-tags{display:flex;flex-wrap:wrap;gap:var(--space-xs);margin-bottom:var(--space-sm)}
#case-studies-wrapper .cs-card-tag{padding:4px 10px;background-color:var(--color-surface);color:var(--color-text-secondary);font-size:12px;font-weight:500;border-radius:4px}
#case-studies-wrapper .cs-card-content h3{margin-bottom:var(--space-sm)}
#case-studies-wrapper .cs-card-pain{font-size:14px;color:var(--color-text-secondary);margin-bottom:var(--space-sm)}
#case-studies-wrapper .cs-card-solution{font-size:14px;margin-bottom:var(--space-md);flex:1}
#case-studies-wrapper .cs-card-result{font-size:14px;color:var(--color-primary);font-weight:500;margin-bottom:var(--space-md)}
#case-studies-wrapper .cs-pagination{text-align:center;margin-top:var(--space-2xl)}
#case-studies-wrapper .cs-pagination .page-numbers{display:inline-block;padding:8px 16px;margin:0 4px;border:1px solid var(--color-border);border-radius:var(--radius-sm);font-size:14px;color:var(--color-text-secondary);text-decoration:none;transition:all var(--transition)}
#case-studies-wrapper .cs-pagination .page-numbers.current{background-color:var(--color-primary);color:#fff;border-color:var(--color-primary)}
#case-studies-wrapper .cs-pagination .page-numbers:hover:not(.current){border-color:var(--color-primary);color:var(--color-primary)}
#case-studies-wrapper .cs-testimonials-section{background-color:var(--color-primary);color:var(--color-white)}
#case-studies-wrapper .cs-testimonials-section h2{color:var(--color-white);margin-bottom:var(--space-3xl)}
#case-studies-wrapper .cs-testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-xl)}
#case-studies-wrapper .cs-testimonial-card{background-color:rgba(255,255,255,.1);padding:var(--space-xl);border-radius:var(--radius-md);position:relative}
#case-studies-wrapper .cs-testimonial-quote{font-size:48px;line-height:1;color:var(--color-accent);opacity:.5;margin-bottom:var(--space-md)}
#case-studies-wrapper .cs-testimonial-text{font-size:16px;line-height:1.7;margin-bottom:var(--space-md);color:rgba(255,255,255,.95)}
#case-studies-wrapper .cs-testimonial-author{font-size:14px;color:rgba(255,255,255,.8);font-style:italic}
#case-studies-wrapper .cs-global-section{background-color:var(--color-surface)}
#case-studies-wrapper .cs-global-content{text-align:center;max-width:900px;margin:0 auto}
#case-studies-wrapper .cs-global-image{width:100%;max-width:1000px;margin:var(--space-xl) auto 0;border-radius:var(--radius-md)}
@media (max-width:1023px){#case-studies-wrapper .cs-cards-grid{grid-template-columns:repeat(2,1fr)}#case-studies-wrapper .cs-testimonials-grid{grid-template-columns:1fr}}
@media (max-width:767px){#case-studies-wrapper .cs-cards-grid{grid-template-columns:1fr}}

/* ============================================
   Shortcode: [tz_product]
   ============================================ */
#tzp-products-wrapper .tzp-search-box{display:flex;max-width:600px;margin:0 auto;gap:12px}
#tzp-products-wrapper .tzp-search-input{flex:1;height:48px;padding:0 16px;font-size:16px;border:none;border-radius:6px;background-color:#fff;transition:box-shadow .3s ease-in-out}
#tzp-products-wrapper .tzp-search-input:focus{outline:none;box-shadow:0 0 0 3px rgba(240, 148, 86,.3)}
#tzp-products-wrapper .tzp-catalog-title{margin-bottom:var(--space-xl)}
#tzp-products-wrapper .tzp-catalog-title h2{font-size:28px}
#tzp-products-wrapper .tzp-catalog-layout{display:grid;grid-template-columns:260px 1fr;gap:var(--space-2xl);align-items:start}
#tzp-products-wrapper .tzp-sidebar{position:sticky;top:100px;align-self:start}
#tzp-products-wrapper .tzp-filter-group{margin-bottom:var(--space-xl)}
#tzp-products-wrapper .tzp-filter-title{font-size:16px;font-weight:600;margin-bottom:var(--space-sm);padding-bottom:var(--space-xs);border-bottom:2px solid var(--color-border)}
#tzp-products-wrapper .tzp-filter-option{display:flex;align-items:center;padding:6px 0;cursor:pointer}
#tzp-products-wrapper .tzp-filter-option:hover{color:var(--color-primary)}
#tzp-products-wrapper .tzp-filter-checkbox{margin-right:10px;width:18px;height:18px;accent-color:var(--color-primary)}
#tzp-products-wrapper .tzp-filter-label{font-size:14px;cursor:pointer}
#tzp-products-wrapper .tzp-product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-xl);align-self:start;align-content:start;align-items:start}
#tzp-products-wrapper .tzp-product-card{background-color:var(--color-white);border-radius:var(--radius-md);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06);transition:transform var(--transition),box-shadow var(--transition);display:flex;flex-direction:column;align-self:start;height:auto}
#tzp-products-wrapper .tzp-product-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.1)}
#tzp-products-wrapper .tzp-product-image{overflow:hidden}
#tzp-products-wrapper .tzp-product-image img{width:100%;height:220px;object-fit:cover;transition:transform var(--transition)}
#tzp-products-wrapper .tzp-product-card:hover .tzp-product-image img{transform:scale(1.05)}
#tzp-products-wrapper .tzp-product-content{padding:var(--space-lg);flex:1;display:flex;flex-direction:column}
#tzp-products-wrapper .tzp-product-card h3{font-size:17px;margin-bottom:var(--space-sm)}
#tzp-products-wrapper .tzp-product-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:var(--space-md)}
#tzp-products-wrapper .tzp-product-tags:empty{display:none;margin-bottom:0}
#tzp-products-wrapper .tzp-tag{padding:4px 10px;background-color:var(--color-surface);color:var(--color-text-secondary);font-size:12px;font-weight:500;border-radius:4px}
@media (max-width:767px){#tzp-products-wrapper .tzp-search-box{flex-direction:column}#tzp-products-wrapper .tzp-search-input{width:100%}}
@media (max-width:1023px){#tzp-products-wrapper .tzp-catalog-layout{grid-template-columns:1fr}#tzp-products-wrapper .tzp-sidebar{position:static;display:flex;flex-wrap:wrap;gap:var(--space-xl)}#tzp-products-wrapper .tzp-product-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){#tzp-products-wrapper .tzp-product-grid{grid-template-columns:1fr}#tzp-products-wrapper .tzp-catalog-title h2{font-size:24px}}

/* ============================================
   Single Post Template
   ============================================ */

.tzp-single-hero {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background-color: var(--color-surface);
}

.tzp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}
.tzp-breadcrumb a { color: var(--color-text-secondary); transition: color var(--transition); }
.tzp-breadcrumb a:hover { color: var(--color-primary); }
.tzp-breadcrumb-sep { color: var(--color-border); user-select: none; }
.tzp-breadcrumb-current { color: var(--color-text-primary); font-weight: 500; }

.tzp-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.tzp-single-category {
    display: inline-block;
    padding: 5px 14px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}
.tzp-single-date,
.tzp-single-reading,
.tzp-single-dot { font-size: 14px; color: var(--color-text-secondary); }

.tzp-single-title {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 0;
}

.tzp-single-featured { padding: var(--space-lg) 0 0; }
.tzp-single-featured-img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.tzp-single-content-section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}
.tzp-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-3xl);
    align-items: start;
}
.tzp-single-body { min-width: 0; }

.tzp-single-content { font-size: 18px; line-height: 1.8; }
.tzp-single-content h2 {
    font-size: 32px;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}
.tzp-single-content h3 {
    font-size: 24px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}
.tzp-single-content h4 {
    font-size: 20px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}
.tzp-single-content p {
    margin-bottom: var(--space-lg);
    font-size: 18px;
    line-height: 1.8;
}
.tzp-single-content ul,
.tzp-single-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}
.tzp-single-content li {
    margin-bottom: var(--space-xs);
    font-size: 18px;
    line-height: 1.7;
}
.tzp-single-content blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-surface);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--color-text-secondary);
}
.tzp-single-content blockquote p { margin-bottom: 0; }
.tzp-single-content img { border-radius: var(--radius-md); margin: var(--space-xl) 0; }
.tzp-single-content figure { margin: var(--space-xl) 0; }
.tzp-single-content figcaption {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: var(--space-sm);
}
.tzp-single-content pre {
    background-color: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--space-lg);
    font-size: 15px;
}
.tzp-single-content code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9em;
    background-color: var(--color-surface);
    padding: 2px 6px;
    border-radius: 3px;
}
.tzp-single-content pre code { background: none; padding: 0; }

.tzp-single-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}
.tzp-single-tags-label { font-size: 14px; font-weight: 600; }
.tzp-single-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    transition: all var(--transition);
}
.tzp-single-tag:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(26,86,168,.05);
}

.tzp-single-share {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}
.tzp-single-share-label { font-size: 14px; font-weight: 600; }
.tzp-single-share-buttons { display: flex; align-items: center; gap: var(--space-xs); }
.tzp-single-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    color: var(--color-text-secondary);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}
.tzp-single-share-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(26,86,168,.05);
}
.tzp-copy-link.copied { color: #16a34a; border-color: #16a34a; background-color: rgba(22,163,74,.08); }

.tzp-single-sidebar { position: sticky; top: 100px; }

.tzp-sidebar-widget {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--color-border);
}
.tzp-sidebar-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.tzp-toc-nav { font-size: 14px; }
.tzp-toc-nav a {
    display: block;
    padding: 7px 0 7px var(--space-sm);
    color: var(--color-text-secondary);
    border-left: 2px solid transparent;
    transition: all var(--transition);
}
.tzp-toc-nav a:hover,
.tzp-toc-nav a.is-active { color: var(--color-primary); border-left-color: var(--color-primary); }
.tzp-toc-nav a.toc-h3 { padding-left: 28px; }

.tzp-sidebar-posts { display: flex; flex-direction: column; gap: var(--space-sm); }
.tzp-sidebar-post {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}
.tzp-sidebar-post:last-child { border-bottom: none; }
.tzp-sidebar-post:hover { color: var(--color-primary); }
.tzp-sidebar-post-img-wrap {
    width: 60px; height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.tzp-sidebar-post-img { width: 100%; height: 100%; object-fit: cover; }
.tzp-sidebar-post-title { font-size: 14px; font-weight: 500; line-height: 1.4; margin-bottom: 2px; }
.tzp-sidebar-post-date { font-size: 12px; color: var(--color-text-secondary); }

.tzp-sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
}
.tzp-sidebar-cta h3 { color: #fff; font-size: 18px; margin-bottom: var(--space-sm); }
.tzp-sidebar-cta p { color: rgba(255,255,255,.9); font-size: 14px; margin-bottom: var(--space-lg); line-height: 1.6; }
.tzp-sidebar-cta .tzp-btn { font-size: 14px; padding: 12px 24px; }

@media (max-width: 1023px) {
    .tzp-single-layout { grid-template-columns: 1fr; }
    .tzp-single-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    .tzp-single-sidebar .tzp-sidebar-widget,
    .tzp-single-sidebar .tzp-sidebar-cta { margin-bottom: 0; }
}

@media (max-width: 767px) {
    .tzp-single-hero { padding: var(--space-2xl) 0 var(--space-xl); }
    .tzp-single-sidebar { grid-template-columns: 1fr; }
    .tzp-single-content { font-size: 16px; }
    .tzp-single-content h2 { font-size: 26px; }
    .tzp-single-content h3 { font-size: 20px; }
    .tzp-single-content p,
    .tzp-single-content li { font-size: 16px; }
    .tzp-single-featured-img { border-radius: 0; max-height: 300px; }
    .tzp-single-share { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Single Case - Key Details & Tags
   ============================================ */

.tzp-case-details {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.tzp-case-details-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}
.tzp-case-detail-item { margin-bottom: var(--space-lg); }
.tzp-case-detail-item:last-child { margin-bottom: 0; }
.tzp-case-detail-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}
.tzp-case-detail-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
}
.tzp-case-detail-text--roi {
    color: #16a34a;
    font-weight: 600;
    font-size: 18px;
}

.tzp-single-category--outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.tzp-card-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-sm);
}
.tzp-card-mini-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    background-color: rgba(26,86,168,.08);
    border-radius: 4px;
}

/* ============================================
   Shortcode: [tz_video]
   ============================================ */
#tzp-videos-wrapper #tzp-videos-filter{background-color:var(--color-bg);padding-top:var(--space-3xl);padding-bottom:var(--space-lg)}
.tzp-filter-tabs{display:flex;justify-content:center;flex-wrap:wrap;gap:var(--space-sm);margin-top:var(--space-xl)}
.tzp-filter-tab{padding:12px 24px;font-family:var(--font-body);font-size:15px;font-weight:500;color:var(--color-text-secondary);background-color:transparent;border:1px solid var(--color-border);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition);-webkit-tap-highlight-color:transparent}
.tzp-filter-tab:hover,.tzp-filter-tab.active{background-color:var(--color-primary);color:var(--color-white);border-color:var(--color-primary)}
#tzp-videos-gallery{background-color:var(--color-bg);padding-top:0;padding-bottom:var(--space-4xl)}
.tzp-video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-xl);margin-top:var(--space-2xl)}
.tzp-video-card{position:relative;background-color:var(--color-bg);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform var(--transition),box-shadow var(--transition);cursor:pointer}
.tzp-video-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.tzp-video-thumbnail{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background-color:var(--color-surface)}
.tzp-video-thumbnail img{width:100%;height:100%;object-fit:cover}
.tzp-play-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:72px;height:72px;background-color:rgba(240, 148, 86,.95);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}
.tzp-play-icon::after{content:'';width:0;height:0;border-left:20px solid white;border-top:12px solid transparent;border-bottom:12px solid transparent;margin-left:4px}
.tzp-video-card:hover .tzp-play-icon{background-color:var(--color-accent);transform:translate(-50%,-50%) scale(1.1)}
.tzp-video-content{padding:var(--space-md)}
.tzp-video-tags{display:flex;flex-wrap:wrap;gap:var(--space-xs);margin-bottom:var(--space-sm)}
.tzp-video-tag{display:inline-block;padding:4px 12px;font-size:12px;font-weight:500;color:var(--color-primary);background-color:rgba(26,86,168,.1);border-radius:var(--radius-sm)}
.tzp-video-content h3{font-size:18px;line-height:1.4;color:var(--color-text-primary);margin:0}
.tzp-video-card.hidden{display:none}
.tzp-video-modal{display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background-color:rgba(0,0,0,.9);align-items:center;justify-content:center;padding:var(--space-md)}
.tzp-video-modal.active{display:flex}
.tzp-video-modal-content{position:relative;display:block;width:100%;max-width:1000px;aspect-ratio:16/9;max-height:90vh;background-color:#000;border-radius:var(--radius-md);overflow:hidden;opacity:1;transform:none}
.tzp-video-modal-close{position:absolute;top:-40px;right:0;width:32px;height:32px;background-color:transparent;border:none;color:var(--color-white);font-size:32px;line-height:1;cursor:pointer;transition:color var(--transition)}
.tzp-video-modal-close:hover{color:var(--color-accent)}
.tzp-video-modal-video-container{width:100%;height:100%}
.tzp-video-modal-video-container iframe{width:100%;height:100%;border:none}
@media (max-width:1023px){.tzp-video-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){.tzp-filter-tabs{gap:var(--space-xs)}.tzp-filter-tab{padding:10px 16px;font-size:14px}.tzp-video-grid{grid-template-columns:1fr;gap:var(--space-lg)}}

/* ============================================
   Single Product Template
   ============================================ */

/* ---- Home Blog Grid & Cards ---- */
.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .home-blog__grid {
    grid-template-columns: 1fr;
  }
}
.home-blog__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}
.home-blog__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.home-blog__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 86, 168, 0.1);
  border-color: rgba(26, 86, 168, 0.15);
}
.home-blog__card:hover::after {
  transform: scaleX(1);
}
.home-blog__card-image-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 240px;
}
.home-blog__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.home-blog__card:hover .home-blog__card-image {
  transform: scale(1.05);
}
.home-blog__card-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-blog__card-date {
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-blog__card-title {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.home-blog__card-excerpt {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.home-blog__card-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.home-blog__card-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.home-blog__card:hover .home-blog__card-link::after {
  transform: translateX(4px);
}
.home-blog__card-link:hover {
  color: var(--color-accent);
}

/* ---- SX Theme (inherits main.css light theme) ---- */
.sx-theme {
  --sx-tech-blue: var(--color-primary);
  --sx-silver-gray: var(--color-text-secondary);
  --sx-dark-slate: var(--color-surface);
  --sx-white-5: var(--color-border);
  --sx-white-10: var(--color-border);
  --sx-white-30: rgba(0, 0, 0, 0.15);
  --sx-card-dark: var(--color-bg);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ---- SX Container ---- */
.sx-container {
  width: 100%;
  max-width: var(--container-content);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ---- SX Typography ---- */
.sx-text-body { font-size: 16px; line-height: 1.6; color: var(--color-text-primary); }
.sx-text-section { font-family: var(--font-heading); font-weight: 600; font-size: 32px; line-height: 1.3; color: var(--color-text-primary); }
.sx-text-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; line-height: 1.4; color: var(--color-text-primary); }

/* ---- SX Animation Utilities ---- */
.sx-animate-left,
.sx-animate-right,
.sx-animate-in,
.sx-animate-scale {
  opacity: 0;
  animation: sxFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.sx-animate-left  { animation-name: sxSlideLeft; }
.sx-animate-right { animation-name: sxSlideRight; }
.sx-animate-in    { animation-name: sxFadeIn; }
.sx-animate-scale { animation-name: sxScaleIn; }

@keyframes sxSlideLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes sxSlideRight { from { opacity:0; transform:translateX(30px); }  to { opacity:1; transform:translateX(0); } }
@keyframes sxFadeIn     { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes sxScaleIn    { from { opacity:0; transform:scale(0.95); }      to { opacity:1; transform:scale(1); } }

.sx-animate-delay-1 { animation-delay: 0.1s; }
.sx-animate-delay-2 { animation-delay: 0.2s; }
.sx-animate-delay-3 { animation-delay: 0.3s; }
.sx-animate-delay-4 { animation-delay: 0.4s; }
.sx-animate-delay-5 { animation-delay: 0.5s; }

/* ---- SX Components ---- */
.sx-border { border: 1px solid var(--color-border); }
.sx-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.sx-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

/* SX Outline Button */
.sx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.sx-btn-outline:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(240, 148, 86, 0.3);
}

/* Product Highlights List */
.product-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-highlights li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--color-text-primary);
}
.product-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}

/* SX Category Card (Related Products) */
.sx-cat-card {
  display: block;
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sx-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sx-cat-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--color-surface);
}
.sx-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.sx-cat-card:hover .sx-cat-card-img img {
  transform: scale(1.05);
}
.sx-cat-card-title {
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ---- Product Top Grid ---- */
.product-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .product-top-grid {
    grid-template-columns: 7fr 5fr;
  }
  .product-details-grid {
    grid-template-columns: 8fr 4fr;
  }
  .product-sidebar {
    position: sticky;
    top: 2rem;
  }
}

/* ---- Product Gallery ---- */
.product-gallery-main {
  position: relative;
  background-color: var(--color-surface);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  overflow: hidden;
  border-radius: var(--radius-md);
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(240, 148, 86, 0.5);
  border: 2px solid #f09456;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.video-play-btn:hover {
  background: rgba(240, 148, 86, 0.8);
  transform: scale(1.1);
}
.video-play-btn svg {
  width: 48px;
  height: 48px;
  fill: #FFFFFF;
  margin-left: 4px;
}
.video-play-btn .fas {
  width: 24px;
  height: 24px;
  color: #ffffff;
  font-size: 24px;
}
.video-embed-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 20;
}
.video-embed-container iframe {
  width: 100%;
  height: 100%;
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
  margin-top: 20px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.product-thumb {
  width: 120px;
  height: 90px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  border-radius: var(--radius-sm);
}
.product-thumb:hover,
.product-thumb.active {
  border-color: var(--color-accent);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-nav-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.gallery-nav-btn:hover {
  background: rgba(240, 148, 86, 0.1);
  border-color: var(--color-accent);
}

/* ---- Product Parameter Table ---- */
.product-parameter-content {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  max-width: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  display: block;
}
.product-parameter-content table {
  min-width: 600px;
  /* width: max-content; */
  border-collapse: collapse;
  text-align: left;
  margin: 0 !important;
  display: table;
}
.product-parameter-content table th,
.product-parameter-content table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 14px;
  line-height: 1.6;
}
.product-parameter-content table th {
  font-weight: 600;
  color: var(--color-primary);
  width: 35%;
  background-color: var(--color-surface);
  border-right: 1px solid var(--color-border);
}
.product-parameter-content table td {
  font-weight: 400;
}
.product-parameter-content table tr:last-child th,
.product-parameter-content table tr:last-child td {
  border-bottom: none;
}
.product-parameter-content table tr:hover td {
  background-color: rgba(26, 86, 168, 0.04);
}

/* ---- Related Products Swiper ---- */
.related-swiper {
  overflow: hidden;
  padding: 0 50px;
}
.related-swiper .swiper-slide {
  height: auto;
}
.related-swiper .swiper-slide a {
  display: block;
  height: 100%;
}
.related-swiper .swiper-button-next,
.related-swiper .swiper-button-prev {
  color: var(--color-accent);
  background: var(--color-surface);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240, 148, 86, 0.24);
  box-shadow: 0 4px 14px rgba(240, 148, 86, 0.16);
}
.related-swiper .swiper-button-next::after,
.related-swiper .swiper-button-prev::after {
  font-size: 14px;
}
.related-swiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
  bottom: auto;
}
.related-swiper .swiper-pagination-bullet {
  background: rgba(240, 148, 86, 0.26);
  opacity: 1;
}
.related-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
}

/* ============================================
   Single Product Responsive
   ============================================ */

/* Mobile < 768px */
@media (max-width: 767px) {
  .sx-section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
  .product-top-grid,
  .product-details-grid { gap: 2rem; }

  /* Gallery */
  .product-gallery-main { aspect-ratio: 4/3; }
  .product-gallery-thumbs {
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .product-thumb { width: 60px; height: 45px; flex-shrink: 0; }
  .video-play-btn { width: 50px; height: 50px; }
  .video-play-btn svg { width: 34px; height: 34px; }
  .gallery-nav-btn { width: 32px; height: 32px; }
  .gallery-nav-btn svg { width: 14px; height: 14px; }

  /* Parameter Table */
  .product-parameter-content table th,
  .product-parameter-content table td {
    padding: 0.75rem 1rem;
    font-size: 13px;
    white-space: nowrap;
  }
  .product-parameter-content table th { width: auto; min-width: 120px; }

  /* Related Products Swiper */
  .related-swiper { padding: 0 30px; }
  .related-swiper .swiper-button-next,
  .related-swiper .swiper-button-prev { width: 30px; height: 30px; }
  .related-swiper .sx-cat-card-img { height: 120px !important; }
  .related-swiper .sx-cat-card-title { padding: 1rem !important; font-size: 14px !important; }

  /* Form */
  .product-sidebar .sx-card { padding: 1.25rem !important; box-shadow: none !important; }

  /* Typography */
  .sx-text-section { font-size: 24px; }
  .product-title { font-size: 24px !important; }
}

/* Tablet 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .product-top-grid { grid-template-columns: 6fr 4fr; gap: 3rem; }
  .product-details-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-sidebar { position: static; }
  .product-thumb { width: 80px; height: 60px; }
  .related-swiper { padding: 0 40px; }
}

/* Global SVG tech icon styles for industrial hard style */
.tech-icon svg,
.tzp-tech-icon svg,
.sm-tech-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  flex-shrink: 0;
}

/* ============================================
   Home Page V1.3
   ============================================ */
#home-wrapper {
  color: var(--color-text-primary);
  background: #FFFFFF;
}

#home-wrapper *,
#home-wrapper *::before,
#home-wrapper *::after {
  box-sizing: border-box;
}

#home-wrapper section[id] {
  scroll-margin-top: 160px;
}

#home-wrapper h1,
#home-wrapper h2,
#home-wrapper h3 {
  font-family: var(--font-heading);
  text-wrap: balance;
}

#home-wrapper p {
  color: var(--color-text-secondary);
}

#home-wrapper .home-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

#home-wrapper .home-section--surface {
  background: var(--color-surface);
}

#home-wrapper .home-section--dark {
  background:
    linear-gradient(135deg, rgba(10, 25, 47, 0.98) 0%, rgba(26, 86, 168, 0.96) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 36%);
}

#home-wrapper .home-section__container {
  width: 100%;
  max-width: var(--container-content);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

#home-wrapper .home-section__title {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

#home-wrapper .home-section__title--left {
  max-width: none;
  margin-left: 0;
  text-align: left;
}

#home-wrapper .home-section__title--light h2,
#home-wrapper .home-section__title--light p {
  color: #FFFFFF;
}

#home-wrapper .home-section__title h2 {
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

#home-wrapper .home-section__title p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

#home-wrapper .tzp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

#home-wrapper .tzp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
#home-wrapper .home-hero {
  position: relative;
  min-height: calc(100vh - 145px);
  padding-top: 84px;
  padding-bottom: 0;
  overflow: hidden;
}

#home-wrapper .home-hero--factory {
  background:
    linear-gradient(90deg, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.48) 38%, rgba(10, 25, 47, 0.18) 100%),
    url('https://tengzhuo.wxkntest.com/wp-content/uploads/2026/05/One-Stop-Industrial-Automated-Packaging-Solutions-2.webp') center/cover no-repeat;
}

#home-wrapper .home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(10, 25, 47, 0.02) 0%, rgba(10, 25, 47, 0.32) 100%);
  pointer-events: none;
}

#home-wrapper .home-hero__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 265px);
}

#home-wrapper .home-hero__content {
  max-width: 760px;
  color: #FFFFFF;
  
}

#home-wrapper .home-hero__pre-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

#home-wrapper .home-hero__line {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

#home-wrapper .home-hero__pre-title {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#home-wrapper .home-hero__title,
#home-wrapper .home-hero__subtitle {
  color: #FFFFFF;
}

#home-wrapper .home-hero__title {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 54px;
  line-height: 1.14;
}

#home-wrapper .home-hero__subtitle {
  max-width: 720px;
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

#home-wrapper .home-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#home-wrapper .home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

#home-wrapper .home-hero__btn:hover {
  transform: translateY(-2px);
}

#home-wrapper .home-hero__btn--primary {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(240, 148, 86, 0.28);
}

#home-wrapper .home-hero__btn--primary:hover {
  background: #d94d1d;
}

#home-wrapper .home-hero__btn--secondary {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

#home-wrapper .home-hero__btn--secondary:hover {
  background: #FFFFFF;
  color: var(--color-primary);
}

#home-wrapper .home-hero__bottom-bar {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

#home-wrapper .home-hero__data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#home-wrapper .home-hero__data-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

#home-wrapper .home-hero__data-item:last-child {
  border-right: none;
}

#home-wrapper .home-hero__data-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

#home-wrapper .home-hero__data-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

#home-wrapper .home-hero__data-copy {
  display: grid;
  gap: 2px;
}

#home-wrapper .home-hero__data-value {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

#home-wrapper .home-hero__data-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

/* Products */
#home-wrapper .home-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#home-wrapper .home-products__card {
  background: #FFFFFF;
  border: 1px solid rgba(26, 86, 168, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

#home-wrapper .home-products__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 86, 168, 0.18);
}

#home-wrapper .home-products__card-image-wrap {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

#home-wrapper .home-products__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

#home-wrapper .home-products__card:hover .home-products__card-image {
  transform: scale(1.05);
}

#home-wrapper .home-products__card-content {
  padding: 28px 24px;
}

#home-wrapper .home-products__card-title {
  margin-bottom: 18px;
  color: var(--color-text-primary);
}

#home-wrapper .home-products__card-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#home-wrapper .home-products__card-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

#home-wrapper .home-products__card-links a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

/* Industries */
#home-wrapper .home-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

#home-wrapper .home-industries__card {
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

#home-wrapper .home-industries__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

#home-wrapper .home-industries__card-image-wrap {
  padding: 18px 18px 0;
}

#home-wrapper .home-industries__card-image-wrap--framed {
  padding-top: 22px;
}

#home-wrapper .home-industries__card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
  transition: transform .7s ease;
}

#home-wrapper .home-industries__card:hover .home-industries__card-image {
  transform: scale(1.04);
}

#home-wrapper .home-industries__card-content {
  padding: 24px 22px 26px;
}

#home-wrapper .home-industries__card-title {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

#home-wrapper .home-industries__card-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Solutions */
#home-wrapper .home-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#home-wrapper .home-solutions__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 86, 168, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

#home-wrapper .home-solutions__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

#home-wrapper .home-solutions__card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

#home-wrapper .home-solutions__card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

#home-wrapper .home-solutions__title {
  margin-bottom: 18px;
  color: var(--color-text-primary);
}

#home-wrapper .home-solutions__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}

#home-wrapper .home-solutions__features li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

#home-wrapper .home-solutions__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

#home-wrapper .home-solutions__btn,
#home-wrapper .home-cases__view-all-btn,
#home-wrapper .home-blog__view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition);
}

#home-wrapper .home-solutions__btn:hover,
#home-wrapper .home-cases__view-all-btn:hover,
#home-wrapper .home-blog__view-all-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* Why */
#home-wrapper .home-why__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

#home-wrapper .home-why__title {
  color: #FFFFFF;
}

#home-wrapper .home-why__list {
  display: grid;
  gap: 18px;
}

#home-wrapper .home-why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#home-wrapper .home-why__item-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

#home-wrapper .home-why__item-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

#home-wrapper .home-why__item h3,
#home-wrapper .home-why__item p {
  color: #FFFFFF;
}

#home-wrapper .home-why__item h3 {
  margin-bottom: 10px;
}

#home-wrapper .home-why__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

#home-wrapper .home-why__carousel {
  display: grid;
  gap: 18px;
  height: 100%;
}

#home-wrapper .home-why__carousel-track {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(4, 12, 30, 0.28);
}

#home-wrapper .home-why__slide {
  position: relative;
  inset: auto;
  min-width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: none;
}

#home-wrapper .home-why__slide.is-active {
  opacity: 1;
  visibility: visible;
}

#home-wrapper .home-why__slides {
  display: flex;
  width: 100%;
  height: 100%;
}

#home-wrapper .home-why__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-wrapper .home-why__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#home-wrapper .home-why__carousel-btn {
  min-width: 86px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  cursor: pointer;
}

#home-wrapper .home-why__carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

#home-wrapper .home-why__carousel-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

#home-wrapper .home-why__carousel-dot.is-active {
  background: var(--color-accent);
}

/* Factory */
#home-wrapper .home-factory__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

#home-wrapper .home-factory__counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#home-wrapper .home-factory__counter {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 20px;
  background: var(--color-surface);
  border: 1px solid rgba(26, 86, 168, 0.08);
}

#home-wrapper .home-factory__counter strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.05;
}

#home-wrapper .home-factory__counter span {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

#home-wrapper .home-factory__gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

#home-wrapper .home-factory__gallery-item {
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

#home-wrapper .home-factory__gallery-item--large {
  grid-row: span 2;
  min-height: 456px;
}

#home-wrapper .home-factory__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-wrapper .home-factory__badges {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #0A192F;
}

#home-wrapper .home-factory__badges-title {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

#home-wrapper .home-factory__badges-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

#home-wrapper .home-factory__badges-logos img {
  width: 100%;
  max-width: 104px;
  justify-self: center;
  filter: brightness(1.05) saturate(0);
}

/* Certifications */
#home-wrapper .home-certifications__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

#home-wrapper .home-certifications__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

#home-wrapper .home-certifications__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #F8F9FA;
}

#home-wrapper .home-certifications__card p {
  margin: 0;
  margin-top: auto;
  font-size: 14px;
  line-height: 1.6;
}

/* Cases */
#home-wrapper .home-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#home-wrapper .home-cases__card {
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid rgba(26, 86, 168, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

#home-wrapper .home-cases__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

#home-wrapper .home-cases__card-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

#home-wrapper .home-cases__card-image-wrap {
  overflow: hidden;
}

#home-wrapper .home-cases__card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s ease;
}

#home-wrapper .home-cases__card:hover .home-cases__card-image {
  transform: scale(1.05);
}

#home-wrapper .home-cases__card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

#home-wrapper .home-cases__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#home-wrapper .home-cases__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 86, 168, 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

#home-wrapper .home-cases__card-title {
  margin: 0;
  color: var(--color-text-primary);
}

#home-wrapper .home-cases__card-excerpt {
  margin: 0;
  line-height: 1.7;
}

#home-wrapper .home-cases__card-cta {
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 700;
}

#home-wrapper .home-cases__view-all,
#home-wrapper .home-blog__view-all {
  margin-top: 36px;
  text-align: center;
}

#home-wrapper .home-cases__empty,
#home-wrapper .home-blog__empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--color-text-secondary);
}

/* Service */
#home-wrapper .home-service__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#home-wrapper .home-service__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

#home-wrapper .home-service__step-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(26, 86, 168, 0.08);
  color: var(--color-primary);
}

#home-wrapper .home-service__step-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

#home-wrapper .home-service__step-number {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

#home-wrapper .home-service__step-title {
  margin: 0;
  color: var(--color-text-primary);
}

#home-wrapper .home-service__step-description {
  margin: 0;
  line-height: 1.7;
}

/* Blog */
#home-wrapper .home-blog__grid {
  margin-top: 0;
}

@media (max-width: 1199px) {
  #home-wrapper .home-industries__grid,
  #home-wrapper .home-certifications__grid,
  #home-wrapper .home-service__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  #home-wrapper .home-hero {
    min-height: auto;
    padding-top: 64px;
  }

  #home-wrapper .home-hero__shell {
    min-height: auto;
  }

  #home-wrapper .home-hero__content {
   
  }

  #home-wrapper .home-hero__data-grid,
  #home-wrapper .home-products__grid,
  #home-wrapper .home-solutions__grid,
  #home-wrapper .home-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #home-wrapper .home-why__layout,
  #home-wrapper .home-factory__layout {
    grid-template-columns: 1fr;
  }

  #home-wrapper .home-why__carousel-track {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  #home-wrapper section[id] {
    scroll-margin-top: 110px;
  }

  #home-wrapper .home-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #home-wrapper .home-section__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #home-wrapper .home-section__title {
    margin-bottom: 36px;
  }

  #home-wrapper .home-section__title h2 {
    font-size: 28px;
  }

  #home-wrapper .home-section__title p {
    font-size: 15px;
  }

  #home-wrapper .home-hero {
    padding-top: 48px;
  }

  #home-wrapper .home-hero__content {
    
  }

  #home-wrapper .home-hero__title {
    font-size: 38px;
  }

  #home-wrapper .home-hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  #home-wrapper .home-hero__buttons {
    flex-direction: column;
  }

  #home-wrapper .home-hero__btn,
  #home-wrapper .home-solutions__btn,
  #home-wrapper .home-cases__view-all-btn,
  #home-wrapper .home-blog__view-all-btn {
    width: 100%;
  }

  #home-wrapper .home-hero__data-grid,
  #home-wrapper .home-products__grid,
  #home-wrapper .home-industries__grid,
  #home-wrapper .home-solutions__grid,
  #home-wrapper .home-factory__counters,
  #home-wrapper .home-certifications__grid,
  #home-wrapper .home-cases__grid,
  #home-wrapper .home-service__timeline {
    grid-template-columns: 1fr;
  }

  #home-wrapper .home-hero__data-item {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  #home-wrapper .home-hero__data-item:last-child {
    border-bottom: none;
  }

  #home-wrapper .home-hero__data-value {
    font-size: 26px;
  }

  #home-wrapper .home-products__card {
    aspect-ratio: 1 / 1;
  }

  #home-wrapper .home-products__card-image-wrap {
    aspect-ratio: 1 / 1;
  }

  #home-wrapper .home-why__item {
    padding: 20px;
  }

  #home-wrapper .home-why__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  #home-wrapper .home-why__carousel-track {
    min-height: 320px;
  }

  #home-wrapper .home-why__carousel-controls {
    gap: 10px;
  }

  #home-wrapper .home-why__carousel-btn {
    min-width: 72px;
  }

  #home-wrapper .home-factory__gallery {
    grid-template-columns: 1fr;
  }

  #home-wrapper .home-factory__gallery-item--large {
    min-height: 320px;
    grid-row: auto;
  }

  #home-wrapper .home-factory__badges-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Fix automatic hero text color */
#tzp-automatic-hero h1,
#tzp-automatic-hero p {
  color: #ffffff !important;
}
