/* ============================================
   Font Face Declarations — Poppins
   ============================================ */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/Poppins-Light.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/Poppins-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/Poppins-Medium.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/Poppins-SemiBold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/wp-content/uploads/fonts/Poppins-Bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================
   Brand Color System (from HOME-DESIGN-DOC.md)
   ============================================ */
:root {
  /* === Logo标准三色 === */
  --color-navy:          #252B4A;   /* 深藏青色 - Logo主色，导航、标题、按钮主色 */
  --color-orange:        #FB8708;   /* 温暖橙色 - 强调色，CTA按钮、高亮、图标、点缀 */
  --color-black:         #222023;   /* 近黑色 - Logo文字色，正文标题、深色背景 */

  /* === 功能色 === */
  --color-navy-dark:     #1C2138;   /* 深藏青深色 - hover状态 */
  --color-orange-dark:   #E07600;   /* 橙色深色 - hover状态 */
  --color-orange-light:  #FFF5EB;   /* 橙色浅色 - 背景点缀 */
  --color-navy-light:    #F0F3F8;   /* 藏青浅色 - 卡片背景 */

  /* === 中性色 === */
  --color-text-primary:  #333333;   /* 正文文字 */
  --color-text-secondary:#6B6B6B;   /* 次要文字、描述 */
  --color-text-light:    #999999;   /* 辅助文字、日期 */
  --color-border:        #E8E8E8;   /* 边框分割线 */
  --color-bg-light:      #F8F8F8;   /* 浅灰区块背景 */
  --color-white:         #FFFFFF;

  /* === 向后兼容别名 === */
  --color-gold:          #252B4A;   /* 旧名 → 指向navy */
  --color-gold-dark:     #1C2138;   /* 旧名 → 指向navy-dark */
  --color-gold-bright-rgb: 37, 43, 74;
  --color-dark-navy:     #1C2138;
  --color-navy-rgb: 37, 43, 74;
  --color-navy-dark-rgb: 28, 33, 56;

  /* === 字体 === */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --color-gold-rgb: 37, 43, 74;
  --color-dark-navy-rgb: 28, 33, 56;

  /* Extended palette */
  --color-red: #C62828;
  --color-silver: #D8DEE6;
  --color-steel: #666666;
  --color-ink: #333333;
  --color-blue-bright: #3A5A8C;
  --color-blue-light: #5A7AAC;
}

/* ============================================
   Bootstrap Override Variables
   ============================================ */
:root {
  --bs-primary: #252B4A;
  --bs-primary-rgb: 37, 43, 74;
  --bs-primary-text-emphasis: #1C2138;
  --bs-primary-bg-subtle: #F0F3F8;
  --bs-primary-border-subtle: #B0B8CC;
  --bs-link-color: #252B4A;
  --bs-link-color-rgb: 37, 43, 74;
  --bs-link-hover-color: #1C2138;
  --bs-link-hover-color-rgb: 28, 33, 56;
  --bs-body-color: #333333;
  --bs-body-color-rgb: 51, 51, 51;
  --bs-body-bg: #FFFFFF;
  --bs-border-color: #E8E8E8;
  --bs-heading-color: #333333;
  --bs-font-sans-serif: var(--font-body);
}

/* === Text Color Utilities === */
.text-navy { color: var(--color-navy) !important; }
.text-orange { color: var(--color-orange) !important; }

/* ============================================
   Base Styles
   ============================================ */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Heading Font === */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-heading);
}


a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-navy-dark);
}

::selection {
  background: var(--color-navy);
  color: #fff;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-primary);
}

/* ============================================
   Brand Utility Classes
   ============================================ */
.text-brand {
  color: var(--color-navy) !important;
}

.text-gold {
  color: var(--color-gold) !important;
}

.text-secondary-custom {
  color: var(--color-text-secondary) !important;
}

.bg-brand {
  background-color: var(--color-navy) !important;
}

.bg-brand-dark {
  background-color: var(--color-navy-dark) !important;
}

.bg-gold {
  background-color: var(--color-gold) !important;
}

.bg-light-custom {
  background-color: var(--color-bg-light) !important;
}

.border-brand {
  border-color: var(--color-border) !important;
}

/* ============================================
   Brand Buttons
   ============================================ */
.btn {
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--color-navy);
  --bs-btn-border-color: var(--color-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-navy-dark);
  --bs-btn-hover-border-color: var(--color-navy-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--color-navy-dark);
  --bs-btn-active-border-color: var(--color-navy-dark);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--color-navy);
  --bs-btn-disabled-border-color: var(--color-navy);
  border-radius: 0;
}

.btn-gold {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--color-gold);
  --bs-btn-border-color: var(--color-gold);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-gold-dark);
  --bs-btn-hover-border-color: var(--color-gold-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--color-gold-dark);
  --bs-btn-active-border-color: var(--color-gold-dark);
  color: #fff;
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  border-radius: 0;
}

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

.btn-outline-brand {
  --bs-btn-color: var(--color-navy);
  --bs-btn-border-color: var(--color-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-navy);
  --bs-btn-hover-border-color: var(--color-navy);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--color-navy);
  --bs-btn-active-border-color: var(--color-navy);
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  background: transparent;
  border-radius: 0;
}

.btn-outline-brand:hover {
  color: #fff;
  background: var(--color-navy);
  border-color: var(--color-navy);
}

/* ============================================
   Section Spacing
   ============================================ */
.section-padding {
  padding-top:0;
  padding-bottom: 5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

/* ============================================
   Header Styles
   ============================================ */

/* --- Container full-width override --- */
@media (max-width: 575.98px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 100%;
  }
}

/* --- Top Bar --- */
/* Removed: header-top-bar no longer present */

/* --- Main Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header-main {
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-main > .container {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.header-logo img {
  max-width: 200px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Logo switching: white logo by default (frosted glass), color logo on scroll/hover */
.header-logo .logo-white {
  display: block;
}
.header-logo .logo-color {
  display: none;
}
.site-header.navbar-scrolled .header-logo .logo-white {
  display: none;
}
.site-header.navbar-scrolled .header-logo .logo-color {
  display: block;
}

/* CTA Button (Free Sample) */
.header-quote-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  margin-left: auto;
  margin-right: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F8F9FA;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  z-index: 2;
  white-space: nowrap;
}

.header-quote-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #F8F9FA;
  transform: translateY(-1px);
}

.header-search-btn {
  background: none;
  border: none;
  color: #F8F9FA;
  padding: 0.5rem;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  z-index: 2;
}

.header-search-btn:hover {
  opacity: 0.75;
  color: #F8F9FA;
}

/* Language switch (desktop) */
.header-lang-switch {
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.header-lang-btn {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.375rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #F8F9FA;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-lang-btn:hover {
  opacity: 0.75;
  color: #F8F9FA;
}

.header-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.375rem;
  min-width: 150px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  z-index: 100;
}

.header-lang-menu.open {
  display: block;
  animation: langFadeIn 0.2s ease;
}

@keyframes langFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-lang-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-primary);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.header-lang-menu li a:hover,
.header-lang-menu li a.active {
  background: var(--color-bg-light);
  color: var(--color-gold);
}

/* WP-rendered language menu: the UL only keeps .nav-list after nav mounting,
   so replicate .header-lang-menu dropdown styles scoped to .header-lang-switch */
.header-lang-switch .nav-list {
  position: absolute;
  top: 78%;
  right: 0;
  margin: 0.375rem 0 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.header-lang-switch:hover .nav-list,
.header-lang-switch .nav-list.open {
  display: block;
  animation: langFadeIn 0.2s ease;
}

.header-lang-switch .nav-list li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-primary);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.header-lang-switch .nav-list li a:hover,
.header-lang-switch .nav-list li a.active,
.header-lang-switch .nav-list li.current-menu-item > a {
  background: var(--color-bg-light);
  color: var(--color-gold);
}

/* --- Desktop Nav --- */
@media (min-width: 992px) and (max-width: 1199px) {
  .header-nav-main .nav-item > a {
    padding: 0 0.75rem;
    font-size: 14px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header-nav-main .nav-item > a {
    padding: 0 0.875rem;
  }
}

.header-nav-main {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

/* Desktop: nav participates in flex flow, centered in the leftover
   space between logo and right-side controls — longer translated
   labels push toward the logo instead of overlapping the CTA */
@media (min-width: 992px) {
  .header-logo { order: 1; }
  .header-nav-main {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
  }
  .header-quote-btn {
    order: 3;
    margin-left: 0;
  }
  .header-search-btn { order: 4; }
  .header-lang-switch { order: 5; }
  .header-actions { order: 6; }
}

.header-nav-main .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  pointer-events: auto;
}

.header-nav-main .nav-item {
  position: relative;
}

.header-nav-main .nav-item > a {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  height: 72px;
  font-size: 12pt;
  font-weight: 500;
  color: #F8F9FA;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.25s ease;
}

/* Pill background on hover/active */
.header-nav-main .nav-item > a::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 18px;
  border-radius: 50px;
  background: var(--color-orange);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header-nav-main .nav-item > a:hover,
.header-nav-main .nav-item > a:focus,
.header-nav-main .nav-item.current-menu-item > a {
  color: #F8F9FA;
}

.header-nav-main .nav-item > a:hover::before,
.header-nav-main .nav-item.current-menu-item > a::before {
  transform: scaleX(1);
}

/* Dropdown caret */
.header-nav-main .menu-item-has-children > a {
  gap: 0.25rem;
}

.header-nav-main .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23F8F9FA' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.2s ease;
}

.header-nav-main .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Sub Menu */
.header-nav-main .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 200;
}

.header-nav-main .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav-main .sub-menu .nav-item > a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  height: auto;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-primary);
  transition: background 0.15s ease, color 0.15s ease;
}

.header-nav-main .sub-menu .nav-item > a::after {
  display: none;
}

.header-nav-main .sub-menu .nav-item > a::before {
  display: none;
}

.header-nav-main .sub-menu .nav-item > a:hover {
  background: var(--color-bg-light);
  color: var(--color-navy);
}

/* Force sub-menu hover to stay dark even when navbar is scrolled */
.site-header.navbar-scrolled .header-nav-main .sub-menu .nav-item > a:hover,
.site-header.navbar-scrolled .header-nav-main .sub-menu .nav-item > a:focus {
  color: var(--color-navy);
}

/* Mega Menu */
.header-nav-main .has-mega {
  position: static;
}

.header-nav-main .has-mega > .mega-menu {
  position: absolute;
  top: 100%;
  left: calc(-50vw + 50%);
  right: auto;
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  padding: 0;
  overflow: hidden;
}

.header-nav-main .has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  padding: 48px 64px;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .mega-menu-inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .mega-menu-inner {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .mega-menu-inner {
    max-width: 1320px;
  }
}

/* Mega Categories Layout - 4 Column Product Grid */
.mega-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.mega-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background: var(--color-white);
  border: none;
}

.mega-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.svg-icons {
  display: none;
}

.svg-sprite {
  display: none;
}

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

.mega-card-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mega-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mega-category-card:hover .mega-card-img img {
  transform: scale(1.05);
}

.mega-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 16px 0 6px 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.mega-category-card:hover .mega-card-title {
  color: var(--color-navy);
}

