/* ==========================================================================
   TOUCHSMITH 閳ワ拷 static rebuild (clean, no page-builder markup)
   ========================================================================== */
/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 120px; /* height of topbar + navbar (fixed header) */
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
}
/* ---------- Typography helpers ---------- */
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
}
.section-sub {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2c2c2c;
  margin-top: 10px;
}
/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}
/* Top black contact bar */
.topbar {
  background: #000;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a {
  display: inline-flex;
  color: #fff;
  transition: opacity 0.3s;
}
.topbar-social a:hover {
  opacity: 0.8;
}
.topbar-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-contact a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: opacity 0.3s;
}
.topbar-contact a:hover {
  opacity: 0.8;
}
/* Main navigation */
.navbar {
  background: #fff;
  min-height: 80px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.navbar.is-sticky {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  width: 80px;
  height: auto;
}
.main-nav .nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li {
  position: relative;
}
.nav-list > li + li {
  margin-left: 30px;
}
.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  position: relative;
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  transform: scaleX(1);
}
.nav-list .caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #000;
  display: inline-block;
}
/* Dropdown menus */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 80;
}
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #393939;
  transition: background 0.2s, color 0.2s;
}
.dropdown li a:hover {
  background: #000;
  color: #fff;
}
/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin-top: -80px;
  background-image: url("../img/bjt.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.hero-left {
  width: 45%;
  align-self: center;
  padding: 6% 4% 4% 10%;
}
.hero-title-line1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.hero-title-line2 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  line-height: 1em;
  max-width: 500px;
  margin-top: 8px;
}
.hero-sub {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4em;
  color: #545454;
  max-width: 471px;
  margin-top: 4%;
}
.btn-hero {
  display: inline-block;
  background: #232323;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 18px 30px;
  border-radius: 3px;
  margin-top: 4%;
  transition: background 0.3s;
}
.btn-hero:hover {
  background: #3a3a3a;
}
.hero-note {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 1% 0 0 4%;
}
.hero-right {
  width: 55%;
  align-self: center;
  padding-left: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: #f5f5f5;
  padding: 4% 0 6%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 22px 16px;
  text-align: center;
}
/* 閺佹澘鐡� + 閸氬海绱戞慨瀣矒閸︺劌鎮撴稉锟界悰灞炬▔缁�锟� */
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: "Abel", sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  font-weight: 300;
  color: #000;
  line-height: 1.15;
  white-space: nowrap;
}
.stat-suffix {
  font-family: "Abel", sans-serif;
  font-size: 1em;
  font-weight: 300;
  color: #000;
  line-height: 1.15;
}
.stat-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.2em;
  margin-top: 10px;
}
/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products {
  background: #f5f5f5;
  padding: 2% 0 6%;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  margin-top: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.product-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4em;
  color: #242424;
  margin: 20px 0 0 10px;
}
.product-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
/* ==========================================================================
   SOLUTIONS
   ========================================================================== */
.solutions {
  background: #fff;
  padding: 6% 0;
}
.solutions-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4%;
  margin-bottom: 30px;
}
.solutions-head-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: #cecece;
}
.solutions-head-right {
  width: 55%;
}
.solutions-head-right p {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8em;
  color: #464646;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.solution-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 42vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(2, 1, 1, 0);
  border-radius: 20px;
  padding: 0 25px 25px;
  transition: border-color 0.3s;
  overflow: hidden;
}
.solution-card:hover {
  border-color: #000;
}
.solution-card-inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 15px;
}
.solution-card-inner h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.solution-card-inner p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: -20px;
  margin-top: 4px;
}
/* Turn Any TV image is right-aligned in original */
.solution-card:nth-child(2) {
  background-position: center right;
}
/* ==========================================================================
   CORE STRENGTHS
   ========================================================================== */
.strengths {
  background: #f5f5f5;
  padding: 6% 0;
}
.strengths-inner {
  display: flex;
  gap: 4%;
  align-items: stretch;
}
.strengths-media {
  width: 45%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 350px;
}
.strengths-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strengths-content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.strengths-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #707070;
}
.strengths-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.strength-item:hover {
  background: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.strength-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-icon svg {
  width: 40px;
  height: 40px;
  fill: #777;
}
.strength-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.strength-item p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: #6f6f6f;
}
/* ==========================================================================
   PARTNERS (marquee)
   ========================================================================== */
