section[data-module="home-trusted"] .trusted-progress,
section[data-module="home-trusted"] .trusted-nav {
  visibility: hidden;
  pointer-events: none;
}

/* =========================
   FIX PREVIOUS SECTION LAYER
========================= */
section[data-module="home-watersolution"] {
  position: relative;
  z-index: 1;
}

section[data-module="home-watersolution"] .ws-bg {
  z-index: 0;
}

section[data-module="home-watersolution"] .ws-inner,
section[data-module="home-watersolution"] .ws-deco {
  position: relative;
  z-index: 3;
}

/* =========================
   BASE
========================= */
section[data-module="home-trusted"] {
  position: relative;
  overflow: visible;
  background: transparent;
  z-index: 5;
}

/* =========================
   FULL WIDTH GREY SVG BG
========================= */
section[data-module="home-trusted"] .trusted-bg {
  position: absolute;
  left: 50%;
  top: -307px;
  width: 100vw;
  height: 923px;
  transform: translateX(-50%);
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

section[data-module="home-trusted"] .trusted-bg svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Hide responsive grey SVG by default */
section[data-module="home-trusted"] .trusted-bg-laptop,
section[data-module="home-trusted"] .trusted-bg-mobile {
  display: none;
}

/* =========================
   WRAPPER
========================= */
section[data-module="home-trusted"] .trusted-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: 0 auto;
  padding: 10px 80px 50px;
}

/* =========================
   HEADER
========================= */
section[data-module="home-trusted"] .trusted-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 30px;
}

section[data-module="home-trusted"] .trusted-title-wrap h2 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: #156082;
}

section[data-module="home-trusted"] .trusted-title-wrap h2 span {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin-left: 12px;
  background: url("/wp-content/uploads/2026/04/water-after-heading.png") no-repeat center / contain;
  vertical-align: baseline;
}

section[data-module="home-trusted"] .trusted-intro {
  padding-top: 5px;
}

section[data-module="home-trusted"] .trusted-intro p {
  margin: 0;
  max-width: 760px;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: #000000;
}

/* =========================
   CARD TRACK
========================= */
section[data-module="home-trusted"] .trusted-card-wrapper {
  width: 100%;
  overflow: hidden;
}

section[data-module="home-trusted"] .trusted-card-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 110px) / 6);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 5px;
}