.mega-card-desc {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.mega-back-btn {
  display: none;
}

/* --- Mobile Nav --- */
.header-nav-mobile {
  display: none;
}

/* --- Mobile Hamburger --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  z-index: 2;
}

.navbar-toggler {
  background: none;
  border: none;
  padding: 0.5rem;
  color: #F8F9FA;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* ============================================
   Mobile Header (<992px) — adapted from jingzhan-header
   ============================================ */
@media (max-width: 991.98px) {


  .header-main > .container {
    min-height: 60px;
  }

  .header-logo img {
    height: 44px;
    width: auto;
  }

  .header-nav-main {
    display: none !important;
  }

  .header-search-btn {
    display: none !important;
  }

  .header-lang-switch {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #F8F9FA;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #F8F9FA;
  }

  .navbar-toggler:active {
    transform: scale(0.96);
  }

  .navbar-toggler svg {
    width: 22px;
    height: 22px;
  }

  /* Mobile full-screen overlay nav */
  .header-nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .header-nav-mobile.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-nav-mobile .mobile-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--color-steel);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-nav-mobile .mobile-close-btn:hover {
    background: var(--color-ice);
    color: var(--color-red);
  }

  .header-nav-mobile .mobile-close-btn:active {
    transform: scale(0.96);
  }

  .header-nav-mobile .mobile-close-btn svg {
    width: 22px;
    height: 22px;
  }

  .header-nav-mobile .nav-list {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 70px 0 2rem;
    gap: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
  }

  .header-nav-mobile .nav-item {
    margin: 0;
  }

  .header-nav-mobile .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.2s ease-in-out;
    height: auto;
    min-height: 54px;
  }

  .header-nav-mobile .nav-item > a::after {
    display: none;
  }

  .header-nav-mobile .nav-item > a:hover {
    color: var(--color-gold);
  }

  /* Sub-menu caret (+) indicator */
  .header-nav-mobile .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0.625rem;
    height: 0.625rem;
    margin-left: auto;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231A2744' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
  }

  .header-nav-mobile .menu-item-has-children.open > a::after {
    transform: rotate(180deg);
  }



  /* Sub-menu expand/collapse */
  .header-nav-mobile .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--color-bg-light);
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
  }

  .header-nav-mobile .menu-item-has-children.open > .sub-menu {
    display: block;
  }

  .header-nav-mobile .sub-menu a {
    padding: 1rem 1.5rem 1rem 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    min-height: 50px;
  }

  .header-nav-mobile .sub-menu a:hover {
    color: var(--color-gold);
    background: transparent;
  }

  /* Mega menu mobile — full-screen overlay */
  .header-nav-mobile .mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: #fff;
    overflow-y: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-width: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-nav-mobile .menu-item-has-children.has-mega.open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-nav-mobile .has-mega > a {
    text-align: left;
  }

  .header-nav-mobile .mega-menu-inner {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .header-nav-mobile .mega-categories-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .header-nav-mobile .mega-card-img img {
    height: 160px;
  }

  .header-nav-mobile .mega-card-title {
    font-size: 0.9375rem;
    margin: 12px 0 4px 0;
  }

  .header-nav-mobile .mega-card-desc {
    font-size: 0.8125rem;
  }

  .header-nav-mobile .mega-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
  }

  .header-nav-mobile .mega-back-btn:hover {
    background: var(--color-ice);
    color: var(--color-gold);
  }

  .header-nav-mobile .mega-back-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   Hero Section (Swiper)
   ============================================ */
.about-hero {
  position: relative;
  min-height: 680px;
  height: 680px;
  max-height: 680px;
  overflow: hidden;
  background: #fff;
}
.about-hero .about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero .about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .about-hero {
    min-height: 520px;
    height: 520px;
    max-height: 520px;
  }
}
.hero-section {
  position: relative;
  min-height: 700px;
  height: 700px;
  max-height:700px;
  overflow: hidden;
  background: #fff;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.08) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-slide,
.hero-swiper {
  height: 100%;
}
.hero-slide {
  position: relative;
}
.hero-slide .hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide .hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* aipress: 黑色覆盖涂层已移除，保留空overlay以便结构完整性 */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  color: #fff;
}
.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--color-orange);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-actions .btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.hero-actions .btn-primary:active {
  transform: translateY(0);
}
.hero-actions .btn-primary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-actions .btn-primary:hover svg {
  transform: translateX(4px);
}
.hero-swiper-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.hero-swiper-btn svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
  fill: currentColor;
  color: #fff;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-swiper-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}
.hero-swiper-btn:hover svg {
  transform: scale(1.15);
}
.hero-swiper-btn:active {
  transform: scale(0.95);
}
.hero-swiper-btn::after {
  display: none;
}
.hero-swiper-prev {
  left: 28px;
}
.hero-swiper-next {
  right: 28px;
}
.hero-swiper-pagination {
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 !important;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 32px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 520px;
    height: 520px;
    max-height: 520px;
  }
  .hero-content {
    padding: 60px 40px 40px;
  }
  .hero-title {
    font-size: 1.35rem;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 0.875rem;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .hero-swiper-btn,
  .hero-swiper-prev,
  .hero-swiper-next {
    display: none !important;
  }
  .hero-swiper-pagination {
    bottom: 16px;
  }
}

/* ============================================
   Search Overlay — Top Panel
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  padding: 1.25rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.open,
.search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-overlay-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-overlay-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--color-ink);
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.search-overlay-close:hover {
  opacity: 1;
}

.search-form {
  flex: 1;
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
}

.search-form:focus-within {
  border-color: var(--color-orange);
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  padding: 0.6rem 0;
  font-size: 1.0625rem;
  color: var(--color-ink);
  outline: none;
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.search-submit {
  background: none;
  border: none;
  color: var(--color-ink);
  padding: 0.6rem 0.5rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.search-submit:hover {
  opacity: 0.8;
}

/* ============================================
   Header Scroll Effect
   ============================================ */
.site-header.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Scrolled → nav text deep navy */
.site-header.navbar-scrolled .header-nav-main .nav-item > a {
  color: var(--color-navy);
}

/* Scrolled hover/current → white text on orange pill */
.site-header.navbar-scrolled .header-nav-main .nav-item > a:hover,
.site-header.navbar-scrolled .header-nav-main .nav-item > a:focus,
.site-header.navbar-scrolled .header-nav-main .nav-item.current-menu-item > a {
  color: #fff;
}

/* Scrolled hover/focus/current → white caret arrow */
.site-header.navbar-scrolled .header-nav-main .menu-item-has-children > a:hover::after,
.site-header.navbar-scrolled .header-nav-main .menu-item-has-children > a:focus::after,
.site-header.navbar-scrolled .header-nav-main .menu-item-has-children.current-menu-item > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

/* Dropdown caret → navy */
.site-header.navbar-scrolled .header-nav-main .menu-item-has-children > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23252B4A' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

/* Search button → navy */
.site-header.navbar-scrolled .header-search-btn {
  color: var(--color-navy);
}

.site-header.navbar-scrolled .header-search-btn:hover {
  color: var(--color-navy);
  opacity: 0.7;
}

/* CTA button → scrolled: solid orange bg */
.site-header.navbar-scrolled .header-quote-btn {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

.site-header.navbar-scrolled .header-quote-btn:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  box-shadow: 0 4px 12px rgba(242, 128, 41, 0.3);
}

/* Language switch → navy */
.site-header.navbar-scrolled .header-lang-btn {
  color: var(--color-navy);
}

.site-header.navbar-scrolled .header-lang-btn:hover {
  color: var(--color-navy);
  opacity: 0.7;
}

/* Mobile hamburger → navy when scrolled */
.site-header.navbar-scrolled .navbar-toggler {
  color: var(--color-navy);
}

/* ============================================
   Hero Video Button & Modal
   ============================================ */