.partners {
  background: #fff;
  padding: 4% 0;
}
.partners .section-title {
  text-align: center;
  margin-bottom: 20px;
}
.marquee {
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 85px;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  padding: 0 25px;
  margin-left: 14px;
}
.marquee-item img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}
.marquee-item span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8a8a8a;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #f5f5f5;
}
.footer-strip {
  height: 5px;
  background: #b9b9b9;
}
.footer-main {
  padding: 3% 0;
}
.footer-main-inner {
  display: flex;
  gap: 4%;
}
.footer-brand {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand > img {
  width: 160px;
  height: auto;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e8e8e8;
  color: #000;
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover {
  background: #000;
  color: #fff;
}
.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.footer-cols {
  width: 70%;
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.footer-col h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
}
.footer-col li {
  padding: 4px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #494949;
}
.footer-col li a {
  color: #494949;
  transition: color 0.3s;
}
.footer-col li a:hover {
  color: #000;
}
.footer-col li span {
  color: #494949;
}
.footer-col .footer-address li {
  line-height: 1.6;
  padding: 6px 0;
}
.footer-col .footer-address strong {
  font-weight: 600;
  color: #000;
}
.footer-bottom {
  border-top: 1px solid #e4e4e4;
  padding: 1.2% 0;
}
.footer-bottom p {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
}
/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.25rem;
  }
  .stats {
    padding: 6% 0;
  }
  .stats-grid {
    gap: 14px;
  }
  .stat-card {
    padding: 18px 12px;
  }
  .products {
    padding: 6% 0 4%;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions {
    padding: 4% 0;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strengths {
    padding: 4% 0;
  }
  .strengths-inner {
    flex-direction: column-reverse;
    gap: 0;
  }
  .strengths-media,
  .strengths-content {
    width: 100%;
  }
  .strengths-media {
    min-height: 250px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 110px; /* topbar 40 + navbar 70 */
  }
  .container {
    padding-left: 4%;
    padding-right: 4%;
  }
  /* Header */
  .topbar-inner {
    justify-content: center;
  }
  .topbar-social {
    display: none;
  }
  .navbar {
    min-height: 70px;
  }
  .navbar-inner {
    min-height: 70px;
  }
  .logo img {
    width: 70px;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }
  /* 閹靛婧�缁旑垰顕遍懜顏庣窗娴犲骸褰告笟褎绮﹂崙铏规畱閹惰棄鐪介棃銏℃緲閿涘牆涔忕�靛綊缍堥敍灞肩瑢閸樼喓鐝稉锟介懛杈剧礆 */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 360px;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
    display: block;
    text-align: left;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  /* 閸忔娊妫撮幐澶愭尦 閳ワ拷 閸欏厖绗傜憴锟� */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 18px 8px;
    flex-shrink: 0;
  }
  .nav-close-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-close-btn svg {
    width: 22px;
    height: 22px;
    stroke: #333;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
  }
  .nav-list {
    display: block !important;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
  }
  .nav-list > li {
    margin: 0 !important;
    margin-left: 0 !important;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    text-align: left;
  }
  .nav-list > li + li {
    margin-left: 0 !important;
  }
  .nav-list > li:first-child {
    border-top: 1px solid #e5e5e5;
  }
  .nav-list > li > a {
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    border-bottom: none;
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: 0;
    text-align: left;
    line-height: 1.4;
  }
  .nav-list > li > a::after {
    display: none !important;
  }
  .nav-list > li:last-child > a {
    border-bottom: none;
  }
  /* 娑撳濯虹粻顓炪仈閿涘牆鎮滄稉锟� V 瑜邦澁绱濇稉搴″斧缁旀瑤绔撮懛杈剧礆 */
  .nav-list .caret {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: none;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
    margin-left: auto;
  }
  .nav-list .caret::before,
  .nav-list .caret::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 7px;
    height: 1.5px;
    background: #666;
    border-radius: 1px;
  }
  .nav-list .caret::before {
    left: 0;
    transform: rotate(45deg);
    transform-origin: right center;
  }
  .nav-list .caret::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: left center;
  }
  .has-dropdown.is-open .caret {
    transform: rotate(180deg);
  }
  /* 閹惰棄鐪介崘鍛妞嬪海鎯旂�涙劘褰嶉崡锟� */
  .has-dropdown .dropdown {
    position: static !important;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    background: #f7f7f7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .has-dropdown.is-open .dropdown {
    max-height: 600px;
  }
  .dropdown li a {
    padding: 13px 20px 13px 36px;
    font-size: 15px;
    border-bottom: 1px solid #ececec;
    color: #333;
    font-weight: 400;
    text-align: left;
    display: block;
  }
  .dropdown li a:hover {
    background: #eee;
    color: #000;
  }
  .dropdown li:last-child a {
    border-bottom: none;
  }
  /* 閹惰棄鐪介幍鎾崇磻閺冨爼鏀ｇ�规岸銆夐棃銏＄泊閸旑煉绱欓弮鐘讳紕缂冣晪绱濋棁鎻掑毉瀹革缚鏅舵い鐢告桨閸愬懎顔愰敍锟� */
  body.menu-open {
    overflow: hidden;
  }
  /* Hero */
  .hero {
    flex-direction: column;
    margin-top: 0;
    min-height: 0;
    padding: 6% 0 10%;
  }
  .hero-left {
    width: 100%;
    padding: 4%;
  }
  .hero-title-line1,
  .hero-title-line2 {
    font-size: 24px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .btn-hero {
    font-size: 14px;
    padding: 16px 0;
    width: 100%;
    text-align: center;
  }
  .hero-note {
    font-size: 12px;
    margin: 10px 0 0;
  }
  .hero-right {
    width: 100%;
    padding: 0 4%;
    margin-top: 20px;
  }
  /* Stats */
  .stats {
    padding: 10% 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 20px 10px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  /* Products */
  .products {
    padding: 10% 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* Solutions */
  .solutions {
    padding: 10% 0;
  }
  .solutions-head {
    flex-direction: column;
    gap: 16px;
  }
  .solutions-head-left,
  .solutions-head-right {
    width: 100%;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 40vh;
  }
  .solution-card-inner h3 {
    font-size: 18px;
  }
  .solution-card-inner p {
    font-size: 14px;
  }
  /* Strengths */
  .strengths {
    padding: 10% 0;
  }
  .strengths-kicker {
    font-size: 20px;
  }
  .strengths-title {
    font-size: 30px;
  }
  /* Partners */
  .partners {
    padding: 10% 0 6%;
  }
  /* Footer */
  .footer-main {
    padding: 6% 0;
  }
  .footer-main-inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-cols {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-col {
    width: 48%;
  }
  .footer-contact-col {
    width: 100%;
    margin-top: 20px;
  }
  .footer-bottom {
    padding: 4% 0;
  }
}
/* ==========================================================================
   INNER PAGES (static rebuild) 閳ワ拷 page head, content sections, components
   ========================================================================== */
/* ---------- Page head ---------- */
.page-head {
  background: #f5f5f5;
  padding: 5% 0;
  border-bottom: 1px solid #e8e8e8;
}
.page-head h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
}
.page-body {
  background: #fff;
  padding: 4% 0 6%;
}
.page-body .container {
  max-width: 1200px;
}
/* ---------- Content headings & text ---------- */
.content-h {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  margin: 2.2em 0 0.6em;
}
.page-body > .container > .content-h:first-child {
  margin-top: 0;
}
.page-body .content-h + .content-h {
  margin-top: 0.4em;
}
.page-body p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #464646;
  margin: 0.8em 0;
}
.page-body p strong {
  color: #000;
}
.page-body ul.content-list,
.page-body ol {
  margin: 0.8em 0 1em 1.2em;
}
.page-body ul.content-list {
  list-style: none;
  margin-left: 0;
}
.page-body ul.content-list li {
  position: relative;
  padding-left: 26px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 6px 0;
}
.page-body ul.content-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
}
/* ---------- CTA buttons ---------- */
.content-cta {
  display: inline-block;
  margin: 0.6em 12px 0.6em 0 !important;
}
.content-btn {
  display: inline-block;
  background: #232323;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 13px 26px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.content-btn:hover {
  background: #3a3a3a;
}
/* ---------- Feature grid (icon boxes) ---------- */
.features-grid,
.page-body .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 1.2em 0;
}
.feature {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 22px;
  transition: box-shadow 0.3s, background 0.3s;
}
.feature:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.feature h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}
.feature p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}
.feature-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}
.feature.stat {
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.feature.stat .feature-icon-img {
  margin: 0 auto 6px;
  display: block;
}
.feature.stat h3 {
  font-family: "Abel", sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  margin: 0;
}
/* ---------- Content images ---------- */
.content-img {
  margin: 1.2em 0;
  border-radius: 16px;
  overflow: hidden;
}
.content-img img {
  width: 100%;
  height: auto;
}
.content-img figcaption {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #888;
  padding: 8px 4px 0;
  text-align: center;
}
/* two-column image + text split */
.split {
  display: flex;
  gap: 4%;
  align-items: center;
  margin: 1.4em 0;
}
.split > *:first-child {
  width: 55%;
}
.split > *:last-child {
  width: 45%;
}
/* ---------- Gallery ---------- */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.2em 0;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
/* ---------- Video ---------- */
.content-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.2em 0;
  background: #000;
}
.content-video iframe,
.content-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ---------- Stats (counters on inner pages) ---------- */
.content-stat {
  text-align: center;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 24px 12px;
}
.content-stat-num {
  font-family: "Abel", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #000;
  line-height: 1.1;
}
.content-stat-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-top: 6px;
}
/* ---------- Maps ---------- */
.content-map {
  border-radius: 16px;
  overflow: hidden;
  margin: 1.2em 0;
  border: 1px solid #eee;
}
.content-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
/* ---------- Tables (dimensions / download) ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 1.4em 0;
  border-radius: 14px;
  border: 1px solid #ececec;
}
.page-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}
.page-body table th,
.page-body table td {
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  text-align: center;
  color: #3a3a3a;
  line-height: 1.5;
}
.page-body table th {
  background: #f2f2f2;
  font-weight: 600;
  color: #000;
}
.page-body table tr:nth-child(even) td {
  background: #fafafa;
}
.page-body table a {
  color: #0066cc;
  text-decoration: underline;
}
.page-body table a:hover {
  color: #000;
}
/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid #ececec;
  border-radius: 14px;
  margin: 12px 0;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-ans {
  padding: 0 20px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4a4a;
}
.faq-item .faq-ans p {
  margin: 0.4em 0;
  color: #4a4a4a;
}
/* FAQ quick nav */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0.6em 0 1.4em;
}
.faq-nav a {
  display: inline-block;
  background: #f2f2f2;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 24px;
  transition: background 0.3s, color 0.3s;
}
.faq-nav a:hover {
  background: #000;
  color: #fff;
}
/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 1.2em 0;
}
.contact-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 22px;
}
.contact-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4a4a;
}
.contact-card a:hover {
  color: #000;
}
/* ---------- Static form ---------- */
.static-form {
  margin: 1.4em 0;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 26px;
}
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field:has(textarea) {
  grid-column: 1 / -1;
}
.form-field label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #222;
}
.form-field input,
.form-field textarea {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #000;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-hint {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #1a7f37;
  margin-top: 12px;
  display: none;
}
/* ---------- Download table ---------- */
.dl-table .dl-name {
  font-weight: 500;
  color: #000;
}
.dl-table .dl-link {
  white-space: nowrap;
}
/* ---------- Loop cards fallback ---------- */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 1.2em 0;
}
.loop-card {
  display: block;
  background: #f7f7f7;
  border-radius: 14px;
  padding: 16px;
  transition: box-shadow 0.3s, background 0.3s;
}
.loop-card:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.loop-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.loop-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
}
/* ---------- Inner page responsive ---------- */
@media (max-width: 1024px) {
  .features-grid,
  .page-body .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .page-head {
    padding: 10% 0;
  }
  .page-head h1 {
    font-size: 1.6rem;
  }
  .page-body {
    padding: 8% 0;
  }
  .content-h {
    font-size: 1.3rem;
  }
  .features-grid,
  .page-body .features,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .content-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .split {
    flex-direction: column;
  }
  .split > *:first-child,
  .split > *:last-child {
    width: 100%;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .loop-grid {
    grid-template-columns: 1fr;
  }
  .static-form {
    padding: 18px;
  }
}
/* ---------- Stat row (inner pages) ---------- */
.features-stat {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .features-stat {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-stat {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------- Stat card (number + description) ---------- */
.feature.stat-card {
  text-align: center;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 28px 18px;
  transition: box-shadow 0.3s, background 0.3s;
}
.feature.stat-card:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.feature.stat-card .feature-icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.feature.stat-card .stat-num {
  font-family: "Abel", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #000;
  line-height: 1.15;
  margin: 0;
}
.feature.stat-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 8px 0 4px;
}
.feature.stat-card p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}
/* ===== Topbar 绀句氦鍥炬爣 ===== */
.topbar-social {
  gap: 16px !important;
}
.topbar-social a {
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
}
.topbar-social svg {
  width: 18px !important;
  height: 18px !important;
  fill: #fff !important;
}

/* ===== Footer 绀句氦鍥炬爣锛堜笉浼氬彉褰級 ===== */
.footer-social {
  display: flex !important;
  gap: 10px !important;
}

.footer-social a {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.footer-social a:hover {
  opacity: 0.85 !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* 鍝佺墝鑹茶儗鏅� */
.footer-social a[aria-label="Facebook"] { background: #1877f2 !important; }
.footer-social a[aria-label="WhatsApp"] { background: #25d366 !important; }
.footer-social a[aria-label="YouTube"] { background: #ff0000 !important; }
.footer-social a[aria-label="WeChat Work"] { background: #07c160 !important; }

.footer-social a:hover[aria-label="Facebook"] { background: #1877f2 !important; }
.footer-social a:hover[aria-label="WhatsApp"] { background: #25d366 !important; }
.footer-social a:hover[aria-label="YouTube"] { background: #ff0000 !important; }
.footer-social a:hover[aria-label="WeChat Work"] { background: #07c160 !important; }

/* 鍏抽敭锛氬彧鎺у埗瀹藉害锛岄珮搴﹁嚜鍔ㄤ繚鎸佹瘮渚嬶紝涓嶄細鍙樺舰 */
.footer-social svg {
  width: 16px !important;
  height: auto !important;          /* 鍏抽敭鏀硅繖閲� */
  max-height: 16px !important;      /* 闄愬埗鏈�澶ч珮搴� */
  fill: #fff !important;
}
 .float-chat-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
  }

  .float-chat-btn .chat-tip {
    background: #ffffff;
    color: #333;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-right: 12px;
    position: relative;
    white-space: nowrap;
  }

  /* 姘旀场鍙充晶鐨勫皬涓夎 */
  .float-chat-btn .chat-tip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
  }

  /* 榛樿鏄剧ず Chat with us */
  .float-chat-btn .chat-tip .text-default {
    display: inline;
  }
  .float-chat-btn .chat-tip .text-hover {
    display: none;
  }

  /* 鎮仠鏃讹細鏂囧瓧鍒囨崲涓� WhatsApp */
  .float-chat-btn:hover .chat-tip .text-default {
    display: none;
  }
  .float-chat-btn:hover .chat-tip .text-hover {
    display: inline;
  }

  .float-chat-btn .icon-circle {
    width: 56px;
    height: 56px;
    background-color: #25D366; /* 寰俊/WhatsApp 缁� */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
  }
  .float-chat-btn:hover .icon-circle {
    transform: scale(1.05);
  }

  .float-chat-btn .icon-circle svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
  }
  /* 榛樿鏄剧ず寰俊鍥炬爣锛岄殣钘廤hatsApp鍥炬爣 */
  .float-chat-btn .icon-wechat {
    display: block;
  }
  .float-chat-btn .icon-whatsapp {
    display: none;
  }
  /* 鎮仠鏃讹細闅愯棌寰俊鍥炬爣锛屾樉绀篧hatsApp鍥炬爣 */
  .float-chat-btn:hover .icon-wechat {
    display: none;
  }
  .float-chat-btn:hover .icon-whatsapp {
    display: block;
  }
  /* 绉诲姩绔�傞厤锛氶殣钘忔皵娉℃枃瀛楋紝鍙暀鍥炬爣 */
  @media (max-width: 768px) {
    .float-chat-btn {
      right: 15px;
      bottom: 80px;
    }
    .float-chat-btn .chat-tip {
      display: none;
    }
  }
  /* Mobile Share Bar */
.mobile-share-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
  justify-content: center;
}
.mobile-share-bar .share-btn {
  flex: 1;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: background .2s;
}
.mobile-share-bar .share-btn:active {
  background: #e8e8e8;
}
.mobile-share-bar .share-btn svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .mobile-share-bar {
    display: flex;
  }
  /* 缁欓〉闈㈠簳閮ㄧ暀鍑虹┖闂达紝閬垮厤琚伄鎸� */
  body {
    padding-bottom: 70px;
  }
}
/* 弹窗基础 */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}
.modal-box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.modal-close:hover { color: #333; }
.modal-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #0a1e2f;
}
.modal-subtitle {
  font-size: 14px;
  color: #6a7a8a;
  margin: 0 0 22px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.required { color: #e74c3c; }
.optional { font-weight: 400; color: #888; font-size: 13px; }
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a6b8f;
  box-shadow: 0 0 0 3px rgba(42,107,143,0.15);
}
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}
.row {
  display: flex;
  gap: 12px;
}
.half { flex: 1; }
.form-section {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
}
.form-section h3 {
  font-size: 15px;
  margin: 0 0 4px;
}
.help-text {
  font-size: 13px;
  color: #6a7a8a;
  margin: 0 0 14px;
}
.form-actions {
  margin-top: 8px;
}
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #2a6b8f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.btn-submit:hover { background: #1e5573; }
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
}
.form-message.error {
  background: #fdecea;
  color: #c62828;
}
/* 移动端适配 */
@media (max-width: 480px) {
  .modal-box { padding: 22px 16px 18px; }.row { flex-direction: column; gap: 0; }
}