section[data-module="home-trusted"] .trusted-card-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   CARD
========================= */
section[data-module="home-trusted"] .trusted-card {
  min-height: 145px;
  border: 1px solid #7cbc4a;
  border-radius: 28px 0 28px 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

section[data-module="home-trusted"] .trusted-card h3 {
  width: 80%;
  max-width: 160px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #156082;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}


/* No hover effect */
section[data-module="home-trusted"] .trusted-card:hover {
  background: #ffffff;
  transform: none;
}

section[data-module="home-trusted"] .trusted-card:hover h3 {
  color: #156082;
}

section[data-module="home-trusted"] .trusted-card-track {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

section[data-module="home-trusted"] .trusted-card-track.is-dragging {
  cursor: grabbing;
}

section[data-module="home-trusted"] .trusted-card {
  user-select: none;
  -webkit-user-select: none;
}

/* =========================
   BOTTOM / NAV
========================= */
section[data-module="home-trusted"] .trusted-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}

section[data-module="home-trusted"] .trusted-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 30px;
}

section[data-module="home-trusted"] .trusted-arrow {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid #f9d067;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

section[data-module="home-trusted"] .trusted-arrow span {
  display: none;
}

/* Original arrow is white, filter recolors it */
section[data-module="home-trusted"] .trusted-arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-image: url("/wp-content/uploads/2026/04/button-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(82%) sepia(62%) saturate(659%) hue-rotate(348deg) brightness(102%) contrast(95%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

section[data-module="home-trusted"] .trusted-prev::before {
  transform: rotate(180deg);
}

/* Disabled */
section[data-module="home-trusted"] .trusted-arrow.disabled {
  background: transparent;
  border-color: #f9d067;
  cursor: not-allowed;
  opacity: 1;
}

section[data-module="home-trusted"] .trusted-arrow.disabled::before {
  filter: brightness(0) saturate(100%) invert(82%) sepia(62%) saturate(659%) hue-rotate(348deg) brightness(102%) contrast(95%);
}

/* Active */
section[data-module="home-trusted"] .trusted-arrow.active {
  background: #f9d067;
  border-color: #f9d067;
  cursor: pointer;
}

section[data-module="home-trusted"] .trusted-arrow.active::before {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(879%) hue-rotate(155deg) brightness(89%) contrast(92%);
}

/* Hover only when clickable */
section[data-module="home-trusted"] .trusted-arrow:hover:not(.disabled) {
  background: #f9d067;
  border-color: #f9d067;
}

section[data-module="home-trusted"] .trusted-arrow:hover:not(.disabled)::before {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(879%) hue-rotate(155deg) brightness(89%) contrast(92%);
}

section[data-module="home-trusted"] .trusted-next:hover:not(.disabled)::before {
  transform: translateX(2px);
}

section[data-module="home-trusted"] .trusted-prev:hover:not(.disabled)::before {
  transform: rotate(180deg) translateX(2px);
}

section[data-module="home-trusted"] .trusted-arrow.disabled:hover {
  background: transparent;
  border-color: #A7A9AC;
  transform: none;
}

section[data-module="home-trusted"] .trusted-arrow.disabled:hover::before {
  filter: brightness(0) saturate(100%) invert(70%) sepia(3%) saturate(160%) hue-rotate(169deg) brightness(94%) contrast(88%);
}

/* =========================
   WATER SOLUTION ARROW ACTIVE STATE
   只要可以点击，就显示 active 黄色状态
========================= */
section[data-module="home-trusted"] .trusted-arrow.disabled {
  background: transparent;
  border-color: #A7A9AC;
  cursor: not-allowed;
  opacity: 1;
}

section[data-module="home-trusted"] .trusted-arrow.disabled::before {
  filter: brightness(0) saturate(100%) invert(70%) sepia(3%) saturate(160%) hue-rotate(169deg) brightness(94%) contrast(88%);
}


section[data-module="home-watersolution"] .ws-nav-btn:not(.is-disabled) {
  background: #f9d067;
  border-color: #f9d067;
  opacity: 1;
  cursor: pointer;
}

section[data-module="home-watersolution"] .ws-nav-btn:not(.is-disabled)::before {
  filter: brightness(0) saturate(100%) invert(24%) sepia(42%) saturate(1108%) hue-rotate(159deg) brightness(88%) contrast(95%);
}

section[data-module="home-watersolution"] .ws-nav-btn:hover:not(.is-disabled) {
  background: #f9d067;
  border-color: #f9d067;
}

section[data-module="home-watersolution"] .ws-nav-btn:hover:not(.is-disabled)::before {
  filter: brightness(0) saturate(100%) invert(24%) sepia(42%) saturate(1108%) hue-rotate(159deg) brightness(88%) contrast(95%);
}

section[data-module="home-ai-card"] .haic-desc ul {
  margin: 0;
  padding-left: 20px;
}

section[data-module="home-ai-card"] .haic-desc li {
  margin-bottom: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.78);
}

section[data-module="home-ai-card"] .haic-desc li:last-child {
  margin-bottom: 0;
}

section[data-module="home-ai-card"] .haic-desc strong {
  font-weight: 700;
  color: #111111;
}

section[data-module="home-trusted"] .trusted-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

section[data-module="home-trusted"] .trusted-progress {
  flex: 0 1 550px;
  width: 550px;
  max-width: 100%;
  height: 2px;
  margin-left: auto;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  overflow: hidden;
}

section[data-module="home-trusted"] .trusted-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #36BEDF;
  border-radius: 999px;
  transition: width 0.35s ease;
}

@media (max-width: 1499px) and (min-width: 992px) {
  section[data-module="home-ai-card"] .haic-desc li {
    font-size: 15.5px;
    line-height: 1.45;
    margin-bottom: 9px;
  }
}

@media (max-width: 767px) {
  section[data-module="home-ai-card"] .haic-desc ul {
    padding-left: 18px;
  }

  section[data-module="home-ai-card"] .haic-desc li {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
}


/* =========================
   LAPTOP
   Use laptop grey SVG
========================= */
@media (max-width: 1500px) and (min-width: 1200px) {
	
	
  section[data-module="home-trusted"] .trusted-bg-desktop {
    display: none;
  }

  section[data-module="home-trusted"] .trusted-bg-laptop {
    display: block;
  }

  section[data-module="home-trusted"] .trusted-bg-mobile {
    display: none;
  }

  section[data-module="home-trusted"] .trusted-bg {
	top: -440px;
    height: 1133px;
  }

  section[data-module="home-trusted"] .trusted-wrapper {
    padding: 10px 80px 50px;
    top: -30px;
  }

  section[data-module="home-trusted"] .trusted-header {
    gap: 20px;
    margin-bottom: 30px;
  }

  section[data-module="home-trusted"] .trusted-title-wrap h2 {
    font-size: 44px;
  }

  section[data-module="home-trusted"] .trusted-intro p {
    font-size: 18px;
  }

  section[data-module="home-trusted"] .trusted-card-track {
    grid-auto-columns: calc((100% - 88px) / 5);
  }

  section[data-module="home-trusted"] .trusted-card h3 {
    font-size: 22px;
  }

  section[data-module="home-trusted"] .trusted-nav {
    padding-right: 30px;
  }
}

/* =========================
   SMALL LAPTOP / TABLET LANDSCAPE
   Use laptop grey SVG
========================= */
@media (max-width: 1199px) and (min-width: 769px) {
  section[data-module="home-trusted"] .trusted-bg-desktop {
    display: none;
  }

  section[data-module="home-trusted"] .trusted-bg-laptop {
    display: block;
  }

  section[data-module="home-trusted"] .trusted-bg-mobile {
    display: none;
  }

  section[data-module="home-trusted"] .trusted-bg {
    top: -220px;
    height: 760px;
  }

  section[data-module="home-trusted"] .trusted-wrapper {
    padding: 70px 45px 70px;
  }

  section[data-module="home-trusted"] .trusted-header {
    gap: 50px;
  }

  section[data-module="home-trusted"] .trusted-title-wrap h2 {
    font-size: 40px;
  }

  section[data-module="home-trusted"] .trusted-card-track {
    grid-auto-columns: calc((100% - 66px) / 4);
  }

  section[data-module="home-trusted"] .trusted-nav {
    padding-right: 30px;
  }
}
/* =========================
   MOBILE
   Use mobile grey SVG
========================= */
@media (max-width: 768px) {
  section[data-module="home-trusted"] .trusted-bg-desktop,
  section[data-module="home-trusted"] .trusted-bg-laptop {
    display: none;
  }

  section[data-module="home-trusted"] .trusted-bg-mobile {
    display: block;
  }

  section[data-module="home-trusted"] .trusted-bg {
    top: -85px;
    height: 620px;
  }

  section[data-module="home-trusted"] .trusted-wrapper {
    padding: 65px 22px 55px;
  }
 section[data-module="home-trusted"] .trusted-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-bottom: 28px;
  }

  section[data-module="home-trusted"] .trusted-title-wrap,
  section[data-module="home-trusted"] .trusted-intro {
    width: 100%;
  }

  section[data-module="home-trusted"] .trusted-title-wrap h2 {
    max-width: 100%;
  }

  section[data-module="home-trusted"] .trusted-intro {
    padding-top: 0;
  }

  section[data-module="home-trusted"] .trusted-intro p {
    max-width: 100%;
    width: 100%;
  }
	
	
  section[data-module="home-trusted"] .trusted-title-wrap h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  section[data-module="home-trusted"] .trusted-title-wrap h2 span {
    width: 12px;
    height: 14px;
    margin-left: 8px;
  }

  section[data-module="home-trusted"] .trusted-intro p {
    font-size: 15px;
  }

  section[data-module="home-trusted"] .trusted-card-track {
    grid-auto-columns: 55%;
    gap: 16px;
  }

  section[data-module="home-trusted"] .trusted-card {
    min-height: 115px;
    border-radius: 22px 0 22px 0;
  }

  section[data-module="home-trusted"] .trusted-card h3 {
    font-size: 18px;
  }

  section[data-module="home-trusted"] .trusted-bottom {
    justify-content: flex-end;
    margin-top: 38px;
  }

  section[data-module="home-trusted"] .trusted-nav {
    justify-content: flex-end;
    padding-right: 0;
  }

  section[data-module="home-trusted"] .trusted-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 768px) {
  section[data-module="home-trusted"] .trusted-card h3 {
    width: 82%;
    max-width: 130px;
    font-size: 18px;
    line-height: 1.28;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  section[data-module="home-trusted"] .trusted-bg {
    top: -70px;
    height: 560px;
  }

  section[data-module="home-trusted"] .trusted-wrapper {
    padding: 20px 20px 70px 20px;
  }

  section[data-module="home-trusted"] .trusted-title-wrap h2 {
    font-size: 30px;
  }

  section[data-module="home-trusted"] .trusted-card-track {
    grid-auto-columns: 55%;
    gap: 14px;
  }

  section[data-module="home-trusted"] .trusted-card {
    min-height: 110px;
  }
}