.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff !important;
  color: #E8732A !important;
  border: 1.5px solid #fff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 60px;
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  line-height: 1.5;
}
.hero-video-btn:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-video-btn-svg {
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.hero-video-btn:hover .hero-video-btn-svg {
  transform: scale(1.1);
}
.hero-video-btn-dash {
  transform-origin: center;
  animation: hero-video-spin 3s linear infinite;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-video-btn:hover .hero-video-btn-dash {
  animation-play-state: paused;
}
@keyframes hero-video-spin {
  to { transform: rotate(360deg); }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 85vh;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.video-modal.is-open .video-modal-content {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
}
.video-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.video-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
  border-radius: 12px;
  border: none;
}

/* ============================================
   Video Section — Why Choose Us
   ============================================ */
.video-section {
  padding: 72px 0;
  background: #f8f9fa;
}

.video-header {
  max-width: 720px;
  margin: 0 auto 52px;
}

.video-header .video-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.video-label {
  display: inline-flex;
  align-items: center;
  color: var(--color-navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.video-header .video-desc {
  font-size: 11pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  width: 100%;
}

.video-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container:hover .video-cover {
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.video-play-btn svg {
  margin-left: 3px;
  color: #FF0000;
}

.video-platform-hint {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.video-platform-hint svg {
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .video-section {
    padding: 48px 0;
  }

  .video-header {
    margin-bottom: 36px;
  }

  .video-header .video-title {
    gap: 8px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 575.98px) {
  .video-header .video-title {
    gap: 6px;
  }

  .video-play-btn {
    width: 52px;
    height: 52px;
  }

  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .video-platform-hint {
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* ============================================
   Footer — Light Gray
   ============================================ */
.site-footer {
  position: relative;
  background: #fff;
  color: var(--color-ink);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Decorative top border — subtle orange line with center diamond */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(232, 115, 42, 0.15);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  border-radius: 1px;
  box-shadow:
    0 0 0 4px rgba(232, 115, 42, 0.06),
    0 0 0 10px rgba(232, 115, 42, 0.025);
}

/* --- Grid Layout: Brand | Quick Links | Categories | Find Us --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
  gap: 2.5rem;
  padding: 5rem 0 3.5rem;
}

/* --- Brand Column --- */
.footer-brand-col {
  text-align: left;
  padding-right: 2rem;
}
.footer-brand-col .footer-logo {
  margin-bottom: .25rem;
}
.footer-brand-col .footer-logo img {
  width: 180px;
  height: auto;
}
.footer-desc {
  font-size: 11pt;
  color: #555;
  margin: 0 0 1.75rem;
  line-height: 1.75;
  max-width: 380px;
}

/* --- Social Links --- */
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-orange);
  background: var(--color-orange-light);
  border: 1px solid rgba(232, 115, 42, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social-link:hover {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}
.footer-social-link svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* --- Column Titles --- */
.footer-title {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}

/* --- Link Lists --- */
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  margin-bottom: 0.5rem;
  font-size: 11pt;
}
.footer-link {
  color: #555;
  text-decoration: none;
  font-size: 11pt;
  transition: color .3s ease;
  display: inline-block;
}
.footer-link:hover {
  color: var(--color-orange);
}

/* --- Contact List --- */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  color: var(--color-orange);
}
.footer-contact-icon svg {
  display: block;
}
.footer-contact-text {
  font-size: 11pt;
  color: #555;
  line-height: 1.5;
}
.footer-contact-link {
  color: #555;
  text-decoration: none;
  transition: color .3s ease;
}
.footer-contact-link:hover {
  color: var(--color-orange);
}

/* --- Responsive: Tablet --- */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding: 3.5rem 0 2.5rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    max-width: 520px;
  }
  .footer-brand-col .footer-logo img {
    max-width: 160px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 575.98px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
    padding: 2rem 0 1.5rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    padding: 0;
    text-align: center;
  }
  .footer-brand-col .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-brand-col .footer-logo img {
    max-width: 150px;
  }
  .footer-desc {
    max-width: 100%;
    margin: 0 0 1.25rem;
    text-align: center;
    font-size: 10pt;
  }
  .footer-social {
    justify-content: center;
    gap: 8px;
  }
  .footer-social-link {
    width: 34px;
    height: 34px;
  }
  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }
  .footer-title {
    font-size: 11pt;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .footer-title::after {
    width: 22px;
    height: 2px;
  }
  .footer-list li {
    margin-bottom: 0.35rem;
  }
  .footer-link {
    font-size: 10pt;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
  }
  .footer-contact-text {
    font-size: 10pt;
  }
}

/* --- Copyright Bar --- */
.footer-copyright-bar {
  background: var(--color-orange);
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  padding: 14px 20px;
}

/* ============================================
   Welcome Section (Module 3)
   ============================================ */
.welcome-section {
  padding: 72px 0;
  background: #fff;
  position: relative;
}

.welcome-header {
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-title {
  font-size: 28pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.welcome-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.welcome-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  margin-top: 0;
}

.feature-card {
  text-align: center;
  padding: 40px 32px 36px;
  min-height: 245px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #F5F5F2;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-number {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.feature-divider {
  width: 32px;
  height: 2px;
  background: var(--color-orange);
  margin: 0 auto 20px;
  border-radius: 1px;
}

.feature-text {
  font-size: 11pt;
  font-weight: 400;
  color: var(--color-steel);
  line-height: 1.75;
  margin: 0;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .welcome-section {
    padding: 48px 0;
  }

  .welcome-header {
    margin-bottom: 28px;
  }

  .welcome-title {
    margin-bottom: 4px;
  }

  .welcome-subtitle {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .welcome-desc {
    line-height: 1.6;
  }

  .feature-card {
    padding: 32px 24px 28px;
  }

  .features-grid {
    gap: 20px;
  }
}

/* ============================================
   About Story Section
   ============================================ */
.about-story {
  padding: 80px 0;
}

.about-story-title {
  font-size: 28pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.about-story-text .about-story-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.about-story-body {
  margin-bottom: 56px;
}

.about-story-img {
  float: right;
  width: 50%;
  margin: 4px 0 20px 32px;
}

.about-story-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-text p {
  font-size: 13pt;
  color: var(--color-steel);
  line-height: 1.8;
  margin: 0 0 18px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  border: 1px solid var(--color-border);
  padding: 40px 32px;
}

.about-stats-in {
  gap: 24px;
  row-gap: 32px;
}

.about-stat {
  flex: 1 1 200px;
  text-align: center;
}

.about-stat-num {
  font-size: 30pt;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1.1;
  margin-bottom: 8px;
}

3.about-stat-label {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.4;
  margin: 0 auto;
 
  text-align: center;
}

@media (max-width: 767px) {
  .about-story {
    padding: 56px 0;
  }

  .about-story-body {
    margin-bottom: 40px;
  }

  .about-story-title {
    font-size: 24pt;
  }

  .about-story-text .about-story-subtitle {
    font-size: 20px;
  }

  .about-story-text p {
    line-height: 1.7;
  }

  .about-story-img {
    float: none;
    width: 100%;
    margin: 0 0 24px;
  }

  .about-stats {
    padding: 32px 20px;
  }

  .about-stat-num {
    font-size: 24pt;
  }
}

/* ============================================
   Products Section (Module 4)
   ============================================ */
.products-section {
  padding: 72px 0;
  background: #fff;
}

.products-header {
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.products-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.products-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.products-grid {
  margin-top: 0;
}

.product-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
  color: inherit;
}

.product-img-link {
  display: block;
  height: 100%;
}

.product-name-link {
  color: inherit;
  text-decoration: none;
}

.product-img-link:hover,
.product-name-link:hover {
  color: inherit;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  overflow: hidden;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  aspect-ratio: 350 / 511;
  object-fit: cover;
  display: block;
  background: #f8f9fa;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-info {
  padding: 28px 28px 32px;
}

.product-name {
  font-size: 14pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767.98px) {
  .products-section {
    padding: 48px 0;
  }

  .products-header {
    margin-bottom: 32px;
  }

  .product-img-wrap img {
    aspect-ratio: 350 / 511;
  }

  .product-info {
    padding: 20px 20px 24px;
  }
}

/* ============================================
   Product List Page
   ============================================ */
.pl-section {
  padding: 72px 0;
  background: #fff;
}

.pl-header {
  margin: 0 auto 48px;
  text-align: left;
}

.pl-subcat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.pl-subcat-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10pt;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  transition: gap 0.3s ease;
  white-space: nowrap;
}

.pl-subcat-back:hover {
  gap: 10px;
  color: var(--color-orange);
}

/* Breadcrumb */
.pl-subcat-bar .breadcrumb {
  padding: 0;
  margin: 0;
  background: none;
}

.pl-subcat-bar .breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}

.pl-subcat-bar .breadcrumb-item {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.4;
}

.pl-subcat-bar .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding: 0 10px;
  color: var(--color-steel);
  opacity: 0.5;
}

.pl-subcat-bar .breadcrumb-item a {
  color: var(--color-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pl-subcat-bar .breadcrumb-item a:hover {
  color: var(--color-orange);
}

.pl-subcat-bar .breadcrumb-item.active {
  color: var(--color-text);
  font-weight: 600;
}

/* Breadcrumb — rendered markup: <nav class="breadcrumb"><ul><li> */
.pl-subcat-bar .breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}

.pl-subcat-bar .breadcrumb li {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.4;
}

.pl-subcat-bar .breadcrumb li + li::before {
  content: "/";
  display: inline-block;
  padding: 0 10px;
  color: var(--color-steel);
  opacity: 0.5;
}

.pl-subcat-bar .breadcrumb li a {
  color: var(--color-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pl-subcat-bar .breadcrumb li a:hover {
  color: var(--color-orange);
}

.pl-subcat-bar .breadcrumb li:last-child {
  color: var(--color-text);
  font-weight: 600;
}

/* You Might Also Like */
.pl-recommend {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.pl-recommend-section .pl-recommend {
  margin-top: 0;
  padding: 0;
  border-top: none;
}

.pl-recommend-section {
  padding: 72px 0 88px;
  background: #fff;
}

.pl-recommend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.pl-recommend-head-left {
  max-width: 720px;
}

.pl-recommend-desc {
  color: var(--color-text-muted, #6c757d);
  font-size: 1rem;
  line-height: 1.6;
  margin: 8px 0 0;
}

.pl-recommend-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.pl-recommend-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10pt;
  font-weight: 600;
  color: var(--color-orange);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.3s ease;
}

.pl-recommend-link:hover {
  gap: 10px;
  color: var(--color-orange);
}

.pl-title {
  font-size: 22pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.pl-intro {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0 0 12px;
  text-align: justify;
}

.pl-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pl-sidebar {
  flex: 0 0 240px;
  min-width: 0;
  position: sticky;
  top: 100px;
}

.pl-sidebar-title {
  font-size: 18pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pl-sidebar-divider {
  width: 40px;
  height: 2px;
  background: #4874cb;
  margin-bottom: 24px;
}

/* Categories — nav-menu style (matching AGENTS.md nav pattern) */
.pl-sidebar .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-sidebar .nav-list .nav-item {
  position: relative;
}

.pl-sidebar .nav-list .nav-item > a {
  display: block;
  padding: 8px 0;
  font-size: 12pt;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.pl-sidebar .nav-list .nav-item > a:hover {
  color: var(--color-orange);
}

/* Parent category — menu-item-has-children */
.pl-sidebar .nav-list .menu-item-has-children > a {
  font-weight: 600;
  color: var(--color-navy);
  padding: 12px 0 4px;
}

.pl-sidebar .nav-list .menu-item-has-children > a:hover {
  color: var(--color-navy);
}

/* Current category highlight — WP native classes (rendered by AIPress_Nav_Walker) */
.pl-sidebar .nav-list .current-menu-item > a,
.pl-sidebar .nav-list .current-menu-parent > a,
.pl-sidebar .nav-list .current-menu-ancestor > a {
  color: var(--color-orange);
  font-weight: 600;
}

.pl-sidebar .nav-list .menu-item-has-children > a::after {
  display: none;
}

/* Sub-menu */
.pl-sidebar .nav-list .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0 0 8px;
}

.pl-sidebar .nav-list .sub-menu .nav-item {
  margin-bottom: 1px;
}

.pl-sidebar .nav-list .sub-menu .nav-item > a {
  padding: 6px 0;
  font-size: 10pt;
  color: var(--color-steel);
}

.pl-sidebar .nav-list .sub-menu .nav-item > a:hover {
  color: var(--color-orange);
}

.pl-main {
  flex: 1;
  min-width: 0;
}

.pl-main .pl-grid {
  transition: opacity 0.3s ease;
}

.pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pl-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pl-sort-label {
  font-size: 10pt;
  color: var(--color-steel);
  white-space: nowrap;
}

.pl-sort-select {
  font-size: 10pt;
  font-family: inherit;
  padding: 8px 32px 8px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.3s ease;
}

.pl-sort-select:focus {
  outline: none;
  border-color: var(--color-orange);
}

.pl-grid {
  --bs-gutter-y: 24px;
}

.pl-grid .product-card {
  border-color: rgba(0,0,0,0.06);
}

.pl-grid .product-info {
  padding: 24px 20px 28px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.product-sku {
  font-size: 10pt;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10pt;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.product-link:hover {
  gap: 10px;
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover svg {
  transform: translateX(3px);
}

.pl-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.pl-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 10pt;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pl-page:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.pl-page.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  font-weight: 600;
}

.pl-page.dots {
  border: none;
  color: var(--color-steel);
}

@media (max-width: 991.98px) {
  .pl-section {
    padding: 48px 0;
  }

  .pl-header {
    margin-bottom: 32px;
  }

  .pl-subcat-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pl-layout {
    flex-direction: column;
    gap: 32px;
  }

  .pl-sidebar {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 767.98px) {
  .pl-section {
    padding: 36px 0;
  }

  .pl-title {
    font-size: 18pt;
  }

  .pl-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pl-pagination {
    gap: 4px;
    margin-top: 32px;
  }

  .pl-page {
    min-width: 36px;
    height: 36px;
    font-size: 9pt;
  }

  .pl-recommend {
    margin-top: 48px;
    padding-top: 32px;
  }

  .pl-recommend-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .pl-recommend-title {
    font-size: 18pt;
  }
}

/* ============================================
   Product Detail Page
   ============================================ */
.pd-section {
  padding: 48px 0 88px;
  background: #fff;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.pd-breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}

.pd-breadcrumb-item {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.4;
}

.pd-breadcrumb-item + .pd-breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding: 0 10px;
  color: var(--color-steel);
  opacity: 0.5;
}

.pd-breadcrumb-item a {
  color: var(--color-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-breadcrumb-item a:hover {
  color: var(--color-orange);
}

.pd-breadcrumb-item.active {
  color: var(--color-text);
  font-weight: 600;
}

.pd-breadcrumb-sku {
  font-weight: 700;
  font-style: italic;
  color: var(--color-text);
  font-size: 10pt;
}

/* Breadcrumb — rendered markup: <nav class="pd-breadcrumb"><ul><li> */
.pd-breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 0;
}

.pd-breadcrumb li {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.4;
}

.pd-breadcrumb li + li::before {
  content: "/";
  display: inline-block;
  padding: 0 10px;
  color: var(--color-steel);
  opacity: 0.5;
}

.pd-breadcrumb li a {
  color: var(--color-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-breadcrumb li a:hover {
  color: var(--color-orange);
}

.pd-breadcrumb li:last-child {
  color: var(--color-text);
  font-weight: 600;
}

.pd-layout {
  align-items: flex-start;
}

.pd-gallery-col {
  padding-bottom: 40px;
}

.pd-gallery {
  position: sticky;
  top: 24px;
}

.pd-gallery-main {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-gallery-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
}

.pd-gallery-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-gallery-main-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111111;
}

.pd-gallery-main-video video,
.pd-gallery-main-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.pd-gallery-thumb-video {
  position: relative;
}

.pd-gallery-thumb-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.25);
  z-index: 1;
}

.pd-gallery-thumb-video::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.pd-gallery-main-prev,
.pd-gallery-main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-navy);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pd-gallery-main-prev {
  left: 20px;
}

.pd-gallery-main-next {
  right: 20px;
}

.pd-gallery-main-prev:hover,
.pd-gallery-main-next:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

.pd-gallery-thumbs {
  margin-top: 10px;
  padding: 0 4px;
}

.pd-gallery-thumbs .swiper-wrapper {
  align-items: center;
}

.pd-gallery-thumbs .swiper-slide {
  width: auto;
}

.pd-gallery-thumb-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f8f9fa;
  transition: border-color 0.3s ease;
}

.pd-gallery-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-gallery-thumbs .swiper-slide-thumb-active .pd-gallery-thumb-img {
  border-color: var(--color-orange);
}

.pd-info {
  padding-left: 8px;
}

.pd-item-nr {
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pd-title {
  font-size: 16pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.pd-desc {
  font-size: 11pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
}

.pd-colors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.pd-colors-label {
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-text);
}

.pd-color-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-color {
  min-height: 40px;
  padding: 8px 22px;
  font-size: 10pt;
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-color:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.pd-color.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

.pd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pd-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 10.5pt;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 14px;
}

.pd-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-orange);
}

.pd-features li strong {
  font-weight: 700;
  color: var(--color-navy);
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-btn-quote {
  background: var(--color-orange);
  color: #fff;
  border: 1.5px solid var(--color-orange);
}

.pd-btn-quote:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 141, 32, 0.3);
}

.pd-btn-quote svg {
  transition: transform 0.3s ease;
}

.pd-btn-quote:hover svg {
  transform: translateY(2px);
}

.pd-btn-data {
  background: transparent;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}

.pd-btn-data:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 141, 32, 0.3);
}

.pd-btn-data svg {
  transition: transform 0.3s ease;
}

.pd-btn-data:hover svg {
  transform: translateY(2px);
}

.pd-note {
  font-size: 9.5pt;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
}

.pd-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.pd-share-label {
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-text);
}

.pd-share-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-share-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pd-share-icon:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .pd-gallery {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .pd-section {
    padding: 32px 0 64px;
  }

  .pd-breadcrumb {
    margin-bottom: 28px;
  }

  .pd-info {
    padding-left: 0;
  }

  .pd-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pd-btn {
    justify-content: center;
  }

  .pd-gallery-thumb-img {
    width: 64px;
    height: 64px;
  }
}

/* ============================================
   Technical Data & Details Section
   ============================================ */
.td-section {
  padding: 48px 0 88px;
  background: rgb(248, 249, 250);
}

.td-title {
  text-align: left;
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-orange);
  margin: 0 0 24px;
}

.td-tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--color-border);
  margin: 40px 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
}

.td-tab {
  flex: none;
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0 2px 14px;
  font-family: inherit;
  font-size: 13pt;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.td-tab.active {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
  font-weight: 600;
}

.td-pane {
  display: none;
}

.td-pane:first-child {
  display: block;
}

.td-content.td-ready .td-pane {
  display: none;
}

.td-content.td-ready .td-pane.active {
  display: block;
}

.td-content {
  border-radius: 12px;
  padding: 40px 0;
  line-height: 1.8;
  color: var(--color-text);
}

.td-content p {
  font-size: 11pt;
  margin: 0 0 16px;
}

.td-content p:last-child {
  margin-bottom: 0;
}

.td-content h1,
.td-content h2,
.td-content h3,
.td-content h4,
.td-content h5,
.td-content h6 {
  font-weight: 700;
  color: var(--color-navy);
  margin: 24px 0 12px;
}

.td-content h1 { font-size: 22pt; }
.td-content h2 { font-size: 19pt; }
.td-content h3 { font-size: 16pt; }
.td-content h4 { font-size: 14pt; }
.td-content h5 { font-size: 12pt; }
.td-content h6 { font-size: 11pt; }

.td-content ul,
.td-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.td-content li {
  font-size: 11pt;
  margin-bottom: 8px;
}

.td-content strong {
  font-weight: 700;
  color: var(--color-navy);
}

.td-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 62px;
}

.td-content table:last-child {
  margin-bottom: 0;
}

.td-content table th,
.td-content table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 11pt;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: none;
  border-right: none;
}

.td-content table th {
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-secondary);
}

@media (max-width: 767.98px) {
  .td-section {
    padding: 32px 0 64px;
  }

  .td-title {
    font-size: 18pt;
    margin-bottom: 20px;
  }

  .td-tabs {
    gap: 24px;
  }

  .td-tab {
    font-size: 11.5pt;
    padding-bottom: 10px;
  }

  .td-content {
    padding: 24px 20px;
  }
}

/* ============================================
   Inquiry Form Section
   ============================================ */
.iq-section {
  padding: 72px 0 88px;
  background: #fff;
}

.iq-inner {
  margin: 0;
}

.iq-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 14px;
}

.iq-desc {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.iq-form {
  margin-top: 36px;
}

.iq-form-row {
  margin-bottom: 0;
}

.iq-field {
  margin-bottom: 20px;
}

.iq-field-full {
  margin-bottom: 20px;
}

.iq-label {
  display: block;
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.iq-required {
  color: var(--color-orange);
}

.iq-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 10.5pt;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.iq-input::placeholder {
  color: #9ca3af;
}

.iq-input:focus {
  border-color: var(--color-orange);
}

.iq-select {
  cursor: pointer;
}

.iq-select:invalid {
  color: #9ca3af;
}

.iq-textarea {
  resize: vertical;
  min-height: 120px;
}

.iq-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  padding-top: 20px;
}

.iq-privacy {
  font-size: 10pt;
  color: var(--color-text-secondary);
  margin: 0;
}

.iq-btn {
  background: var(--color-orange);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 11pt;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.iq-btn:hover {
  background: var(--color-navy);
  color: #fff;
}

.iq-col-aside {
  margin-top: 40px;
}

.iq-aside {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #F5F7FA;
  border-radius: 8px;
  padding: 28px 28px 32px;
  letter-spacing: 0.015em;
}

.iq-aside::before {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 250px;
  height: 250px;
  border: 26px solid rgba(251, 135, 8, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.iq-aside-title {
  font-size: 16pt;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin: 0 0 10px;
}

.iq-accent {
  color: var(--color-orange);
}

.iq-aside-desc {
  font-size: 10pt;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 0 18px;
}

.iq-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.iq-help-item {
  position: relative;
  padding-left: 18px;
}

.iq-help-item + .iq-help-item {
  margin-top: 14px;
}

.iq-help-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  background: var(--color-orange);
  border-radius: 2px;
}

.iq-help-name {
  font-size: 10.5pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 3px;
}

.iq-help-text {
  font-size: 9.5pt;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0;
}

.iq-response {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.iq-response-title {
  font-size: 10pt;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 4px;
}

.iq-response-text {
  font-size: 9.5pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (min-width: 992px) {
  .iq-col-aside {
    margin-top: 0;
  }

  .iq-aside {
    padding: 32px 32px 36px;
  }
}

@media (max-width: 767.98px) {
  .iq-section {
    padding: 48px 0 64px;
  }

  .iq-form {
    margin-top: 28px;
  }

  .iq-form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .iq-btn {
    width: 100%;
  }
}

/* ============================================
   Facility Section
   ============================================ */
.facility-section {
  padding: 72px 0;
  background: var(--color-bg-light);
}

.facility-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.facility-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.facility-title-highlight {
  color: var(--color-orange);
}

.facility-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.facility-grid {
  --bs-gutter-y: 28px;
}

.facility-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.facility-img-wrap {
  overflow: hidden;
}

.facility-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-card:hover .facility-img-wrap img {
  transform: scale(1.05);
}

.facility-info {
  padding: 24px 24px 28px;
}

.facility-name {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.facility-desc-line {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.6;
  margin: 0 0 16px;
}

.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  position: relative;
  padding-left: 18px;
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: 6px;
}

.facility-list li:last-child {
  margin-bottom: 0;
}

.facility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
}

@media (max-width: 767.98px) {
  .facility-section {
    padding: 48px 0;
  }

  .facility-header {
    margin-bottom: 32px;
  }

  .facility-title {
    font-size: 18pt;
  }
}

/* ============================================
   Quality Section
   ============================================ */
.quality-section {
  padding: 72px 0;
  background: #fff;
}

.quality-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.quality-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.quality-title-highlight {
  color: var(--color-orange);
}

.quality-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.quality-grid {
  --bs-gutter-y: 28px;
  margin-bottom: 56px;
}

.quality-card {
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 36px 24px 32px;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.quality-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.quality-name {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.quality-desc-line {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.quality-compare {
  width: 100%;
  margin: 0;
}

.compare-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 16 / 9;
  --pos: 50%;
}

.compare-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compare-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-after {
  z-index: 1;
}

.compare-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-label {
  position: absolute;
  top: 16px;
  padding: 4px 14px;
  font-size: 10pt;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  z-index: 3;
}

.compare-label-before {
  left: 16px;
}

.compare-label-after {
  right: 16px;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 4;
  pointer-events: none;
}

.compare-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.quality-cta {
  margin-top: 40px;
}

/* ============================================
   Global Footprint Section
   ============================================ */
.global-section {
  padding: 72px 0;
  background: #fff;
}

.global-row {
  --bs-gutter-x: 40px;
}

.global-header {
  margin-bottom: 48px;
}

.global-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.global-title-highlight {
  color: var(--color-orange);
}

.global-subtitle {
  font-size: 14pt;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 12px;
  line-height: 1.4;
}

.global-desc {
  font-size: 12pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0 0 24px;
}

.global-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.global-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12pt;
  color: var(--color-steel);
  line-height: 1.8;
}

.global-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--color-orange);
}

.global-list li strong {
  color: var(--color-navy);
  font-weight: 700;
}

.global-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.global-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-social-link:hover {
  transform: translateY(-3px);
}

.global-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.global-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .global-section {
    padding: 48px 0;
  }

  .global-title {
    font-size: 18pt;
  }

  .global-img-wrap {
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .quality-section {
    padding: 48px 0;
  }

  .quality-header {
    margin-bottom: 32px;
  }

  .quality-title {
    font-size: 18pt;
  }

  .quality-grid {
    margin-bottom: 40px;
  }
}

/* ============================================
   Team Section (Swiper)
   ============================================ */
.team-section {
  padding: 72px 0;
  background: #fff;
  overflow: hidden;
}

.team-header {
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.team-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.team-title-highlight {
  color: var(--color-orange);
}

.team-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.team-slider {
  margin: 0 auto;
}

.team-swiper {
  padding: 8px 0 12px;
  overflow: visible;
}

.team-slider .swiper-slide {
  height: auto;
}

.team-card {
  text-align: center;
  padding: 32px 24px 28px;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-avatar {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-orange-light);
}

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

.team-name {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.team-role {
  font-size: 10pt;
  color: var(--color-steel);
  margin: 0;
  line-height: 1.5;
}

.team-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.team-nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-nav-btn:hover {
  color: var(--color-orange-dark);
}

.team-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.team-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange-light);
  opacity: 1;
}

.team-pagination .swiper-pagination-bullet-active {
  background: var(--color-orange);
}

@media (max-width: 767.98px) {
  .team-nav {
    display: none;
  }

  .team-pagination {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .team-section {
    padding: 48px 0;
  }

  .team-header {
    margin-bottom: 32px;
  }

  .team-title {
    font-size: 18pt;
  }
}

/* ============================================
   Core Values Section
   ============================================ */
.values-section {
  padding: 72px 0;
  background: #fff;
}

.values-header {
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.values-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.values-title-highlight {
  color: var(--color-orange);
}

.values-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.values-grid {
  --bs-gutter-y: 28px;
}

.values-card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px 28px 36px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 48px rgba(251, 135, 8, 0.12);
  transform: translateY(-6px);
}

.values-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--color-orange-light);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-card:hover .values-icon {
  background: var(--color-orange);
  color: #fff;
}

.values-name {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.values-desc-line {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991.98px) {
  .values-section {
    padding: 48px 0;
  }

  .values-header {
    margin-bottom: 32px;
  }

  .values-title {
    font-size: 18pt;
  }
}

.collections-section {
  padding: 72px 0;
  background: #fff;
}

.collections-header {
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.collections-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.collections-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

.collections-swiper {
  padding-bottom: 56px;
  overflow: hidden;
}

.collection-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  overflow: hidden;
}

.collection-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.collection-img-wrap {
  position: relative;
  overflow: hidden;
}

.collection-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.04);
}

.collection-info {
  padding: 24px 24px 28px;
}

.collection-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  line-height: 1.4;
}

.collection-name {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.collection-desc {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.65;
  margin: 0;
}

.collections-pagination {
  position: relative!important;
  bottom: 0 !important;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.collections-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.collections-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-orange);
}

.collections-cta {
  margin-top: 48px;
}

.collections-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11pt;
  font-weight: 600;
  color: #fff;
  background: var(--color-orange);
  border: 1.5px solid var(--color-orange);
  border-radius: 50px;
  padding: 12px 36px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.4;
}

.collections-btn:hover {
  background: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.collections-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .collections-section {
    padding: 48px 0;
  }

  .collections-swiper {
    padding-bottom: 72px;
  }

  .collections-header {
    margin-bottom: 32px;
  }

  .collection-img-wrap img {
    height: 280px;
  }

  .collection-info {
    padding: 20px 20px 24px;
  }

  .collections-cta {
    margin-top: 32px;
  }

  .collections-btn {
    font-size: 14px;
    padding: 11px 28px;
  }
}

/* ============================================
   Quality Control Section — Lab Inspection Design
   ============================================ */
.qc-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric pattern overlay for lab feel */
.qc-section .container {
  position: relative;
  z-index: 1;
}

.qc-header {
  margin-bottom: 52px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.qc-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.qc-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

/* --- Card: Lab Inspection Station --- */
.qc-card {
  background: #fff;
  height: 100%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.qc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.qc-card-body {
  padding: 0;
}

.qc-img-wrap {
  position: relative;
  overflow: hidden;
}

.qc-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(37, 43, 74, 0.06));
  pointer-events: none;
}

.qc-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qc-card:hover .qc-img-wrap img {
  transform: scale(1.06);
}

.qc-info {
  padding: 22px 24px 28px;
}

/* Badge-style label */
.qc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.5;
}

.qc-badge::before {
  display: none;
}

.qc-sub {
  font-size: 10pt;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0 0 8px;
  font-weight: 500;
}

.qc-detail {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.65;
  margin: 0;
}

.qc-cta {
  margin-top: 52px;
}

.qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-orange);
  border: 1.5px solid var(--color-orange);
  border-radius: 50px;
  padding: 12px 36px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.4;
}

.qc-btn:hover {
  background: transparent;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.qc-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.qc-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .qc-section {
    padding: 52px 0;
  }

  .qc-header {
    margin-bottom: 36px;
  }

  .qc-img-wrap img {
    height: 200px;
  }

  .qc-info {
    padding: 18px 20px 24px;
  }

  .qc-cta {
    margin-top: 36px;
  }

  .qc-btn {
    font-size: 14px;
    padding: 11px 28px;
  }
}

/* ============================================
   Partners Section — Trusted Partners + Team Collage
   ============================================ */
.partners-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric pattern overlay */
.partners-section .container {
  position: relative;
  z-index: 1;
}

.partners-header {
  margin-bottom: 44px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.partners-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.partners-title-black {
  color: var(--color-navy);
}

.partners-title-orange {
  color: var(--color-orange);
}

.partners-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0;
}

/* --- Swiper Wrap --- */
.partners-swiper-wrap {
  margin-bottom: 56px;
  padding: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.partners-swiper {
  overflow: hidden;
  width: 100%;
}

.partners-swiper .swiper-wrapper {
  align-items: center;
}

.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  width: 100%;
  background: #fff;;
}

.partner-logo {
  max-width: 180px;
  height: auto;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Team Photo Collage Grid --- */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  will-change: transform;
  margin: 0;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Explicit positions matching the original collage layout */
/* Row 1: bottom-aligned at line 4 */
.collage-item:nth-child(1)  { grid-column: 4 / 6;  grid-row: 2 / 4; }
.collage-item:nth-child(2)  { grid-column: 6 / 9;  grid-row: 1 / 4; }
.collage-item:nth-child(3)  { grid-column: 9 / 11; grid-row: 2 / 4; }
/* Row 2: bottom-aligned at line 7, middle 3 uniform height */
.collage-item:nth-child(4)  { grid-column: 1 / 3;  grid-row: 5 / 7; }
.collage-item:nth-child(5)  { grid-column: 3 / 5;  grid-row: 4 / 7; }
.collage-item:nth-child(6)  { grid-column: 5 / 9;  grid-row: 4 / 7; }
.collage-item:nth-child(7)  { grid-column: 9 / 11; grid-row: 4 / 7; }
.collage-item:nth-child(8)  { grid-column: 11 / 13;grid-row: 5 / 7; }
/* Row 3: top-aligned at line 7 */
.collage-item:nth-child(9)  { grid-column: 2 / 4;  grid-row: 7 / 9; }
.collage-item:nth-child(10) { grid-column: 4 / 6;  grid-row: 7 / 10; }
.collage-item:nth-child(11) { grid-column: 6 / 9;  grid-row: 7 / 9; }
.collage-item:nth-child(12) { grid-column: 9 / 11; grid-row: 7 / 9; }

/* Hover */
.collage-item:hover {
  transform: scale(1.03);
  z-index: 10;
}

/* --- Responsive: Tablet --- */
@media (max-width: 991.98px) {
  .collage-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 80px;
    gap: 10px;
  }

  .collage-item:nth-child(1)  { grid-column: 1 / 3; grid-row: 2 / 4; }
  .collage-item:nth-child(2)  { grid-column: 3 / 5; grid-row: 1 / 4; }
  .collage-item:nth-child(3)  { grid-column: 5 / 7; grid-row: 2 / 4; }
  .collage-item:nth-child(4)  { grid-column: 1 / 3; grid-row: 5 / 7; }
  .collage-item:nth-child(5)  { grid-column: 3 / 5; grid-row: 4 / 7; }
  .collage-item:nth-child(6)  { grid-column: 5 / 7; grid-row: 4 / 7; }
  .collage-item:nth-child(7)  { grid-column: 1 / 3; grid-row: 7 / 9; }
  .collage-item:nth-child(8)  { grid-column: 3 / 5; grid-row: 7 / 9; }
  .collage-item:nth-child(9)  { grid-column: 5 / 7; grid-row: 7 / 9; }
  .collage-item:nth-child(10) { grid-column: 1 / 4; grid-row: 9 / 11; }
  .collage-item:nth-child(11) { grid-column: 4 / 7; grid-row: 9 / 11; }
  .collage-item:nth-child(12) { grid-column: 1 / 4; grid-row: 11 / 13; }
}

/* --- Responsive: Mobile --- */
@media (max-width: 575.98px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }

  .collage-item,
  .collage-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .collage-item:nth-child(3n) {
    grid-column: span 2;
  }

  .collage-item,
  .collage-item picture,
  .collage-item img {
    border-radius: 8px;
  }
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .partners-section {
    padding: 56px 0;
  }

  .partners-header {
    margin-bottom: 32px;
  }

  .partners-swiper-wrap {
    margin-bottom: 40px;
  }

  .partner-logo {
    max-width: 150px;
    max-height: 60px;
  }
}

@media (max-width: 575.98px) {
  .partners-section {
    padding: 44px 0;
  }

  .partners-header {
    margin-bottom: 24px;
  }

  .partners-desc {
    font-size: 14px;
  }

  .partners-swiper-wrap {
    margin-bottom: 32px;
  }

  .partner-logo {
    max-width: 90px;
    max-height: 36px;
  }
}

/* ============================================
   Testimonials Section — What Partners Say
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay matching partners-section */


.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-subtitle {
  display: inline-block;
  font-size: 16pt;
  font-weight: 600;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.testimonials-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* --- Social Icons Row --- */
.testimonials-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonials-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-orange);
  background: var(--color-orange-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-social-icon:hover {
  color: var(--color-white);
  background: var(--color-orange);
  transform: translateY(-2px);
}

.testimonials-social-icon svg {
  display: block;
}

/* --- Testimonial Cards Swiper --- */
.testimonials-swiper-wrap {
  position: relative;
}

.testimonials-swiper {
  overflow: hidden;
  width: 100%;
  padding: 20px !important;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials-swiper .swiper-slide .testimonial-card {
  width: 100%;
}

/* --- Testimonials Pagination --- */
.testimonials-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  bottom: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(37, 43, 74, 0.15);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-orange);
}

/* --- Individual Card --- */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(37, 43, 74, 0.1)
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating svg {
  display: block;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--color-navy);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 24px;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  margin-top: auto;
}

/* --- Responsive: Tablet --- */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-social {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 28px;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 56px 0;
  }

  .testimonials-social {
    gap: 16px;
    margin-bottom: 36px;
  }

  .testimonials-social-icon {
    width: 36px;
    height: 36px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ============================================
   Module 10: Industry Insights 照明知识/采购指南
   ============================================ */
.insights-section {
  padding: 30px 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* --- Subtitle --- */
.insights-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16pt;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.insights-subtitle-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.insights-title {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.insights-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 100%;
}

/* --- CTA Button (same style as hero .btn-primary) --- */
.insights-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 10px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--color-orange) !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.insights-cta:hover {
  background: transparent !important;
  border-color: var(--color-orange) !important;
  color: var(--color-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.insights-cta:active {
  transform: translateY(0);
}
.insights-cta svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.insights-cta:hover svg {
  transform: translateX(4px);
}

/* --- Featured Swiper with Overlay --- */
.featured-swiper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.featured-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.featured-slide-img {
  position: relative;
  overflow: hidden;
}

.featured-slide-img-link {
  display: block;
}

.featured-slide-img img {
  width: 100%;
  height: 516px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-swiper .swiper-slide:hover .featured-slide-img img {
  transform: scale(1.04);
}

/* Gradient overlay + text at bottom */
.featured-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  color: #fff;
  pointer-events: none;
}

.featured-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-slide-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 8px;
}

.featured-slide-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}

.featured-slide-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ========== Floating Customer Service Widget ========== */
.float-widget {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(calc(-50% + 20px));
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.float-widget.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.float-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 18px;
  box-shadow: 0 0px 18px rgba(51, 51, 51, 0.14), 0 2px 8px rgba(51, 51, 51, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.float-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-orange);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.float-item:hover {
  background: rgba(251, 135, 8, 0.1);
  color: var(--color-orange-dark);
}
.float-icon {
  flex-shrink: 0;
  color: var(--color-orange);
  transition: transform 0.3s ease, color 0.3s ease;
}
.float-item:hover .float-icon {
  color: var(--color-orange-dark);
  transform: translateY(-1px);
}
.float-pop {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  min-width: 220px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(251, 135, 8, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.18), 0 2px 8px rgba(51, 51, 51, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.float-pop::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.95);
}
.float-item:hover .float-pop,
.float-item.open .float-pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.float-pop-title {
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(251, 135, 8, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333333;
}
.float-pop-close {
  display: none;
}
.float-pop-link {
  display: block;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.float-pop-link + .float-pop-link {
  margin-top: 2px;
}
.float-pop-link:hover {
  background: rgba(251, 135, 8, 0.1);
  color: #333333;
}
.float-pop-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(51, 51, 51, 0.1);
}
.float-pop-hint {
  margin: 10px 0 2px;
  font-size: 0.75rem;
  color: #333333;
  text-align: center;
}
.float-item-top {
  color: var(--color-orange);
}
.float-item-top:hover {
  background: rgba(251, 135, 8, 0.1);
  color: var(--color-orange-dark);
}
@media (max-width: 767.98px) {
  body {
    padding-bottom: 62px;
  }
  .float-widget {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    transform: none;
  }
  .float-widget.show {
    transform: none;
  }
  .float-panel {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 6px 8px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.75);
  }
  .float-item {
    flex: 1;
    width: auto;
    height: 46px;
  }
  .float-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .float-pop {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 60px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 20px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    background: rgba(255, 255, 255, 0.97);
    border: none;
    border-top: 1px solid rgba(10, 61, 112, 0.1);
    border-radius: 0;
    transform: none;
    z-index: 20;
  }
  .float-item:hover .float-pop,
  .float-item.open .float-pop {
    transform: none;
  }
  .float-pop::after {
    display: none;
  }
  .float-pop-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(251, 135, 8, 0.08);
    color: var(--color-orange);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .float-pop-close:hover {
    background: var(--color-orange);
    color: #ffffff;
  }
  .float-pop-title {
    font-size: 0.875rem;
  }
  .float-pop-link {
    padding: 14px 6px;
    font-size: 1rem;
  }
  .float-pop-link + .float-pop-link {
    border-top: 1px solid rgba(10, 61, 112, 0.06);
  }
  .float-pop-img {
    width: 200px;
    margin: 0 auto;
  }
  .float-pop-hint {
    text-align: center;
  }
}

/* Pagination overlaid */
.featured-pagination {
  position: absolute !important;
  bottom: 14px !important;
  right: 24px !important;
  left: auto !important;
  width: auto !important;
  display: flex;
  gap: 6px;
}

.featured-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.featured-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

/* Featured Swiper Nav Buttons */
.featured-swiper-prev,
.featured-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}

.featured-swiper:hover .featured-swiper-prev,
.featured-swiper:hover .featured-swiper-next {
  opacity: 1;
  pointer-events: auto;
}

.featured-swiper-prev {
  left: 16px;
}

.featured-swiper-next {
  right: 16px;
}

.featured-swiper-prev:hover,
.featured-swiper-next:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}

/* Hide nav on mobile */
@media (max-width: 575.98px) {
  .featured-swiper-prev,
  .featured-swiper-next {
    display: none;
  }
}

/* --- News Cards --- */
.news-card {
  background: var(--color-white);
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.news-card:hover::after {
  transform: scaleX(1);
}

.news-card-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card-title-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.news-card-title-link:hover .news-card-title {
  color: var(--color-orange);
}

.news-card-image-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.news-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(37, 43, 74, 0.06));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-card:hover .news-card-image-wrap::after {
  opacity: 1;
}

.news-card-image,
.news-card-image-link img {
  width: 100%;
  aspect-ratio: 10 / 7;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-image,
.news-card:hover .news-card-image-link img {
  transform: scale(1.06);
}

.news-card-body {
  padding: 28px 0 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.news-date-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.5;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: var(--color-orange);
}

.news-tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 24px;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.news-tags-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.5;
}

.read-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: auto;

}

.read-article-link .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.read-article-link:hover {
  color: var(--color-orange-dark);
}

.read-article-link:hover .arrow-icon {
  transform: translateX(5px);
}

/* --- Responsive: Tablet --- */
@media (max-width: 991.98px) {
  .insights-section {
    padding: 80px 0;
  }

  .insights-cta {
    font-size: 0.875rem;
    padding: 9px 22px;
  }

  .news-card-title {
    font-size: 1.125rem;
  }

  .featured-slide-overlay {
    padding: 32px 24px 20px;
  }

  .featured-slide-img img {
    height: 380px;
  }

  .featured-slide-title {
    font-size: 1.125rem;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 575.98px) {
  .insights-section {
    padding: 56px 0;
  }

  .insights-cta {
    font-size: 0.8125rem;
    padding: 8px 20px;
  }

  .news-card-title {
    font-size: 1.0625rem;
  }

  .news-card-body {
    padding: 22px 0 0;
  }

  .read-article-link {
    font-size: 0.8125rem;
  }

  .featured-slide-overlay {
    padding: 24px 16px 16px;
  }

  .featured-slide-img img {
    height: 240px;
  }

  .featured-slide-title {
    font-size: 1rem;
  }

  .featured-slide-meta {
    font-size: 0.75rem;
  }

  .featured-slide-tags {
    font-size: 0.75rem;
  }
}
   
/* ============================================
   CTA Section — Call to Action
   ============================================ */
.cta-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 52px 0;
  position: relative;
  border-top: 1px solid rgba(37,43,74,0.08);
}

.single-post-page .cta-inner,
.single-post-page .cta-qa-inner {
  border-top: 0;
}

.cta-inner-split {
  align-items: center;
}

.cta-inner-split .cta-title {
  flex: 0 0 auto;
  margin-bottom: 0;
  max-width: 460px;
}

.cta-resources-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  text-align: left;
}

.cta-resources-left {
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 0;
}

.cta-resources-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 991.98px) {
  .cta-resources-left {
    flex-direction: column;
    gap: 20px;
  }
}

.cta-resources-media img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.cta-resources-title {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 24pt;
  line-height: 1.3;
  margin: 0;
}

.cta-inner-split .cta-desc {
  flex: 1;
  max-width: 520px;
  margin-bottom: 0;
}

.cta-content {
  flex: 1;
  min-width: 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.25;
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 13pt;
  color: var(--color-steel);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-orange);
  border: 1.5px solid var(--color-orange);
  border-radius: 50px;
  padding: 13px 36px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cta-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* --- Responsive: Tablet --- */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 48px 0 64px;
  }

  .cta-inner {
    padding: 40px 0;
    flex-direction: column;
    text-align: center;
  }

  .cta-inner-split {
    flex-direction: row;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cta-inner-split .cta-title {
    flex: 1 1 100%;
    max-width: none;
  }

  .cta-inner-split .cta-desc {
    flex: 1 1 60%;
    max-width: none;
  }

  .cta-inner-split .cta-btn {
    flex: 1 1 auto;
  }

  .cta-desc {
    max-width: 100%;
  }

  .cta-btn {
    font-size: 0.9375rem;
    padding: 11px 30px;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 767.98px) {
  .cta-section {
    padding: 36px 0 48px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 0;
    gap: 20px;
  }

  .cta-inner-split {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-inner-split .cta-title {
    flex: 0 0 auto;
  }

  .cta-inner-split .cta-desc {
    flex: 0 0 auto;
  }

  .cta-desc {
    max-width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 12px 28px;
  }
}

/* --- CTA QA variant: title+desc left, button right --- */
.cta-qa-inner {
  align-items: center;
}

.cta-qa-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.cta-qa-inner .cta-title {
  color: var(--color-black);
  margin-bottom: 14px;
}

@media (max-width: 991.98px) {
  .cta-qa-inner {
    flex-wrap: wrap;
  }
  .cta-qa-left {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .cta-qa-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-qa-inner .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ODM Design Partner Section
   ============================================ */
.odm-section {
  padding: 80px 0;
  background: #fff;
}

.odm-head {
  margin: 0 0 32px;
  text-align: left;
}

.odm-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.odm-title-accent {
  color: var(--color-orange);
}

.odm-desc {
  font-size: 11pt;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-grid {
  gap: 32px 0;
}

.odm-card {
  padding: 0 16px;
}

.odm-card-media {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 12px;
}

.odm-card-media img {
  display: block;
  width: 100%;
  height: auto;
}

.odm-card-body {
  padding: 0 4px;
}

.odm-card-title {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.odm-card-desc {
  font-size: 10pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 767.98px) {
  .odm-section {
    padding: 56px 0;
  }
  .odm-title {
    font-size: 18pt;
  }
  .odm-desc {
    font-size: 10pt;
  }
  .odm-card-title {
    font-size: 11pt;
  }
}

/* ============================================
   ODM Solutions Section
   ============================================ */
.odm-sol-section {
  padding: 80px 0;
  background: #fff;
}

.odm-sol-head {
  text-align: center;
  margin-bottom: 56px;
}

.odm-sol-title {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 20pt;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.odm-sol-title::before,
.odm-sol-title::after {
  content: "";
  flex: none;
  width: 64px;
  height: 3px;
  background: var(--color-orange);
}

.odm-sol-subtitle {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-sol-grid {
  margin-bottom: 72px;
}

.odm-sol-card {
  --sol: var(--color-orange);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 42px 24px 32px;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--sol);
}

.odm-sol-card.sol-navy {
  --sol: var(--color-navy);
}

.odm-sol-card.sol-green {
  --sol: #2F7D5C;
}

.odm-sol-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 64px;
  padding: 5px 20px;
  border-radius: 999px;
  background: var(--sol);
  color: #fff;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.5;
}

.odm-sol-card-title {
  font-size: 12pt;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.odm-sol-card-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--sol);
}

.odm-sol-card-desc {
  font-size: 10pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-sol-arrow {
  position: absolute;
  top: 42%;
  right: -23px;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E9F0;
  box-shadow: 0 10px 24px rgba(10, 35, 66, 0.14);
  color: var(--sol);
}

.odm-sol-fast {
  align-items: center;
}

.odm-sol-fast-title {
  font-size: 28pt;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.odm-sol-fast-accent {
  display: block;
  color: var(--color-orange);
}

.odm-sol-fast-note {
  font-size: 11pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-sol-timeline {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  border: 1px solid #E2E6EC;
}

.odm-sol-clock-item {
  flex: 1 1 25%;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
}

.odm-sol-clock {
  width: 96px;
  height: 96px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.odm-sol-clock-label {
  font-size: 12pt;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 160px;
}

@media (max-width: 991.98px) {
  .odm-sol-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .odm-sol-section {
    padding: 56px 0;
  }
  .odm-sol-head {
    margin-bottom: 40px;
  }
  .odm-sol-title {
    gap: 16px;
  }
  .odm-sol-title::before,
  .odm-sol-title::after {
    width: 40px;
  }
  .odm-sol-title {
    font-size: 18pt;
  }
  .odm-sol-grid {
    row-gap: 44px;
    margin-bottom: 48px;
  }
  .odm-sol-fast-title {
    font-size: 14pt;
  }
  .odm-sol-clock {
    width: 56px;
    height: 56px;
  }
  .odm-sol-clock-item {
    flex: 1 1 50%;
  }
}

/* ============================================
   ODM Stage Timeline Section
   ============================================ */
.odm-stage-section {
  padding: 80px 0 96px;
  background: #fff;
}

.odm-stage-head {
  margin-bottom: 40px;
}

.odm-stage-arrow {
  display: block;
  margin: 0 auto 40px;
  color: var(--color-orange);
}

.odm-stage-title {
  font-size: 18pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.odm-stage-subtitle {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-stage-timeline {
  position: relative;
  padding: 24px 0;
}

.odm-stage-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: var(--color-orange);
}

.odm-stage-row {
  position: relative;
  z-index: 1;
  align-items: center;
  margin-bottom: 72px;
}

.odm-stage-row:last-child {
  margin-bottom: 0;
}

.odm-stage-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid #E2E6EC;
}

.odm-stage-card-title {
  font-size: 16pt;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.odm-stage-card-desc {
  font-size: 10.5pt;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-stage-node-col {
  display: flex;
  justify-content: center;
}

.odm-stage-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-orange);
  text-align: center;
}

.odm-stage-node-num {
  font-size: 13pt;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.odm-stage-node-label {
  font-size: 10.5pt;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.odm-stage-img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .odm-stage-row:nth-child(even) .odm-stage-media-col {
    order: 1;
  }
  .odm-stage-row:nth-child(even) .odm-stage-node-col {
    order: 2;
  }
  .odm-stage-row:nth-child(even) .odm-stage-card-col {
    order: 3;
  }
}

@media (max-width: 991.98px) {
  .odm-stage-timeline::before {
    display: none;
  }
  .odm-stage-row {
    margin-bottom: 48px;
  }
  .odm-stage-node-col {
    padding: 16px 0;
  }
  .odm-stage-card {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .odm-stage-section {
    padding: 56px 0 64px;
  }
  .odm-stage-card-title {
    font-size: 14pt;
  }
}

/* ============================================
   ODM Lead Form Section
   ============================================ */
.odm-lead-section {
  padding: 0 0 96px;
  background: #fff;
}

.odm-lead-wrap {
  border: 1px solid #E2E6EC;
  background: #fff;
}

.odm-lead-form-col {
  padding: 48px;
}

.odm-lead-aside {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 44px 36px;
  background: #F5F7FA;
  border-left: 1px solid #E2E6EC;
}

.odm-lead-aside::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 22px solid rgba(251, 135, 8, 0.08);
  pointer-events: none;
}

.odm-lead-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.odm-lead-desc {
  font-size: 11pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
}

.odm-lead-field {
  margin-bottom: 24px;
}

.odm-lead-check {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 12px 16px;
  border: 1px solid #D9DEE6;
  border-radius: 6px;
  font-size: 10.5pt;
  color: var(--color-text-primary);
}

.odm-lead-check input {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-orange);
}

.odm-lead-check label {
  margin: 0;
  cursor: pointer;
}

.odm-lead-label {
  display: block;
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.odm-lead-required {
  color: var(--color-orange);
}

.odm-lead-input,
.odm-lead-select,
.odm-lead-textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 10.5pt;
  color: var(--color-text-primary);
  background: #fff;
  border: 1px solid #D9DEE6;
  border-radius: 6px;
}

.odm-lead-input::placeholder,
.odm-lead-select::placeholder,
.odm-lead-textarea::placeholder {
  color: #9AA3AF;
}

.odm-lead-input:focus,
.odm-lead-select:focus,
.odm-lead-textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}

.odm-lead-textarea {
  min-height: 120px;
  resize: vertical;
}

.odm-lead-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.odm-lead-privacy {
  font-size: 10pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-lead-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 14px 32px;
  font-size: 10.5pt;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  background: var(--color-orange);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.odm-lead-form-footer {
  flex-wrap: wrap;
}

.odm-lead-form-footer .aipress-form-message {
  flex: 0 0 100%;
}

.odm-lead-input.is-invalid,
.odm-lead-select.is-invalid,
.odm-lead-textarea.is-invalid {
  border-color: #dc3545;
}

.odm-lead-input.is-invalid:focus,
.odm-lead-select.is-invalid:focus,
.odm-lead-textarea.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.odm-lead-aside-title {
  font-size: 16pt;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.odm-lead-aside-accent {
  display: block;
  color: var(--color-orange);
}

.odm-lead-aside-desc {
  font-size: 10.5pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
}

.odm-lead-points {
  margin-bottom: 32px;
}

.odm-lead-point {
  position: relative;
  padding-left: 18px;
  margin-bottom: 20px;
}

.odm-lead-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
}

.odm-lead-point-title {
  font-size: 11pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.odm-lead-point-desc {
  font-size: 10pt;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.odm-lead-aside-divider {
  height: 1px;
  background: #E2E6EC;
  margin: 0 0 24px;
}

.odm-lead-support-label {
  font-size: 10.5pt;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.odm-lead-support-desc {
  font-size: 10pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 991.98px) {
  .odm-lead-section {
    padding: 0 0 64px;
  }
  .odm-lead-form-col {
    padding: 32px 24px;
  }
  .odm-lead-aside {
    padding: 32px 24px;
    border-left: none;
    border-top: 1px solid #E2E6EC;
  }
}

@media (max-width: 767.98px) {
  .odm-lead-title {
    font-size: 18pt;
  }
  .odm-lead-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-section {
  padding: 80px 0;
  background: #fff;
}

.how-head {
  margin: 0 auto 48px;
  text-align: center;
}

.how-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.how-title-accent {
  color: var(--color-orange);
}

.how-desc {
  font-size: 11pt;
  color: var(--color-text-secondary);
  margin: 0;
}

.how-grid {
  gap: 32px 0;
}

.how-col {
  padding: 0;
}

@media (min-width: 768px) {
  .how-col:nth-child(2n) {
    padding-left: 80px;
  }
}

.how-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
  height: 100%;
  text-align: left;
}

.how-media {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-media img {
  max-width: 100%;
  height: auto;
}

.how-title-s {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.how-desc-s {
  font-size: 10pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 767.98px) {
  .how-section {
    padding: 56px 0;
  }
  .how-title {
    font-size: 18pt;
  }
  .how-media {
    width: 100px;
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-head {
  margin: 0 auto 48px;
  text-align: left;
}

.faq-badge {
  display: inline-block;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.5;
}

.faq-title {
  font-size: 24pt;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

.faq-desc {
  font-size: 15pt;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 56px 0;
  }
  .faq-title {
    font-size: 18pt;
  }
}

.faq-list {
  margin: 0 0 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open {
  border-color: var(--color-orange);
  box-shadow: 0 8px 24px rgba(37, 43, 74, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 12pt;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-navy);
  transition: color 0.3s ease;
  min-height: 44px;
}

.faq-q svg {
  flex-shrink: 0;
  color: var(--color-orange);
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 11pt;
  line-height: 1.8;
  color: var(--color-text-secondary);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq-a p {
  margin: 0;
}

@media (max-width: 575.98px) {
  .faq-q {
    padding: 18px 18px;
    font-size: 11.5pt;
  }
  .faq-a {
    padding: 0 18px;
  }
  .faq-item.is-open .faq-a {
    padding: 0 18px 20px;
  }
}

/* ============================================
   Catalogue Explore Section
   ============================================ */
.cat-explore-section {
  padding: 80px 0 40px;
  background: #fff;
}

.cat-explore-head {
  text-align: left;
}

.cat-explore-head .odm-title {
  color: var(--color-orange);
}

.cat-explore-head .odm-desc + .odm-desc {
  margin-top: 16px;
}

.blog-insights-section {
  padding: 80px 0;
  background: #fff;
}

.blog-insights-head {
  margin-bottom: 48px;
  text-align: left;
}

.blog-insights-head .insights-badge {
  display: inline-block;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.5;
}

.blog-insights-head .odm-title {
  font-size: 24pt;
  color: var(--color-black);
}

.blog-insights-head .odm-desc {
  font-size: 15pt;
}

@media (max-width: 767.98px) {
  .blog-insights-section {
    padding: 56px 0;
  }
  .blog-insights-head .odm-title {
    font-size: 18pt;
  }
}

/* ============================================
   Blog Featured Post
   ============================================ */
.blog-featured-section {
  padding: 0 0 24px;
  background: #fff;
}

.blog-featured-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.blog-featured-post .news-card-body {
  border-top: none;
  padding: 0;
}

.blog-featured-post .news-card-image,
.blog-featured-post .news-card-image-link img {
  aspect-ratio: 10 / 3;
  height: auto;
}

@media (max-width: 767.98px) {
  .blog-featured-post .news-card-image,
  .blog-featured-post .news-card-image-link img {
    aspect-ratio: 4 / 3;
  }
}

.blog-featured-post .news-card-title {
  font-size: 22pt;
  line-height: 1.4;
}

.blog-featured-post .news-excerpt {
  font-size: 11pt;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 16px 0 0;
}

/* ============================================
   Blog News List
   ============================================ */
.blog-news-section {
  padding: 56px 0 80px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .blog-news-section {
    padding: 40px 0 56px;
  }
}

/* ============================================
   Single Blog Post (inner page)
   ============================================ */
.single-post-section {
  padding: 72px 0 56px;
  background: #fff;
}

.single-post-badge {
  display: inline-block;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  line-height: 1.5;
}

.single-post-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 26pt;
  line-height: 1.3;
  margin-bottom: 20px;
}

.single-post-excerpt {
  font-size: 12pt;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.single-post-figure {
  margin: 0 0 32px;
}

.single-post-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.single-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12pt;
  color: var(--color-text-light);
  line-height: 1.5;
}

.single-post-meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.7;
}

.single-post-content {
  padding: 8px 0 64px;
}

.single-post-content p {
  font-size: 12pt;
}

@media (max-width: 767.98px) {
  .single-post-section {
    padding: 48px 0 40px;
  }
  .single-post-title {
    font-size: 20pt;
  }
  .single-post-excerpt {
    font-size: 11pt;
  }
  .single-post-meta {
    gap: 16px;
  }
  .single-post-content {
    padding: 8px 0 48px;
  }
}

/* ============================================
   Related Insights
   ============================================ */
.related-section {
  padding: 72px 0 80px;
  background: var(--color-bg-light);
}

.related-section .news-card {
  background: transparent;
}

.related-head {
  margin-bottom: 40px;
}

.related-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 22pt;
  line-height: 1.4;
}

.related-accent {
  color: var(--color-orange);
}

@media (max-width: 767.98px) {
  .related-section {
    padding: 48px 0 56px;
  }
  .related-title {
    font-size: 18pt;
  }
  .related-head {
    margin-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .cat-explore-section {
    padding: 56px 0;
  }
}

/* ============================================
   Catalogue Download & Request Section
   ============================================ */
.cat-download-section {
  padding: 40px 0 80px;
  background: #fff;
}

.cat-download-col,
.cat-form-col {
  padding: 0;
}

.cat-download-col {
  background: #f6f7f9;
}

.cat-download-grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.cat-download-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 32px;
}

.cat-preview-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.cat-preview-media {
  margin: 0 0 36px;
}

.cat-preview-media img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
}

.cat-download-title {
  font-size: 16pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.cat-download-desc {
  font-size: 10.5pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
}

.cat-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 36px;
  background: var(--color-orange);
  color: #fff;
  font-size: 12pt;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cat-download-btn:hover {
  background: var(--color-orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

.cat-form-col {
  border: 1px solid var(--color-border);
  margin: 24px 0 0;
  padding: 40px 32px;
}

.cat-form-inner {
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .cat-download-grid {
    gap: 36px;
  }
  .cat-download-col,
  .cat-form-col {
    width: calc(50% - 18px);
  }
  .cat-form-col {
    margin-top: 0;
  }
}

.cat-form-title {
  font-size: 20pt;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.cat-form-desc {
  font-size: 10.5pt;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
}

.cat-form-group {
  margin-bottom: 20px;
}

.cat-form-group label {
  display: block;
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.cat-form-group .required {
  color: var(--color-orange);
}

.cat-form-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  font-size: 10.5pt;
  color: var(--color-text-primary);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cat-form-input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(251, 135, 8, 0.12);
}

.cat-form-input::placeholder {
  color: var(--color-text-light);
}

textarea.cat-form-input {
  resize: vertical;
  min-height: 110px;
}

.cat-form-input.is-invalid {
  border-color: #dc3545;
}

.cat-form-input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.cat-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--color-orange);
  color: #fff;
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cat-form-submit:hover {
  background: var(--color-orange-dark);
}

.cat-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cat-form-agree {
  font-size: 11pt;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 16px 0 0;
}

.cat-form-agree a {
  color: #0d6efd;
  text-decoration: underline;
}

.cat-form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 10pt;
  line-height: 1.5;
}

.cat-form-message--success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.cat-form-message--error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

@media (max-width: 767.98px) {
  .cat-download-section {
    padding: 56px 0;
  }
  .cat-download-inner,
  .cat-form-inner {
    max-width: none;
  }
  .cat-preview-title,
  .cat-form-title {
    font-size: 18pt;
  }
}

/* ============================================
   Contact Info Section
   ============================================ */
.contact-info-section {
  padding: 72px 0 40px;
  background: #fff;
}

.contact-info-card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 36px 24px 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 48px rgba(251, 135, 8, 0.12);
  transform: translateY(-6px);
}

.contact-info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-orange-light);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--color-orange);
  color: #fff;
}

.contact-info-icon svg {
  display: block;
}

.contact-info-title {
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.contact-info-text {
  font-size: 10pt;
  color: var(--color-steel);
  line-height: 1.6;
  margin: 0;
}

.contact-info-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-info-link:hover {
  color: var(--color-orange);
}

/* ============================================
   Contact Section (intro + form)
   ============================================ */
.contact-section {
  padding: 40px 0 88px;
  background: #fff;
}

.contact-inner {
  --bs-gutter-x: 48px;
}

.contact-badge {
  display: inline-block;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-title {
  font-size: 22pt;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.contact-desc {
  font-size: 11pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 0 0 28px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange-light);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  display: block;
}

.contact-detail-text {
  font-size: 10.5pt;
  color: var(--color-steel);
  line-height: 1.7;
  margin: 6px 0 0;
}

.contact-detail-link {
  color: var(--color-orange);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-detail-link:hover {
  color: var(--color-orange-dark);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 36px;
}

.contact-form {
  margin: 0;
}

.contact-form-group {
  margin-bottom: 18px;
}

.contact-form-label {
  display: block;
  font-size: 10.5pt;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.contact-form-required {
  color: var(--color-orange);
}

.contact-form-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  font-size: 10.5pt;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input::placeholder {
  color: var(--color-text-light);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(251, 135, 8, 0.12);
}

.contact-form-input.is-invalid {
  border-color: #dc3545;
}

.contact-form-input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.contact-form-note {
  font-size: 10pt;
  color: var(--color-text-light);
  margin: 0;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 36px;
  background: var(--color-orange);
  color: #fff;
  font-size: 12pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form-submit:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form-submit svg {
  display: block;
  transition: transform 0.3s ease;
}

.contact-form-submit:hover svg {
  transform: translateX(4px);
}

.contact-form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 10pt;
  line-height: 1.5;
}

.contact-form-message--success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.contact-form-message--error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

@media (max-width: 991.98px) {
  .contact-inner {
    --bs-gutter-x: 32px;
  }
}

@media (max-width: 767.98px) {
  .contact-info-section {
    padding: 48px 0 32px;
  }

  .contact-section {
    padding: 32px 0 64px;
  }

  .contact-title {
    font-size: 19pt;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-form-note {
    width: 100%;
  }

  .contact-form-submit {
    width: 100%;
  }
}

/* ============================================
   Contact Support Section (headline)
   ============================================ */
.contact-support-section {
  padding: 80px 0 0;
  background: #fff;
}

.contact-support-head {
  margin-bottom: 48px;
  text-align: left;
  max-width: 780px;
}

.contact-support-head .insights-badge {
  display: inline-block;
  font-size: 12pt;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-support-head .odm-title {
  color: var(--color-black);
}

@media (max-width: 767.98px) {
  .contact-support-section {
    padding: 56px 0 0;
  }

  .contact-support-head {
    margin-bottom: 36px;
  }

  .contact-support-head .odm-title {
    font-size: 18pt;
  }
}

/* ============================================
   Contact Enquiry Section (form + info)
   ============================================ */
.contact-enquiry-section {
  padding: 0 0 96px;
  background: #fff;
}

.contact-enquiry-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.contact-enquiry-form-col {
  flex: 0 0 calc(65% - 28px);
  min-width: 0;
  border: 1px solid #E0E0E0;
  padding: 48px 44px;
}

.contact-enquiry-info-col {
  flex: 0 0 calc(35% - 28px);
  min-width: 0;
}

.contact-enquiry-title {
  font-size: 30px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.contact-enquiry-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 36px;
}

.contact-enquiry-group {
  margin-bottom: 0;
}

.contact-enquiry-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.contact-enquiry-required {
  color: #E88D20;
}

.contact-enquiry-input {
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  font-size: 14px;
  color: #1A1A1A;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-enquiry-input::placeholder {
  color: #999999;
}

.contact-enquiry-input:focus {
  outline: none;
  border-color: #E88D20;
  box-shadow: 0 0 0 3px rgba(232, 141, 32, 0.12);
}

.contact-enquiry-input.is-invalid,
.iq-input.is-invalid {
  border-color: #dc3545;
}

.contact-enquiry-input.is-invalid:focus,
.iq-input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.contact-enquiry-select {
  position: relative;
  display: block;
}

.contact-enquiry-select .contact-enquiry-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.contact-enquiry-select-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: #666666;
  pointer-events: none;
}

.contact-enquiry-textarea {
  height: auto;
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.contact-enquiry-submit {
  display: block;
  width: 280px;
  margin: 24px auto 0;
  padding: 14px 40px;
  text-align: center;
  background: var(--color-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--color-orange);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-enquiry-submit:hover {
  background: transparent;
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-enquiry-submit:disabled,
.aipress-form-submitting .contact-enquiry-submit {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-enquiry-privacy {
  font-size: 13px;
  color: #999999;
  text-align: center;
  margin: 16px 0 0;
}

.contact-enquiry-message,
.aipress-form-message {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}

.contact-enquiry-message--success,
.aipress-form-message--success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.contact-enquiry-message--error,
.aipress-form-message--error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.contact-enquiry-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #E88D20;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-enquiry-info-title {
  font-size: 30px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.contact-enquiry-info-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0 0 40px;
}

.contact-enquiry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-enquiry-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-enquiry-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #F5F7FA;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #E88D20;
}

.contact-enquiry-item-body {
  min-width: 0;
}

.contact-enquiry-item-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.contact-enquiry-item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

.contact-enquiry-item-link {
  color: #666666;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-enquiry-item-link:hover {
  color: #E88D20;
}

@media (max-width: 991.98px) {
  .contact-enquiry-wrap {
    gap: 48px;
  }
}

@media (max-width: 767.98px) {
  .contact-enquiry-section {
    padding: 0 0 64px;
  }

  .contact-enquiry-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .contact-enquiry-form-col,
  .contact-enquiry-info-col {
    flex-basis: 100%;
    max-width: 100%;
  }

  .contact-enquiry-title,
  .contact-enquiry-info-title {
    font-size: 24px;
  }

  .contact-enquiry-submit {
    width: 100%;
  }
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
  padding: 0 0 96px;
  background: #fff;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: #E4E4E4;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #9A9A9A;
}

.map-placeholder-icon {
  display: block;
}

.map-placeholder-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9A9A9A;
}

@media (max-width: 767.98px) {
  .map-section {
    padding: 0 0 64px;
  }

  .map-frame {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
  padding: 96px 0;
  background: #fff;
}

.team-head {
  margin-bottom: 48px;
  text-align: left;
  max-width: 780px;
}

.team-title .odm-title-accent {
  color: var(--color-orange);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  filter: saturate(0.9);
  transition: filter 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-photo:hover {
  filter: saturate(1.05);
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .team-photo {
    width: 200px;
    height: 200px;
  }
}

.team-role {
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  margin: 0 0 8px;
}

.team-mail {
  font-size: 14px;
  margin: 0;
}

.team-mail-link {
  color: #555555;
  text-decoration: none;
  transition: color 0.25s ease;
}

.team-mail-link:hover {
  color: var(--color-orange);
}

@media (max-width: 767.98px) {
  .team-section {
    padding: 64px 0;
  }

  .team-head {
    margin-bottom: 36px;
  }

  .team-photo {
    margin-bottom: 20px;
  }
}


/* ============================================================
   恢复 2026-09-04 18:31 css 滚回丢失的规则（源：main.css.bak-pre-sync-20260904-1805）
   ============================================================ */

html {
  scroll-padding-top: 84px;
}

section[id] {
  scroll-margin-top: 84px;
}

.odm-lead-point-num {
  margin-right: 6px;
  color: var(--color-orange);
}

.odm-lead-support-steps {
  font-size: 10pt;
  font-weight: 700;
  color: var(--color-orange);
  margin: 20px 0 0;
}

/* Sub-menu links stay readable on the current page (only highlight on hover) */
.header-nav-main .sub-menu .nav-item.current-menu-item > a:not(:hover),
.header-nav-main .sub-menu .nav-item.current-menu-ancestor > a:not(:hover) {
  color: var(--color-text-primary);
  background: transparent;
}

/* Image lightbox (click to zoom) */
.global-img-wrap.has-lightbox img {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: rgba(10, 23, 42, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 249, 250, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #F8F9FA;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
  background: rgba(248, 249, 250, 0.12);
  border-color: #F8F9FA;
}

.lightbox-lock {
  overflow: hidden;
}

/* Custom subject input (shown when enquiry type is "Other") */
.contact-subject-group[hidden] {
  display: none;
}

.contact-subject-group {
  animation: contact-subject-in 0.25s ease;
}

@keyframes contact-subject-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pd-gallery-main-img video,
.pd-gallery-main-img iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.product-hero {
  min-height: 280px;
  height: 280px;
  max-height: 280px;
}

@media (max-width: 767px) {
  .product-hero {
    min-height: 280px;
    height: 280px;
    max-height: 280px;
  }
}

.iq-combo {
  position: relative;
}

.iq-combo-input {
  padding-right: 44px;
  cursor: pointer;
}

.iq-combo-input:not([readonly]) {
  cursor: text;
}

.iq-combo-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8A94A4;
  cursor: pointer;
}

.iq-combo-toggle svg {
  transition: transform 0.25s ease;
}

.iq-combo.is-open .iq-combo-toggle svg {
  transform: rotate(180deg);
}

.iq-combo-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.1);
  max-height: 240px;
  overflow-y: auto;
}

.iq-combo-option {
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.iq-combo-option:hover,
.iq-combo-option:focus {
  background: var(--color-navy);
  color: #fff;
  outline: none;
}
