/*
 * 伊宝尔官网全站修正
 * 导航栏尺寸以本文件为最终来源，避免页面跳转时因历史样式覆盖而变化。
 */

:root {
  --yb-site-nav-height: 110px;
  --yb-site-nav-height-mobile: 72px;
  --yb-site-nav-max-width: 1240px;
  --yb-site-nav-contact-width: 220px;
  --yb-site-nav-contact-height: 60px;
}

html body .header-area.header-sticky,
html body .header-area.background-header {
  position: fixed !important;
  z-index: 9999 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  width: 100% !important;
  height: var(--yb-site-nav-height) !important;
  box-sizing: border-box !important;
  transform: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease !important;
}

html body .header-area.header-sticky .main-nav {
  position: relative !important;
  width: 100% !important;
  height: var(--yb-site-nav-height) !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: var(--yb-site-nav-height) !important;
  box-sizing: border-box !important;
}

html body .desktop-brand {
  display: none;
}

@media (min-width: 991px) {
  html body .mobile-app-top,
  html body .mobile-bottom-nav,
  html body .mobile-detail-actions {
    display: none !important;
  }

  html body .header-area.header-sticky::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    content: none !important;
  }

  html body .header-area.header-sticky .container {
    width: 100% !important;
    height: var(--yb-site-nav-height) !important;
    max-width: none !important;
    margin: 0 !important;
    padding-right: clamp(42px, 6.5vw, 132px) !important;
    padding-left: clamp(42px, 6.5vw, 132px) !important;
    box-sizing: border-box !important;
  }

  html body .header-area.header-sticky .row {
    width: 100% !important;
    height: var(--yb-site-nav-height) !important;
    margin: 0 !important;
  }

  html body .header-area.header-sticky .col-12 {
    width: 100% !important;
    height: var(--yb-site-nav-height) !important;
    padding: 0 !important;
  }

  html body .header-area.header-sticky .main-nav {
    display: grid !important;
    grid-template-columns: clamp(168px, 14vw, 220px) minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: clamp(18px, 2vw, 36px) !important;
    max-width: 1640px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  html body .header-area.header-sticky .main-nav > .desktop-brand {
    grid-column: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    height: var(--yb-site-nav-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
  }

  html body .header-area.header-sticky .main-nav > .desktop-brand img {
    display: block !important;
    width: 100% !important;
    max-width: 220px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  html body .header-area.header-sticky .main-nav > .nav {
    position: static !important;
    display: grid !important;
    float: none !important;
    grid-column: 2 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(180px, 220px) !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--yb-site-nav-height) !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: var(--yb-site-nav-height) !important;
    margin: 0 !important;
    padding: 0 clamp(14px, 1.5vw, 30px) !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li > a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: var(--yb-site-nav-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif !important;
    font-size: clamp(15px, 1.25vw, 18px) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.03em !important;
    color: #273f50 !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li > a:hover,
  html body .header-area.header-sticky .main-nav > .nav > li > a:focus-visible,
  html body .header-area.header-sticky .main-nav > .nav > li > a.active {
    color: #0e63d4 !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li > a::after {
    position: absolute !important;
    right: auto !important;
    bottom: 0 !important;
    left: 50% !important;
    display: none !important;
    width: 64px !important;
    height: 4px !important;
    margin: 0 !important;
    border-radius: 4px 4px 0 0 !important;
    background: #0e63d4 !important;
    content: "" !important;
    transform: translateX(-50%) !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li > a.active::after {
    display: block !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li:nth-child(n+2):nth-child(-n+4)::before {
    height: 36px !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li.has-sub > ul.sub-menu {
    right: auto !important;
    top: calc(var(--yb-site-nav-height) - 22px) !important;
    left: 50% !important;
    width: 220px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transform: translateX(-50%) !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li:last-child {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    justify-content: flex-end !important;
    padding-right: 0 !important;
    padding-left: 12px !important;
    transform: none !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li:last-child > a {
    width: 100% !important;
    min-width: 0 !important;
    height: var(--yb-site-nav-contact-height) !important;
    padding: 0 30px !important;
    border: 1.5px solid #0e63d4 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 5px 14px rgb(14 99 212 / 10%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    font-size: clamp(15px, 1.18vw, 17px) !important;
    color: #0e63d4 !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li:last-child > a::after {
    display: none !important;
  }

  html body .header-area.header-sticky .main-nav > .nav > li:last-child > a:hover,
  html body .header-area.header-sticky .main-nav > .nav > li:last-child > a:focus-visible,
  html body .header-area.header-sticky .main-nav > .nav > li:last-child > a.active {
    background: #0e63d4 !important;
    color: #fff !important;
  }
}

@media (max-width: 990.98px) {
  html body.mobile-shell-ready {
    padding-top: 72px !important;
  }

  html body .header-area.header-sticky,
  html body .header-area.background-header {
    height: var(--yb-site-nav-height-mobile) !important;
  }

  html body .header-area.header-sticky .main-nav {
    height: var(--yb-site-nav-height-mobile) !important;
    min-height: var(--yb-site-nav-height-mobile) !important;
  }

  html body.mobile-shell-ready .mobile-app-top {
    display: grid !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    padding: 9px 14px 8px !important;
    box-sizing: border-box !important;
  }

  body .mobile-bottom-nav {
    right: 12px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    min-height: 62px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }

  body .mobile-bottom-nav > a {
    height: 50px !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   Responsive system v3 — mobile/tablet task-first experience
   Selected direction: find the field problem first, then match a solution.
   This final layer intentionally replaces the accumulated legacy mobile shell.
   ========================================================================== */

.mobile-task-hero,
.mobile-problem-selector,
.mobile-app-top,
.mobile-bottom-nav,
.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.site-main-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 20050;
  top: 10px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #0b57d0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

/* Keep desktop typography intact after semantic heading upgrades. */
.page-heading h1 {
  margin: 0;
  color: #fff !important;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 6px;
}

.product-info h1 {
  margin-bottom: 15px;
  color: #1e293b;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.28;
}

@media (max-width: 990.98px) {
  :root {
    --ybr-blue: #0b57d0;
    --ybr-blue-strong: #0848ad;
    --ybr-blue-soft: #edf4ff;
    --ybr-ink: #10233f;
    --ybr-copy: #43546a;
    --ybr-muted: #6d7c90;
    --ybr-line: #dce5ef;
    --ybr-surface: #ffffff;
    --ybr-canvas: #f5f7fa;
    --ybr-orange: #e96b22;
    --ybr-radius: 14px;
    --ybr-shadow: 0 10px 28px rgba(16, 35, 63, 0.08);
  }

  html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-padding-top: 86px;
    -webkit-text-size-adjust: 100%;
  }

  body,
  html body.mobile-shell-ready,
  html body.product-detail-page.has-mobile-detail-actions {
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 76px !important;
    padding-bottom: 0 !important;
    background: var(--ybr-canvas) !important;
    color: var(--ybr-copy);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif !important;
  }

  body.mobile-menu-open {
    overflow: hidden !important;
  }

  #particles-canvas,
  .tech-mouse-glow,
  .mobile-detail-actions,
  .header-area {
    display: none !important;
  }

  .site-navigation-root {
    position: relative;
    z-index: 10000;
  }

  html body.mobile-shell-ready .mobile-app-top,
  html body .mobile-app-top,
  html body.product-detail-page .mobile-app-top,
  html body.product-detail-page.history-back-available .mobile-app-top {
    position: fixed !important;
    z-index: 10030 !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    padding: 10px 18px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(220, 229, 239, 0.94) !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 18px rgba(16, 35, 63, 0.06) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-sizing: border-box !important;
  }

  .mobile-brand {
    grid-column: 1 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 9px !important;
    min-height: 44px;
    min-width: 0;
    color: var(--ybr-ink) !important;
    text-decoration: none;
  }

  .mobile-brand-mark,
  html body .mobile-brand-mark {
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 10px !important;
    background: #0b57d0 !important;
    box-shadow: none !important;
  }

  .mobile-brand-mark img,
  html body .mobile-brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: none !important;
    transform: none !important;
  }

  .mobile-brand-copy {
    display: block;
    min-width: 0;
  }

  .mobile-brand strong,
  .mobile-brand em,
  html body .mobile-brand strong,
  html body .mobile-brand em {
    display: block;
    max-width: none !important;
    overflow: visible;
    color: var(--ybr-ink) !important;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-brand strong,
  html body .mobile-brand strong {
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }

  .mobile-brand em,
  html body .mobile-brand em {
    margin-top: 3px;
    color: var(--ybr-muted) !important;
    font-size: 10px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 1.1;
  }

  .tablet-primary-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }

  .tablet-primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 9px;
    color: #354861;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .tablet-primary-nav a.active {
    background: var(--ybr-blue-soft);
    color: var(--ybr-blue);
  }

  .mobile-header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-search-action,
  .mobile-menu-toggle,
  .mobile-nav-close,
  .mobile-back-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    min-width: 44px;
    height: 44px !important;
    min-height: 44px;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
    color: var(--ybr-ink) !important;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-back-action {
    grid-column: 1 !important;
    display: none !important;
  }

  .mobile-back-action.is-visible,
  body.history-back-available .mobile-back-action {
    display: inline-flex !important;
  }

  body.product-detail-page .mobile-back-action.is-visible ~ .mobile-brand,
  body.history-back-available .mobile-back-action ~ .mobile-brand {
    grid-column: 2 !important;
  }

  body.product-detail-page .mobile-back-action.is-visible ~ .tablet-primary-nav,
  body.history-back-available .mobile-back-action ~ .tablet-primary-nav {
    display: none;
  }

  body.product-detail-page .mobile-back-action.is-visible ~ .mobile-header-actions,
  body.history-back-available .mobile-back-action ~ .mobile-header-actions {
    grid-column: 3 !important;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 10035;
    inset: 0;
    display: block;
    background: rgba(9, 25, 46, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-nav-drawer {
    position: fixed;
    z-index: 10040;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(88vw, 390px);
    padding: 18px 18px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 50px rgba(16, 35, 63, 0.16);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  body.mobile-menu-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-nav-drawer {
    transform: translateX(0);
  }

  .mobile-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ybr-line);
  }

  .mobile-nav-drawer-head > div span,
  .mobile-nav-drawer-head > div strong {
    display: block;
  }

  .mobile-nav-drawer-head > div span {
    margin-bottom: 4px;
    color: var(--ybr-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .mobile-nav-drawer-head > div strong {
    color: var(--ybr-ink);
    font-size: 22px;
    line-height: 1.2;
  }

  .mobile-nav-primary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 18px 0;
  }

  .mobile-nav-primary a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 13px;
    border: 1px solid var(--ybr-line);
    border-radius: 10px;
    color: #334860;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-primary a i {
    width: 18px;
    color: var(--ybr-blue);
    text-align: center;
  }

  .mobile-nav-primary a.active {
    border-color: #b9d1f5;
    background: var(--ybr-blue-soft);
    color: var(--ybr-blue);
  }

  .mobile-nav-products {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ybr-line);
  }

  .mobile-nav-products > span {
    padding: 17px 2px 8px;
    color: var(--ybr-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .mobile-nav-products a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid #edf1f5;
    color: var(--ybr-ink);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-nav-products a i {
    color: #92a0b1;
  }

  .mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 11px;
    background: var(--ybr-blue);
    color: #fff;
    text-decoration: none;
  }

  .mobile-nav-contact:hover {
    color: #fff;
  }

  .mobile-nav-contact > i {
    width: 38px;
    font-size: 20px;
    text-align: center;
  }

  .mobile-nav-contact span,
  .mobile-nav-contact small,
  .mobile-nav-contact strong {
    display: block;
  }

  .mobile-nav-contact small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
  }

  .mobile-nav-contact strong {
    color: #fff;
    font-size: 16px;
  }

  .page-heading,
  html body .page-heading {
    min-height: 0 !important;
    margin: 16px auto !important;
    padding: 0 !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: var(--ybr-radius) !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  html body.products-page .page-heading,
  html body.product-detail-page .page-heading,
  html body.about-page .page-heading,
  html body.contact-page .page-heading {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
  }

  html body.products-page .page-heading::before,
  html body.products-page .page-heading::after,
  html body.product-detail-page .page-heading::before,
  html body.product-detail-page .page-heading::after,
  html body.about-page .page-heading::before,
  html body.about-page .page-heading::after,
  html body.contact-page .page-heading::before,
  html body.contact-page .page-heading::after {
    display: none !important;
    content: none !important;
  }

  .page-heading .container {
    max-width: none !important;
    padding: 24px 26px !important;
  }

  .page-heading .row {
    margin: 0 !important;
  }

  .page-heading [class*="col-"] {
    padding: 0 !important;
  }

  .page-heading .header-text {
    max-width: 740px;
    margin: 0 !important;
    text-align: left !important;
  }

  .page-heading .header-text h1,
  .page-heading .header-text h2 {
    margin: 0 0 8px !important;
    color: var(--ybr-ink) !important;
    font-size: clamp(28px, 4.6vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
  }

  .page-heading .header-text p {
    max-width: 58ch;
    margin: 0 !important;
    color: var(--ybr-copy) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .page-heading .div-dec {
    display: none !important;
  }

  main,
  section {
    scroll-margin-top: 88px;
  }

  section .section-heading h4,
  section .solutions-heading h2,
  section .partner-heading h4 {
    color: var(--ybr-ink) !important;
    letter-spacing: -0.02em;
  }

  a,
  button,
  [tabindex] {
    -webkit-tap-highlight-color: transparent;
  }

  a:focus-visible,
  button:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid rgba(11, 87, 208, 0.28) !important;
    outline-offset: 3px;
  }

  footer {
    margin: 20px 0 0 !important;
    padding-bottom: 32px !important;
    border-radius: 0 !important;
  }

  .back-to-top {
    right: 18px !important;
    bottom: 22px !important;
    width: 44px !important;
    height: 44px !important;
  }

  /* Homepage: selected task-first direction with genuine field photography. */
  .home-page #top {
    display: none !important;
  }

  .mobile-task-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    width: calc(100% - 32px);
    max-width: 960px;
    min-height: 430px;
    margin: 16px auto;
    overflow: hidden;
    border: 1px solid var(--ybr-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--ybr-shadow);
  }

  .mobile-task-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
  }

  .mobile-task-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--ybr-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .mobile-task-hero h2 {
    margin: 0 0 18px;
    color: var(--ybr-ink);
    font-size: clamp(36px, 5.2vw, 48px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.045em;
  }

  .mobile-task-hero-copy > p {
    max-width: 32em;
    margin: 0;
    color: var(--ybr-copy);
    font-size: 15px;
    line-height: 1.8;
  }

  .mobile-task-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .mobile-task-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-task-primary {
    gap: 10px;
    background: var(--ybr-blue);
    color: #fff;
  }

  .mobile-task-primary:hover {
    color: #fff;
  }

  .mobile-task-secondary {
    border: 1px solid var(--ybr-line);
    background: #fff;
    color: var(--ybr-ink);
  }

  .mobile-task-hero-media {
    position: relative;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: #dce4ec;
  }

  .mobile-task-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: 49% center;
  }

  .mobile-task-hero-media figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(9, 25, 46, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.4;
  }

  .mobile-problem-selector {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    width: calc(100% - 32px);
    max-width: 960px;
    margin: 0 auto 20px;
    padding: 28px;
    border: 1px solid var(--ybr-line);
    border-radius: 16px;
    background: #fff;
  }

  .mobile-problem-heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--ybr-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .mobile-problem-heading h2 {
    margin: 0 0 10px;
    color: var(--ybr-ink);
    font-size: 25px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .mobile-problem-heading p {
    margin: 0;
    color: var(--ybr-muted);
    font-size: 13px;
    line-height: 1.65;
  }

  .mobile-problem-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-problem-list > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    min-height: 76px;
    padding: 12px 13px;
    border: 1px solid var(--ybr-line);
    border-radius: 11px;
    background: #fff;
    color: var(--ybr-ink);
    text-decoration: none;
  }

  .mobile-problem-list > a > span:nth-child(2),
  .mobile-problem-list strong,
  .mobile-problem-list small {
    display: block;
  }

  .mobile-problem-list strong {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-problem-list small {
    overflow: hidden;
    color: var(--ybr-muted);
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-problem-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--ybr-blue-soft);
    color: var(--ybr-blue);
    font-size: 17px;
  }

  .mobile-problem-list > a > i {
    color: #8b98a8;
  }

  .home-page .application-fields,
  .home-page .home-stats,
  .home-page .certifications,
  .home-page .dehumidifier-focus,
  .home-page section.services.product-showcase,
  .home-page section.about-us {
    width: calc(100% - 32px) !important;
    max-width: 960px;
    margin: 20px auto !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .home-page .application-fields {
    padding: 30px 0 !important;
  }

  .home-page .application-fields .section-heading,
  .home-page .certifications .partner-heading,
  .home-page .project-heading {
    max-width: 700px;
    margin: 0 0 24px !important;
    text-align: left !important;
  }

  .home-page .application-fields .section-heading h4,
  .home-page .project-heading h4 {
    font-size: 28px !important;
  }

  .home-page .application-fields .app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
  }

  .home-page .application-fields .app-grid > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .home-page .app-card {
    display: grid !important;
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: stretch;
    min-height: 126px;
    overflow: hidden;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .home-page .app-card .app-image {
    width: 126px !important;
    height: 100% !important;
    min-height: 126px;
    border-radius: 0 !important;
  }

  .home-page .app-card .app-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .home-page .app-card .app-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px !important;
    text-align: left !important;
  }

  .home-page .app-card .app-body h5 {
    margin-bottom: 7px;
    color: var(--ybr-ink);
    font-size: 17px !important;
  }

  .home-page .app-card .app-body p {
    margin: 0;
    color: var(--ybr-copy);
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* Product catalog: readable density and clear category navigation. */
  .products-page .main-services.product-page,
  .product-detail-page .product-detail-section {
    width: calc(100% - 32px) !important;
    max-width: 960px;
    margin: 0 auto 20px !important;
    padding: 26px 0 !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .products-page .product-sidebar {
    position: sticky;
    z-index: 20;
    top: 88px;
    padding: 16px !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .products-page .product-sidebar h4 {
    margin: 0 0 12px !important;
    color: var(--ybr-ink) !important;
    font-size: 16px !important;
  }

  .products-page .category-list {
    display: grid !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .products-page .category-list li {
    margin: 0 !important;
  }

  .products-page .category-list li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 44px !important;
    padding: 0 12px !important;
    border: 1px solid transparent !important;
    border-radius: 9px !important;
    color: #40536a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-decoration: none;
  }

  .products-page .category-list li.active a {
    border-color: #c8daf5 !important;
    background: var(--ybr-blue-soft) !important;
    color: var(--ybr-blue) !important;
  }

  .products-page .group-header {
    margin-bottom: 18px !important;
    padding: 0 4px 16px !important;
    border-bottom: 1px solid var(--ybr-line) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .products-page .group-header h3 {
    margin-bottom: 5px !important;
    color: var(--ybr-ink) !important;
    font-size: 24px !important;
  }

  .products-page .group-header p {
    margin: 0 !important;
    color: var(--ybr-muted) !important;
    font-size: 13px !important;
  }

  .products-page #product-grid {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .products-page .product-card-col,
  .products-page #product-grid .product-card-col {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .products-page .product-card,
  .related-product-col .product-card {
    overflow: hidden;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .products-page .product-card:hover {
    transform: none !important;
    box-shadow: 0 8px 22px rgba(16, 35, 63, 0.08) !important;
  }

  .products-page .product-card .product-card-image,
  .related-product-col .related-product-image {
    background: #f7f9fc !important;
  }

  .products-page .product-card .product-title,
  .related-product-col .product-title {
    color: var(--ybr-ink) !important;
    font-weight: 800 !important;
  }

  .products-page .product-card .product-desc,
  .related-product-col .product-desc {
    color: var(--ybr-copy) !important;
  }

  .products-page .product-card .green-button,
  .products-page .product-card .green-button a,
  .products-page .product-card a.green-button {
    min-height: 44px !important;
    border-radius: 9px !important;
    background: var(--ybr-blue) !important;
    color: #fff !important;
    box-shadow: none !important;
  }

  .products-page .simple-cta {
    width: calc(100% - 32px);
    max-width: 960px;
    margin: 20px auto !important;
    border-radius: 14px !important;
  }

  /* Product detail: product identity comes before decorative marketing. */
  .product-detail-page .page-heading {
    display: none !important;
  }

  html body.product-detail-page .page-heading {
    display: none !important;
  }

  .product-detail-page .product-detail-section {
    margin-top: 16px !important;
  }

  .product-detail-page .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    margin-bottom: 18px !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid var(--ybr-line);
    background: transparent !important;
    font-size: 12px !important;
  }

  .product-detail-page .breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .product-detail-page .product-image-large {
    overflow: hidden;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 12px !important;
    background: #f7f9fc !important;
    box-shadow: none !important;
  }

  .product-detail-page .product-info {
    padding: 8px 4px !important;
  }

  .product-detail-page #product-name {
    margin: 12px 0 10px !important;
    color: var(--ybr-ink) !important;
    font-size: clamp(27px, 4.6vw, 38px) !important;
    font-weight: 850 !important;
    line-height: 1.24 !important;
    letter-spacing: -0.03em;
  }

  .product-detail-page .product-description {
    color: var(--ybr-copy) !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .product-detail-page .meta-card,
  .product-detail-page .detail-card,
  .product-detail-page .specifications-table,
  .product-detail-page .pd-feature-card {
    border-color: var(--ybr-line) !important;
    border-radius: 11px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .product-detail-page .orange-button a,
  .product-detail-page a.orange-button {
    min-height: 46px !important;
    background: var(--ybr-blue) !important;
    color: #fff !important;
  }

  /* Solutions: real field imagery with restrained contrast. */
  .solutions-page .solutions-hero {
    min-height: 460px !important;
    margin: 16px auto !important;
    border-radius: 16px !important;
    background-image: url("../images/home/site-cabinet-yard.webp") !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: none !important;
  }

  .solutions-page .solutions-hero-shade {
    background: rgba(7, 29, 54, 0.74) !important;
  }

  .solutions-page .solutions-hero::after {
    display: none !important;
  }

  .solutions-page .solutions-hero-copy {
    max-width: 680px !important;
    padding: 54px 0 !important;
  }

  .solutions-page .solutions-hero h1 {
    font-size: clamp(36px, 6vw, 54px) !important;
    line-height: 1.13 !important;
    letter-spacing: -0.04em !important;
  }

  .solutions-page .solutions-hero-actions a,
  .solutions-page .solutions-scene-body a,
  .solutions-page .solutions-cta-card a {
    min-height: 46px !important;
    border-radius: 9px !important;
  }

  .solutions-page .solutions-pillars,
  .solutions-page .solutions-scenes,
  .solutions-page .solutions-process,
  .solutions-page .solutions-cta {
    width: calc(100% - 32px);
    max-width: 960px;
    margin: 20px auto !important;
    border-radius: 16px !important;
  }

  .solutions-page .solutions-pillar-grid,
  .solutions-page .solutions-scene-grid,
  .solutions-page .solutions-process-grid {
    gap: 14px !important;
  }

  .solutions-page .solution-scene-card,
  .solutions-page .solutions-pillar-grid article,
  .solutions-page .solutions-process-grid article {
    overflow: hidden;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .solutions-page .solution-scene-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* About: genuine company photography and readable capability blocks. */
  .about-page .top-section,
  .about-page section {
    width: calc(100% - 32px) !important;
    max-width: 960px;
    margin: 20px auto !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .about-page .about-intro-image {
    overflow: hidden;
    border-radius: 12px !important;
  }

  .about-page .about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
  }

  .about-page .about-intro-panel h3 {
    color: var(--ybr-ink) !important;
    font-size: clamp(27px, 4.5vw, 38px) !important;
    line-height: 1.25 !important;
  }

  .about-page .about-intro-panel p {
    color: var(--ybr-copy) !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
  }

  .about-page .about-metric {
    border: 1px solid var(--ybr-line) !important;
    border-radius: 11px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  /* Contact: information first, every direct contact target is touch-safe. */
  .contact-page .contact-cta-section,
  .contact-page .services.py-5 {
    width: calc(100% - 32px) !important;
    max-width: 960px;
    margin: 20px auto !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .contact-page .contact-info-card,
  .contact-page .contact-cta-card {
    border: 1px solid var(--ybr-line) !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .contact-page .contact-info-card a,
  .contact-page .cta-contact-row a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--ybr-blue) !important;
    font-weight: 750 !important;
  }

  .contact-page .contact-cta-card .cta-button {
    min-height: 44px !important;
    border-radius: 9px !important;
    background: var(--ybr-blue) !important;
    color: #fff !important;
  }
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .mobile-bottom-nav {
    display: none !important;
  }

  .page-heading {
    width: calc(100% - 32px) !important;
    max-width: 960px;
  }

  .products-page .main-services.product-page > .container,
  .product-detail-page .product-detail-section > .container {
    max-width: none !important;
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  .products-page .product-card-col,
  .products-page #product-grid .product-card-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .products-page .product-card .product-card-image {
    height: 190px !important;
    min-height: 190px !important;
  }

  .product-detail-page .product-detail-section > .container > .row:nth-of-type(2) {
    display: grid !important;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
    align-items: start;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .product-detail-page .product-detail-section > .container > .row:nth-of-type(2) > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .product-detail-page .product-image-large {
    position: sticky;
    top: 96px;
    min-height: 360px !important;
  }

  .product-detail-page .product-image-large img {
    max-height: 390px !important;
    object-fit: contain !important;
  }

  .product-detail-page .product-info {
    padding-top: 0 !important;
  }

  .solutions-page .solutions-hero {
    width: calc(100% - 32px);
    max-width: 960px;
  }

  .solutions-page .solutions-scene-grid,
  .solutions-page .solutions-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-page .services.py-5 .row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 !important;
  }

  .contact-page .services.py-5 .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 72px;
  }

  body,
  html body.mobile-shell-ready,
  html body.product-detail-page.has-mobile-detail-actions {
    padding-top: 64px !important;
    padding-bottom: calc(86px + env(safe-area-inset-bottom)) !important;
  }

  html body.mobile-shell-ready .mobile-app-top,
  html body .mobile-app-top,
  html body.product-detail-page .mobile-app-top,
  html body.product-detail-page.history-back-available .mobile-app-top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    padding: 8px 12px !important;
  }

  .mobile-brand-mark,
  html body .mobile-brand-mark {
    flex-basis: 40px;
    width: 40px !important;
    height: 40px !important;
  }

  .mobile-brand strong,
  html body .mobile-brand strong {
    font-size: 16px !important;
  }

  .mobile-brand em,
  html body .mobile-brand em {
    font-size: 9px !important;
  }

  .tablet-primary-nav {
    display: none !important;
  }

  .mobile-header-actions {
    grid-column: 2;
    gap: 6px;
  }

  .mobile-search-action,
  .mobile-menu-toggle,
  .mobile-back-action {
    width: 44px !important;
    min-width: 44px;
    height: 44px !important;
    min-height: 44px;
  }

  body.product-detail-page .mobile-app-top,
  body.product-detail-page.history-back-available .mobile-app-top {
    grid-template-columns: 42px minmax(0, 1fr) auto !important;
  }

  body.product-detail-page .mobile-back-action,
  body.product-detail-page.history-back-available .mobile-back-action {
    grid-column: 1 !important;
  }

  body.product-detail-page .mobile-brand,
  body.product-detail-page.history-back-available .mobile-brand {
    grid-column: 2 !important;
  }

  body.product-detail-page .mobile-header-actions,
  body.product-detail-page.history-back-available .mobile-header-actions {
    grid-column: 3 !important;
  }

  body.product-detail-page .mobile-search-action {
    display: none !important;
  }

  html body.product-detail-page .mobile-brand-copy {
    display: block !important;
  }

  html body .mobile-bottom-nav,
  html body.mobile-shell-ready .mobile-bottom-nav {
    position: fixed !important;
    z-index: 10025 !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: 10px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center;
    gap: 8px !important;
    width: auto !important;
    min-height: 64px !important;
    padding: 7px !important;
    border: 1px solid rgba(203, 216, 231, 0.95) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 12px 30px rgba(16, 35, 63, 0.14) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  html body .mobile-bottom-nav > a {
    height: auto !important;
    min-height: 48px !important;
    margin: 0 !important;
  }

  .mobile-dock-copy {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    min-width: 0;
    padding: 0 8px !important;
    border-radius: 9px !important;
    color: var(--ybr-ink) !important;
    text-decoration: none;
  }

  .mobile-dock-copy > i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    border-radius: 8px;
    background: var(--ybr-blue-soft);
    color: var(--ybr-blue);
    font-size: 16px !important;
    line-height: 36px;
    text-align: center;
  }

  .mobile-dock-copy span,
  .mobile-dock-copy strong,
  .mobile-dock-copy small {
    display: block;
    min-width: 0;
    text-align: left;
  }

  .mobile-dock-copy strong {
    margin-bottom: 3px;
    color: var(--ybr-ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-dock-copy small {
    overflow: hidden;
    color: var(--ybr-muted);
    font-size: 9px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock-action {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 116px;
    padding: 0 16px !important;
    border-radius: 9px !important;
    background: var(--ybr-blue) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none;
  }

  .mobile-dock-action i {
    margin: 0 !important;
    font-size: 13px !important;
  }

  .page-heading,
  html body .page-heading {
    width: auto !important;
    margin: 12px !important;
  }

  .page-heading .container {
    padding: 20px 18px !important;
  }

  .page-heading .header-text h1,
  .page-heading .header-text h2 {
    font-size: 26px !important;
  }

  .page-heading .header-text p {
    font-size: 13px !important;
  }

  .mobile-task-hero {
    display: flex;
    flex-direction: column;
    width: auto;
    min-height: 0;
    margin: 12px;
    border-radius: 14px;
  }

  .mobile-task-hero-copy {
    order: 2;
    padding: 24px 20px 25px;
  }

  .mobile-task-eyebrow {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .mobile-task-hero h2 {
    margin-bottom: 13px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.14;
  }

  .mobile-task-hero-copy > p {
    font-size: 13px;
    line-height: 1.7;
  }

  .mobile-task-actions {
    margin-top: 19px;
  }

  .mobile-task-actions a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-task-hero-media {
    order: 1;
    min-height: 212px;
    border-bottom: 1px solid var(--ybr-line);
  }

  .mobile-task-hero-media img {
    height: 212px;
    min-height: 212px;
    object-position: 48% center;
  }

  .mobile-task-hero-media figcaption {
    right: 10px;
    bottom: 10px;
    left: auto;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    font-size: 9px;
  }

  .mobile-problem-selector {
    display: block;
    width: auto;
    margin: 0 12px 16px;
    padding: 20px 14px 14px;
    border-radius: 14px;
  }

  .mobile-problem-heading {
    padding: 0 4px;
  }

  .mobile-problem-heading h2 {
    margin-bottom: 6px;
    font-size: 23px;
  }

  .mobile-problem-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid var(--ybr-line);
  }

  .mobile-problem-list > a {
    min-height: 68px;
    padding: 10px 4px;
    border: 0;
    border-bottom: 1px solid var(--ybr-line);
    border-radius: 0;
  }

  .mobile-problem-list > a:last-child {
    border-bottom: 0;
  }

  .mobile-problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .home-page .application-fields,
  .home-page .home-stats,
  .home-page .certifications,
  .home-page .dehumidifier-focus,
  .home-page section.services.product-showcase,
  .home-page section.about-us {
    width: auto !important;
    margin: 16px 12px !important;
    border-radius: 14px !important;
  }

  .home-page .application-fields {
    padding: 24px 0 !important;
  }

  .home-page .application-fields .section-heading,
  .home-page .certifications .partner-heading,
  .home-page .project-heading {
    margin-bottom: 18px !important;
    text-align: left !important;
  }

  .home-page .application-fields .section-heading h4,
  .home-page .project-heading h4 {
    font-size: 24px !important;
  }

  .home-page .application-fields .app-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .app-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 112px;
  }

  .home-page .app-card .app-image {
    width: 112px !important;
    min-height: 112px;
  }

  .home-page .app-card .app-body {
    padding: 13px !important;
  }

  .products-page .main-services.product-page,
  .product-detail-page .product-detail-section {
    width: auto !important;
    margin: 0 12px 16px !important;
    padding: 18px 0 !important;
    border-radius: 14px !important;
  }

  .products-page .main-services.product-page > .container,
  .product-detail-page .product-detail-section > .container {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .products-page .product-page > .container > .row,
  .products-page .main-services.product-page > .container > .row {
    display: block !important;
    margin: 0 !important;
  }

  .products-page .product-page > .container > .row > [class*="col-"],
  .products-page .main-services.product-page > .container > .row > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .products-page .product-sidebar {
    position: sticky !important;
    top: 64px !important;
    margin: -18px 0 18px !important;
    padding: 12px 0 11px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ybr-line) !important;
    border-radius: 0 !important;
  }

  .products-page .product-sidebar h4 {
    padding: 0 4px;
    font-size: 14px !important;
  }

  .products-page .category-list {
    display: flex !important;
    gap: 8px !important;
    padding: 0 4px 3px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .products-page .category-list-viewport {
    position: relative;
    min-width: 0;
  }

  .products-page .category-list-viewport::after {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 3px;
    width: 42px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 82%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .products-page .category-list-viewport::before {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 5px;
    bottom: 3px;
    display: flex;
    align-items: center;
    padding-left: 8px;
    border-left: 1px solid rgba(24, 78, 128, 0.16);
    color: #6b7f91;
    content: "横滑";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    white-space: nowrap;
  }

  .products-page .category-list-viewport.has-scroll:not(.is-at-end)::before,
  .products-page .category-list-viewport.has-scroll:not(.is-at-end)::after {
    opacity: 1;
  }

  .products-page .category-list::-webkit-scrollbar {
    display: none;
  }

  .products-page .category-list li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .products-page .category-list li a {
    min-height: 44px !important;
    padding: 0 15px !important;
    border: 1px solid var(--ybr-line) !important;
    background: #fff !important;
    white-space: nowrap;
  }

  .products-page .main-services.product-page .product-sidebar ul.category-list li a {
    height: 44px !important;
    min-height: 44px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 44px !important;
  }

  .products-page .category-list li.active a {
    border-color: var(--ybr-blue) !important;
    background: var(--ybr-blue) !important;
    color: #fff !important;
  }

  .products-page .group-header {
    margin: 0 2px 14px !important;
    padding: 0 2px 14px !important;
  }

  .products-page .group-header h3 {
    font-size: 22px !important;
  }

  .products-page #product-grid {
    display: block !important;
    margin: 0 !important;
  }

  .products-page .product-card-col,
  .products-page #product-grid .product-card-col,
  .related-product-col {
    display: block !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
  }

  .products-page .product-card,
  .products-page #product-grid .product-card {
    display: grid !important;
    grid-template-columns: 116px minmax(0, 1fr);
    width: 100%;
    min-height: 168px !important;
  }

  .products-page .product-card .product-card-image,
  .products-page #product-grid .product-card .product-card-image {
    grid-column: 1;
    grid-row: 1;
    width: 116px !important;
    height: 100% !important;
    min-height: 168px !important;
    padding: 10px !important;
    border-right: 1px solid var(--ybr-line);
    border-radius: 0 !important;
  }

  .products-page .product-card .product-card-image img,
  .products-page #product-grid .product-card .product-card-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: 148px !important;
    object-fit: contain !important;
  }

  .products-page .product-card .product-body,
  .products-page #product-grid .product-card .product-body {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 13px !important;
  }

  .products-page .product-card .product-group,
  .products-page #product-grid .product-card .product-group {
    min-height: 0 !important;
    margin-bottom: 5px !important;
    font-size: 9px !important;
  }

  .products-page .product-card .product-title,
  .products-page #product-grid .product-card .product-title {
    min-height: 0 !important;
    margin-bottom: 6px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .products-page .product-card .product-desc,
  .products-page #product-grid .product-card .product-desc {
    min-height: 0 !important;
    margin-bottom: 8px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 2 !important;
  }

  .products-page .product-card .series-model-strip,
  .products-page #product-grid .product-card .series-model-strip {
    min-height: 0 !important;
    max-height: 25px;
    margin-bottom: 8px !important;
    overflow: hidden;
  }

  .products-page .product-card .product-footer .green-button,
  .products-page #product-grid .product-card .product-footer .green-button,
  .products-page .product-card a.green-button,
  .products-page #product-grid .product-card a.green-button {
    width: auto !important;
    min-width: 108px;
    min-height: 44px !important;
    margin-right: 0 !important;
    margin-left: auto !important;
    padding: 0 15px !important;
  }

  .products-page .product-card .product-footer .green-button a,
  .products-page #product-grid .product-card .product-footer .green-button a {
    min-height: 44px !important;
    line-height: 44px !important;
  }

  .products-page .simple-cta {
    width: auto;
    margin: 16px 12px !important;
  }

  .product-detail-page .product-detail-section {
    margin-top: 12px !important;
  }

  .product-detail-page .product-detail-section > .container > .row:nth-of-type(2) {
    display: block !important;
  }

  .product-detail-page .product-detail-section > .container > .row:nth-of-type(2) > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .product-detail-page .product-image-large {
    min-height: 250px !important;
    margin-bottom: 18px !important;
  }

  .product-detail-page .product-image-large img {
    max-height: 270px !important;
    object-fit: contain !important;
  }

  .product-detail-page #product-name {
    font-size: 27px !important;
  }

  .product-detail-page .product-info .buttons,
  .product-detail-page .product-info > .mt-4:last-child {
    display: none !important;
  }

  .solutions-page .solutions-hero {
    width: auto !important;
    min-height: 410px !important;
    margin: 12px !important;
    border-radius: 14px !important;
    background-position: 48% center !important;
  }

  .solutions-page .solutions-hero-copy {
    max-width: none !important;
    padding: 42px 2px !important;
  }

  .solutions-page .solutions-hero h1 {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  .solutions-page .solutions-hero-copy > p {
    max-width: 31em;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }

  .solutions-page .solutions-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .solutions-page .solutions-hero-actions a {
    width: 100% !important;
  }

  .solutions-page .solutions-pillars,
  .solutions-page .solutions-scenes,
  .solutions-page .solutions-process,
  .solutions-page .solutions-cta {
    width: auto;
    margin: 16px 12px !important;
    border-radius: 14px !important;
  }

  .solutions-page .solutions-pillar-grid,
  .solutions-page .solutions-scene-grid,
  .solutions-page .solutions-process-grid {
    grid-template-columns: 1fr !important;
  }

  .solutions-page .solution-scene-image {
    height: 220px !important;
    min-height: 220px !important;
  }

  .about-page .top-section,
  .about-page section {
    width: auto !important;
    margin: 16px 12px !important;
    border-radius: 14px !important;
  }

  .about-page .top-section .row {
    display: block !important;
  }

  .about-page .top-section .row > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .about-page .about-intro-image {
    height: 210px !important;
    margin-bottom: 20px;
  }

  .about-page .about-intro-panel {
    padding: 0 !important;
  }

  .about-page .about-intro-panel h3 {
    font-size: 27px !important;
  }

  .about-page .about-metrics {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-cta-section,
  .contact-page .services.py-5 {
    width: auto !important;
    margin: 16px 12px !important;
    border-radius: 14px !important;
  }

  .contact-page .services.py-5 {
    padding: 14px 0 !important;
  }

  .contact-page .services.py-5 .row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin: 0 !important;
  }

  .contact-page .services.py-5 .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-page .contact-info-card {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 10px 12px !important;
    border-radius: 11px !important;
    text-align: left !important;
  }

  .contact-page .contact-info-card .contact-icon {
    grid-row: 1 / span 2;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
  }

  .contact-page .contact-info-card h4,
  .contact-page .contact-info-card p {
    margin: 0 !important;
    text-align: left !important;
  }

  .contact-page .contact-info-card h4 {
    font-size: 14px !important;
  }

  .contact-page .contact-info-card p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .contact-page .contact-info-card a {
    min-height: 46px;
    margin: -12px 0;
  }

  .contact-page .contact-cta-row {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-cta-card {
    min-height: 0 !important;
  }

  footer {
    padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }

  .back-to-top {
    bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 389.98px) {
  .mobile-brand-copy em {
    display: none !important;
  }

  .mobile-brand strong {
    font-size: 15px !important;
  }

  .mobile-search-action {
    display: none !important;
  }

  .mobile-dock-action {
    min-width: 106px;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .mobile-task-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   Home polish v4 — complete imagery and calmer reading flow
   ========================================================= */

/* This polish pass belongs to the responsive homepage only.
   Preserve the established desktop homepage at 991px and above. */
@media (max-width: 990.98px) {

.home-page {
  --ybr-ink: #0b1f3a;
  --ybr-copy: #526276;
  --ybr-muted: #64748b;
  --ybr-blue: #1769e0;
  --ybr-blue-soft: #edf5ff;
  --ybr-line: #dbe5f0;
  --home-card-border: #dbe5f0;
  --home-card-bg: #ffffff;
  --home-soft-bg: #f4f7fb;
  --home-section-gap: clamp(20px, 3vw, 38px);
}

.home-page #particles-canvas,
.home-page .tech-mouse-glow {
  display: none !important;
}

.home-page .application-fields > .container,
.home-page .home-stats-container,
.home-page .certifications > .container,
.home-page .dehumidifier-focus > .container,
.home-page section.services.product-showcase > .container,
.home-page section.about-us > .container {
  width: min(100% - 40px, 1200px) !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.home-page .application-fields .section-heading p,
.home-page .product-showcase-desc,
.home-page .dehumidifier-focus-copy > p,
.home-page .home-about-content > p {
  color: #526276 !important;
  line-height: 1.78 !important;
}

.home-page .application-fields .section-heading p {
  max-width: 760px;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Application scenarios: every source image is 3:2, so use that ratio. */
.home-page .application-fields {
  padding: clamp(48px, 5vw, 72px) 0 !important;
}

.home-page .application-fields .app-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
}

.home-page .application-fields .app-grid > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

.home-page .application-fields .app-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  border: 1px solid var(--home-card-border) !important;
  border-radius: 14px !important;
  background: var(--home-card-bg) !important;
  box-shadow: 0 10px 24px rgba(20, 48, 85, 0.06) !important;
  transform: none !important;
  opacity: 1 !important;
}

.home-page .application-fields .app-card::before,
.home-page .application-fields .app-card::after {
  display: none !important;
}

.home-page .application-fields .app-image {
  position: static !important;
  inset: auto !important;
  display: block !important;
  flex: none !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 2 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eef3f8 !important;
}

.home-page .application-fields .app-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}

.home-page .application-fields .app-body {
  position: static !important;
  inset: auto !important;
  display: block !important;
  flex: 1 1 auto !important;
  min-height: 112px !important;
  height: auto !important;
  padding: 18px 18px 20px !important;
  background: #fff !important;
  text-align: left !important;
  transform: none !important;
}

.home-page .application-fields .app-card .app-body h5 {
  margin: 0 0 8px !important;
  color: var(--ybr-ink) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  opacity: 1 !important;
  transform: none !important;
}

.home-page .application-fields .app-card .app-body p {
  display: block !important;
  margin: 0 !important;
  overflow: visible !important;
  color: #607086 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  text-overflow: clip !important;
  white-space: normal !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Stats: factual values are immediately visible and receive enough room. */
.home-page .home-stats {
  padding: clamp(42px, 4.5vw, 64px) 0 !important;
}

.home-page .home-stats-heading {
  align-items: end !important;
  gap: 28px !important;
  margin-bottom: 30px !important;
}

.home-page .home-stats-title h2 {
  max-width: 720px;
  margin-bottom: 0 !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.22 !important;
}

.home-page .home-stats-summary {
  max-width: 390px;
  color: #607086 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.home-page .home-stats-card {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--home-card-border) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.home-page .home-stat-item {
  position: relative !important;
  min-height: 158px !important;
  height: auto !important;
  padding: 28px 24px !important;
  border: 0 !important;
  background: #fff !important;
}

.home-page .home-stat-item:not(:last-child)::after {
  position: absolute !important;
  top: 28px !important;
  right: 0 !important;
  bottom: 28px !important;
  display: block !important;
  width: 1px !important;
  height: auto !important;
  background: var(--home-card-border) !important;
  content: "" !important;
}

.home-page .home-stat-number {
  margin-bottom: 8px !important;
  color: var(--ybr-blue) !important;
  font-size: clamp(38px, 3.4vw, 54px) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

.home-page .home-stat-label {
  margin-bottom: 7px !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
}

.home-page .home-stat-item p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* Partners and cases: small screens use stable grids instead of cropped motion. */
.home-page .certifications {
  padding: clamp(46px, 5vw, 72px) 0 !important;
}

.home-page .partner-logo-marquee {
  margin-bottom: clamp(44px, 5vw, 70px) !important;
}

.home-page .partner-logo,
.home-page .partner-logo img {
  transform: none !important;
  filter: none !important;
}

.home-page .project-showcase-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
}

.home-page .project-showcase-row > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

.home-page .project-showcase-row > .col-lg-12 {
  grid-column: 1 / -1 !important;
}

.home-page .project-card {
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  border: 1px solid var(--home-card-border) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(20, 48, 85, 0.06) !important;
  transform: none !important;
  opacity: 1 !important;
}

.home-page .project-card::before,
.home-page .project-card::after,
.home-page .project-image::before,
.home-page .project-image::after,
.home-page .project-body h5::after {
  display: none !important;
  content: none !important;
}

.home-page .project-image {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eef3f8 !important;
}

.home-page .project-image img {
  display: block !important;
  width: calc(100% - 18px) !important;
  height: calc(100% - 18px) !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}

.home-page .project-body {
  min-height: 112px !important;
  height: auto !important;
  padding: 18px !important;
  background: #fff !important;
  text-align: left !important;
}

.home-page .project-body h5 {
  margin: 0 0 7px !important;
  color: var(--ybr-ink) !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
}

.home-page .project-body p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.58 !important;
}

/* Dehumidifier story: retain the comparison, remove ornamental motion. */
.home-page .dehumidifier-focus {
  padding: clamp(38px, 4.5vw, 62px) 0 !important;
}

.home-page .dehumidifier-focus-copy > p {
  max-width: 62ch !important;
}

.home-page .dehumidifier-tech-cta {
  width: fit-content !important;
  min-width: 220px !important;
  height: 54px !important;
  margin-top: 24px !important;
  filter: none !important;
}

.home-page .dehumidifier-tech-spin,
.home-page .dehumidifier-tech-cta-label::before {
  display: none !important;
  animation: none !important;
}

.home-page .dehumidifier-tech-cta-border,
.home-page .dehumidifier-tech-cta-label {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #0d2749 !important;
  box-shadow: none !important;
  color: #fff !important;
}

.home-page .dehumidifier-tech-cta-label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 0 20px !important;
  font-size: 15px !important;
}

.home-page .dehumidifier-compare-panel {
  height: auto !important;
  border: 1px solid var(--home-card-border) !important;
  background: #fff !important;
  box-shadow: none !important;
}

.home-page .dehumidifier-compare-photo {
  background: #f3f6fa !important;
}

.home-page .dehumidifier-compare-photo img {
  object-fit: contain !important;
}

/* Product selection: use one dependable grid at every breakpoint. */
.home-page section.services.product-showcase {
  padding: clamp(42px, 5vw, 68px) 0 !important;
}

.home-page .product-showcase-wrap {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-page .product-showcase-track {
  display: none !important;
}

.home-page .product-showcase-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  column-gap: 28px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 0 28px !important;
  padding: 0 0 26px !important;
  border-bottom: 1px solid var(--home-card-border) !important;
  background: transparent !important;
}

.home-page .product-showcase-intro > span,
.home-page .product-showcase-title,
.home-page .product-showcase-desc {
  grid-column: 1 !important;
}

.home-page .product-showcase-btn {
  grid-column: 2 !important;
  grid-row: 1 / span 3 !important;
  align-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid var(--ybr-blue) !important;
  border-radius: 9px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--ybr-blue) !important;
  font-weight: 800 !important;
}

.home-page .product-showcase-title {
  margin: 8px 0 8px !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.18 !important;
}

.home-page .product-showcase-desc {
  max-width: 680px !important;
  margin: 0 !important;
}

.home-page #product-grid-mobile {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.home-page #product-grid-mobile .pgm-header {
  display: none !important;
}

.home-page #product-grid-mobile .pgm-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.home-page #product-grid-mobile .pgm-cell {
  display: grid !important;
  grid-template-rows: auto minmax(132px, auto) auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 15px !important;
  overflow: hidden !important;
  border: 1px solid var(--home-card-border) !important;
  border-radius: 13px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.home-page #product-grid-mobile .pgm-num {
  position: static !important;
  margin-bottom: 4px !important;
  color: var(--ybr-blue) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
}

.home-page #product-grid-mobile .pgm-img {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #f6f8fb !important;
}

.home-page #product-grid-mobile .pgm-img img {
  display: block !important;
  width: 86% !important;
  height: 86% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}

.home-page #product-grid-mobile .pgm-name {
  margin: 13px 0 2px !important;
  color: var(--ybr-ink) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

/* About and conversion: shorter copy, real image, clear next actions. */
.home-page section.about-us {
  padding: clamp(42px, 5vw, 68px) 0 !important;
}

.home-page section.about-us .row {
  align-items: center !important;
  row-gap: 28px !important;
}

.home-page section.about-us .left-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 80 / 41 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #eef3f8 !important;
}

.home-page section.about-us .left-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.home-page .home-about-content h4 {
  margin: 14px 0 18px !important;
  font-size: clamp(27px, 2.7vw, 40px) !important;
  line-height: 1.25 !important;
}

.home-page .home-about-content > p {
  max-width: 68ch !important;
  margin-bottom: 12px !important;
  font-size: 14px !important;
}

.home-page .home-about-points {
  margin-top: 22px !important;
}

.home-page .home-about-point {
  min-height: 82px !important;
  height: auto !important;
  padding: 15px 16px !important;
  border: 1px solid var(--home-card-border) !important;
  border-radius: 11px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.home-page .home-about-point strong {
  display: block !important;
  margin-bottom: 5px !important;
  color: var(--ybr-ink) !important;
}

.home-page .home-about-point span {
  color: #64748b !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.home-page .home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.home-page .home-about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.home-page .home-about-primary {
  background: var(--ybr-blue);
  color: #fff !important;
}

.home-page .home-about-secondary {
  border: 1px solid var(--home-card-border);
  background: #fff;
  color: var(--ybr-ink) !important;
}

.back-to-top {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border: 0 !important;
  appearance: none !important;
  cursor: pointer !important;
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .home-page .application-fields > .container,
  .home-page .home-stats-container,
  .home-page .certifications > .container,
  .home-page .dehumidifier-focus > .container,
  .home-page section.services.product-showcase > .container,
  .home-page section.about-us > .container {
    width: calc(100% - 32px) !important;
  }

  .home-page .application-fields .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .home-page .application-fields .app-body {
    min-height: 106px !important;
  }

  .home-page .home-stats-heading {
    display: block !important;
  }

  .home-page .home-stats-summary {
    max-width: 620px;
    margin-top: 14px !important;
  }

  .home-page .home-stats-summary br {
    display: none;
  }

  .home-page .home-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page .home-stat-item:nth-child(2)::after,
  .home-page .home-stat-item:last-child::after {
    display: none !important;
  }

  .home-page .home-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-card-border) !important;
  }

  .home-page .partner-logo-row.partner-logo-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
  }

  .home-page .partner-logo-set:first-child {
    display: contents !important;
  }

  .home-page .partner-logo-set[aria-hidden="true"] {
    display: none !important;
  }

  .home-page .partner-logo-cell {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .home-page .partner-logo {
    width: 100% !important;
    height: 92px !important;
    border: 1px solid var(--home-card-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
  }

  .home-page .partner-logo img {
    width: 78% !important;
    height: 68% !important;
    object-fit: contain !important;
  }

  .home-page .project-showcase-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .home-page .project-body {
    min-height: 104px !important;
  }

  .home-page #product-grid-mobile .pgm-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .home-page section.about-us .left-image {
    max-width: 680px !important;
    margin: 0 auto 8px !important;
  }
}

@media (max-width: 767.98px) {
  .home-page .application-fields > .container,
  .home-page .home-stats-container,
  .home-page .certifications > .container,
  .home-page .dehumidifier-focus > .container,
  .home-page section.services.product-showcase > .container,
  .home-page section.about-us > .container {
    width: calc(100% - 24px) !important;
  }

  .home-page .application-fields,
  .home-page .home-stats,
  .home-page .certifications,
  .home-page .dehumidifier-focus,
  .home-page section.services.product-showcase,
  .home-page section.about-us {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .home-page .application-fields .section-heading p {
    margin-bottom: 0 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }

  .home-page .application-fields .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .home-page .application-fields .app-body {
    min-height: 112px !important;
    padding: 12px !important;
  }

  .home-page .application-fields .app-body h5 {
    margin-bottom: 6px !important;
    font-size: 15px !important;
  }

  .home-page .application-fields .app-body p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  .home-page .home-stats-heading {
    display: block !important;
    margin-bottom: 20px !important;
  }

  .home-page .home-stats-title h2 {
    margin-top: 5px !important;
    font-size: 24px !important;
  }

  .home-page .home-stats-summary {
    max-width: none !important;
    margin-top: 10px !important;
    font-size: 13px !important;
  }

  .home-page .home-stats-summary br {
    display: none;
  }

  .home-page .home-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 13px !important;
  }

  .home-page .home-stat-item {
    min-height: 132px !important;
    padding: 20px 16px !important;
  }

  .home-page .home-stat-item:nth-child(2)::after,
  .home-page .home-stat-item:last-child::after {
    display: none !important;
  }

  .home-page .home-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-card-border) !important;
  }

  .home-page .home-stat-number {
    font-size: 34px !important;
  }

  .home-page .home-stat-label {
    font-size: 14px !important;
  }

  .home-page .home-stat-item p {
    font-size: 11px !important;
  }

  .home-page .partner-logo-row.partner-logo-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
  }

  .home-page .partner-logo-set:first-child {
    display: contents !important;
  }

  .home-page .partner-logo-set[aria-hidden="true"] {
    display: none !important;
  }

  .home-page .partner-logo-cell {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .home-page .partner-logo {
    width: 100% !important;
    height: 72px !important;
    border: 1px solid var(--home-card-border) !important;
    border-radius: 10px !important;
    background: #fff !important;
  }

  .home-page .partner-logo img {
    width: 78% !important;
    height: 64% !important;
    object-fit: contain !important;
  }

  .home-page .project-showcase-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .home-page .project-heading {
    grid-column: 1 / -1 !important;
  }

  .home-page .project-image img {
    width: calc(100% - 12px) !important;
    height: calc(100% - 12px) !important;
  }

  .home-page .project-body {
    min-height: 116px !important;
    padding: 13px 12px !important;
  }

  .home-page .project-body h5 {
    font-size: 14px !important;
  }

  .home-page .project-body p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  .home-page .dehumidifier-focus-copy > p {
    font-size: 13px !important;
    line-height: 1.72 !important;
  }

  .home-page .dehumidifier-tech-cta {
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
  }

  .home-page .dehumidifier-compare {
    gap: 10px !important;
  }

  .home-page .dehumidifier-compare-panel {
    padding: 10px !important;
  }

  .home-page .dehumidifier-compare-panel strong {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .home-page .dehumidifier-compare-panel p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  .home-page .product-showcase-intro {
    display: block !important;
    margin-bottom: 18px !important;
    padding-bottom: 18px !important;
  }

  .home-page .product-showcase-title {
    font-size: 27px !important;
  }

  .home-page .product-showcase-desc {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .home-page .product-showcase-btn {
    display: inline-flex !important;
    margin-top: 14px !important;
  }

  .home-page #product-grid-mobile .pgm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .home-page #product-grid-mobile .pgm-cell {
    grid-template-rows: auto minmax(102px, auto) auto !important;
    padding: 11px !important;
  }

  .home-page #product-grid-mobile .pgm-name {
    margin-top: 10px !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  .home-page section.about-us .left-image {
    margin-bottom: 6px !important;
  }

  .home-page .home-about-content h4 {
    margin: 12px 0 14px !important;
    font-size: 25px !important;
  }

  .home-page .home-about-content > p {
    font-size: 13px !important;
    line-height: 1.72 !important;
  }

  .home-page .home-about-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .home-page .home-about-point {
    min-height: 0 !important;
  }

  .home-page .home-about-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-page .home-about-actions a {
    padding: 0 10px;
    font-size: 12px;
  }
}

}

@media (prefers-reduced-motion: reduce) {
  .home-page .partner-logo-track,
  .home-page .app-card,
  .home-page .project-card,
  .home-page .pgm-cell,
  .home-page .dehumidifier-tech-cta-label {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.home-page .home-stats-title h2,
.home-page .product-showcase-title {
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.home-page-title-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .home-page .mobile-task-hero-media {
    align-self: center;
    width: calc(100% - 28px);
    min-height: 0 !important;
    aspect-ratio: 2430 / 1098;
    border-radius: 12px;
  }

  .home-page .mobile-task-hero-media img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

@media (max-width: 767.98px) {
  .home-page .mobile-task-hero-media {
    min-height: 0 !important;
    aspect-ratio: 2430 / 1098;
  }

  .home-page .mobile-task-hero-media img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

.home-page .application-fields .section-heading h2,
.home-page .partner-heading h2,
.home-page .project-heading h2 {
  margin: 12px 0 14px !important;
  color: var(--ybr-ink) !important;
  font-size: clamp(34px, 3.7vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.025em !important;
}

.home-page .home-about-content h2 {
  margin: 14px 0 18px !important;
  color: var(--ybr-ink) !important;
  font-size: clamp(27px, 2.7vw, 40px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.home-page .home-about-copy-mobile {
  display: none;
}

@media (min-width: 991px) {
  .home-page .home-about-content h2 {
    margin: 0 0 40px !important;
    color: #0f172a !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 40px !important;
    letter-spacing: normal !important;
  }

  .home-page .home-about-actions {
    display: none !important;
  }
}

@media (max-width: 990.98px) {
  .home-page .home-about-copy-desktop {
    display: none !important;
  }

  .home-page .home-about-copy-mobile {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .home-page .application-fields .section-heading h2,
  .home-page .partner-heading h2,
  .home-page .project-heading h2 {
    margin-top: 9px !important;
    font-size: 24px !important;
    line-height: 1.24 !important;
    letter-spacing: -0.02em !important;
  }

  .home-page .home-about-content h2 {
    margin: 12px 0 14px !important;
    font-size: 25px !important;
  }
}

.home-page .product-showcase-desc {
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

/* Final lock: show every partner once in a static, uncropped grid. */
.home-page .partner-logo-marquee {
  margin: 0 0 clamp(44px, 5vw, 70px) !important;
  padding: 16px 0 24px !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.home-page .partner-logo-row.partner-logo-track {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  animation: none !important;
  transform: none !important;
}

.home-page .partner-logo-set:first-child {
  display: contents !important;
}

.home-page .partner-logo-set[aria-hidden="true"] {
  display: none !important;
}

.home-page .partner-logo-cell {
  flex-basis: auto !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.home-page .partner-logo {
  width: 100% !important;
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .home-page .partner-logo-row.partner-logo-track {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

@media (max-width: 767.98px) {
  .home-page .partner-logo-row.partner-logo-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }
}

/* Product center: restrained, high-contrast detail action. */
.products-page .product-card .product-title,
.products-page #product-grid .product-card .product-title {
  color: #10243e !important;
  font-weight: 800 !important;
}

.products-page .product-card .product-desc,
.products-page #product-grid .product-card .product-desc {
  color: #42556e !important;
}

.products-page .product-card .product-footer,
.products-page #product-grid .product-card .product-footer {
  display: flex !important;
  justify-content: flex-end;
  margin-top: auto !important;
  padding-top: 6px;
}

.products-page .product-card .product-detail-link,
.products-page #product-grid .product-card .product-detail-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #a9bdd5;
  border-radius: 8px;
  background: #f8fbff;
  color: #153b63 !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.products-page .product-card .product-detail-link i,
.products-page #product-grid .product-card .product-detail-link i {
  color: #315b87;
  font-size: 11px;
  transition: transform 180ms ease;
}

.products-page .product-card .product-detail-link:hover,
.products-page .product-card .product-detail-link:focus-visible,
.products-page #product-grid .product-card .product-detail-link:hover,
.products-page #product-grid .product-card .product-detail-link:focus-visible {
  border-color: #4f7fac;
  background: #edf4fb;
  color: #0d3157 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 104, 0.1);
}

.products-page .product-card .product-detail-link:hover i,
.products-page .product-card .product-detail-link:focus-visible i,
.products-page #product-grid .product-card .product-detail-link:hover i,
.products-page #product-grid .product-card .product-detail-link:focus-visible i {
  transform: translateX(2px);
}

.products-page .product-card .product-detail-link:focus-visible,
.products-page #product-grid .product-card .product-detail-link:focus-visible {
  outline: 2px solid rgba(21, 59, 99, 0.28);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .products-page .product-card .product-detail-link,
  .products-page #product-grid .product-card .product-detail-link {
    min-width: 104px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* ========================================================================== 
   Responsive typography alignment — tablet and mobile only
   Keep desktop (991px and wider) unchanged while matching its centered rhythm.
   ========================================================================== */
@media (max-width: 990.98px) {
  /* Shared page headings, section introductions and conversion areas. */
  .page-heading .header-text,
  .page-heading .header-text h1,
  .page-heading .header-text h2,
  .page-heading .header-text p,
  .section-heading,
  .simple-cta,
  .simple-cta .row,
  .simple-cta [class*="col-"],
  footer .footer-content,
  footer .footer-content > [class*="col-"] {
    text-align: center !important;
  }

  .page-heading .header-text,
  .page-heading .header-text p,
  .section-heading {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .simple-cta .buttons,
  footer .footer-links,
  footer .footer-contact {
    justify-content: center !important;
  }

  /* Homepage: center the reading path from hero through company introduction. */
  .home-page .mobile-task-hero-copy,
  .home-page .mobile-problem-heading,
  .home-page .mobile-problem-list > a,
  .home-page .application-fields .section-heading,
  .home-page .certifications .partner-heading,
  .home-page .project-heading,
  .home-page .application-fields .app-body,
  .home-page .home-stats-heading,
  .home-page .home-stat-item,
  .home-page .project-body,
  .home-page .dehumidifier-tech-copy,
  .home-page .product-showcase-intro,
  .home-page #product-grid-mobile .pgm-cell,
  .home-page #product-grid-mobile .pgm-name,
  .home-page .home-about-content {
    text-align: center !important;
  }

  .home-page .mobile-task-hero-copy > p,
  .home-page .mobile-problem-heading > p,
  .home-page .application-fields .section-heading p,
  .home-page .product-showcase-desc,
  .home-page .home-about-content > p {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-page .mobile-task-actions,
  .home-page .home-about-actions,
  .home-page .dehumidifier-tech-cta,
  .home-page .product-showcase-actions {
    justify-content: center !important;
  }

  /* Product list: center category context and every product card. */
  .products-page .product-sidebar,
  .products-page .category-list,
  .products-page .category-list a,
  .products-page .group-header,
  .products-page .product-group-section-head,
  .products-page .product-card .product-body,
  .products-page #product-grid .product-card .product-body,
  .products-page .product-card .product-group,
  .products-page .product-card .product-title,
  .products-page .product-card .product-desc,
  .products-page .series-model-strip {
    text-align: center !important;
  }

  .products-page .product-card .product-footer,
  .products-page #product-grid .product-card .product-footer {
    justify-content: center !important;
  }

  /* Product detail: center narrative content; specification tables stay left-aligned. */
  .product-detail-page .product-info,
  .product-detail-page .meta-card,
  .product-detail-page .meta-text,
  .product-detail-page .pd-section-head,
  .product-detail-page .pd-feature,
  .product-detail-page .pd-model-group-head,
  .product-detail-page .pd-model-text,
  .product-detail-page .pd-model-name,
  .product-detail-page .pd-model-foot,
  .product-detail-page .scenario-section-title,
  .product-detail-page .scenario-card-info,
  .product-detail-page .related-products-section .section-heading {
    text-align: center !important;
  }

  .product-detail-page .pd-model-tags,
  .product-detail-page .pd-model-foot {
    justify-content: center !important;
  }

  /* Solutions, company and contact pages. */
  .solutions-page .solutions-hero-copy,
  .solutions-page .solutions-value article,
  .solutions-page .solutions-heading,
  .solutions-page .solution-scene-card,
  .solutions-page .solutions-process article,
  .solutions-page .solutions-cta-card,
  .about-page .about-intro-panel,
  .about-page .metric-content,
  .about-page .certification-heading,
  .about-page .certificate-card,
  .about-page .timeline-content,
  .about-page .what-we-do .left-content,
  .about-page .service-item,
  .contact-page .contact-cta-card,
  .contact-page .cta-contact-info,
  .contact-page .cta-contact-row,
  .contact-page .contact-info-card,
  .contact-page .contact-info-card h4,
  .contact-page .contact-info-card p {
    text-align: center !important;
  }

  .solutions-page .solutions-hero-actions,
  .solutions-page .solutions-cta-actions,
  .contact-page .cta-contact-row {
    justify-content: center !important;
  }
}

/* ========================================================================== 
   Solutions imagery — consistent centered cards on tablet and mobile only.
   ========================================================================== */
@media (max-width: 990.98px) {
  .solutions-page .solutions-scene-grid {
    align-items: stretch !important;
    gap: 16px !important;
  }

  .solutions-page .solution-scene-card,
  .solutions-page .solution-scene-card--full-product {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(16, 35, 63, 0.07) !important;
  }

  .solutions-page .solution-scene-image {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: var(--solution-image-bg, #e8edf2) !important;
  }

  .solutions-page .solution-scene-image::after {
    background: linear-gradient(180deg, transparent 72%, rgba(7, 29, 54, 0.12)) !important;
    pointer-events: none;
  }

  .solutions-page .solution-scene-image picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  .solutions-page .solution-scene-image img,
  .solutions-page .solution-scene-card--full-product .solution-scene-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .solutions-page .solution-scene-body {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    padding: 24px 22px 22px !important;
    text-align: center !important;
  }

  .solutions-page .solution-scene-body > span {
    margin-bottom: 8px !important;
  }

  .solutions-page .solution-scene-body h3 {
    margin: 0 0 10px !important;
    font-size: clamp(20px, 2.7vw, 24px) !important;
    line-height: 1.3 !important;
  }

  .solutions-page .solution-scene-body p {
    max-width: 34em;
    margin: 0 auto 16px !important;
    line-height: 1.68 !important;
  }

  .solutions-page .solution-scene-body ul {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
  }

  .solutions-page .solution-scene-body li {
    margin: 0 !important;
    padding: 7px 11px !important;
    border: 1px solid #d9e7f6;
    border-radius: 999px;
    background: #f4f8fd;
    color: #3e536c !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .solutions-page .solution-scene-body li::before {
    display: none !important;
    content: none !important;
  }

  .solutions-page .solution-scene-body > a {
    justify-content: center !important;
    min-width: 150px;
    min-height: 44px !important;
    margin-top: auto !important;
    padding: 0 16px;
    border: 1px solid #b9d1ef;
    border-radius: 9px !important;
    background: #f7faff;
  }
}

@media (min-width: 768px) and (max-width: 990.98px) {
  .solutions-page .solutions-scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  .solutions-page .solutions-scene-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .solutions-page .solution-scene-body {
    padding: 22px 18px 20px !important;
  }
}

/* ========================================================================== 
   Contact information — icon-free centered cards on tablet and mobile only.
   ========================================================================== */
@media (max-width: 990.98px) {
  .contact-page .services.py-5 {
    padding: 18px !important;
    border: 1px solid #dfe8f2 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  }

  .contact-page .services.py-5 .row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  .contact-page .services.py-5 .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-page .contact-info-card {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-height: 156px !important;
    height: 100% !important;
    padding: 28px 20px 22px !important;
    overflow: hidden;
    border: 1px solid #dbe6f2 !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 8px 24px rgba(17, 48, 86, 0.05) !important;
    text-align: center !important;
  }

  .contact-page .contact-info-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: #1769e0;
    content: "";
    transform: translateX(-50%);
  }

  .contact-page .contact-info-card .contact-icon {
    display: none !important;
  }

  .contact-page .contact-info-card h4,
  .contact-page .contact-info-card p {
    width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .contact-page .contact-info-card h4 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    color: #10243e !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em;
  }

  .contact-page .contact-info-card p {
    margin-bottom: 0 !important;
    color: #607086 !important;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }

  .contact-page .contact-info-card a {
    display: inline !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: #0b57d0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: inherit !important;
    text-decoration: none !important;
  }

  .contact-page .contact-info-card a:focus-visible {
    border-radius: 4px;
    outline: 2px solid rgba(11, 87, 208, 0.35);
    outline-offset: 3px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .services.py-5 {
    padding: 12px !important;
  }

  .contact-page .services.py-5 .row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-page .contact-info-card {
    min-height: 122px !important;
    padding: 23px 16px 18px !important;
  }

  .contact-page .contact-info-card h4 {
    margin-bottom: 8px !important;
    font-size: 15px !important;
  }

  .contact-page .contact-info-card p {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }
}

/* ========================================================================== 
   Product detail summary — centered metric cards on tablet and mobile only.
   ========================================================================== */
@media (max-width: 990.98px) {
  .product-detail-page .product-meta {
    width: 100%;
    margin-top: 22px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .product-detail-page .product-meta .meta-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr;
    gap: 10px !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .product-detail-page .product-meta .meta-card {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-width: 0;
    min-height: 104px !important;
    padding: 18px 14px !important;
    overflow: hidden;
    border: 1px solid #dce7f3 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .product-detail-page .product-meta .meta-card::before {
    display: none !important;
    content: none !important;
  }

  .product-detail-page .product-meta .meta-icon {
    display: none !important;
  }

  .product-detail-page .product-meta .meta-text {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    min-width: 0;
    flex-direction: column !important;
    gap: 5px !important;
    text-align: center !important;
  }

  .product-detail-page .product-meta .meta-label {
    display: block !important;
    margin: 0 !important;
    color: #748195 !important;
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.04em;
  }

  .product-detail-page .product-meta .meta-value {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    overflow: hidden;
    color: #10243e !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    overflow-wrap: anywhere;
  }

  .product-detail-page .product-meta .meta-card:nth-child(3) .meta-value,
  .product-detail-page .product-meta .meta-card:nth-child(4) .meta-value {
    color: #10243e !important;
  }
}

@media (max-width: 767.98px) {
  .product-detail-page .product-meta {
    margin-top: 18px !important;
  }

  .product-detail-page .product-meta .meta-grid {
    gap: 8px !important;
  }

  .product-detail-page .product-meta .meta-card {
    min-height: 92px !important;
    padding: 15px 10px !important;
    border-radius: 12px !important;
  }

  .product-detail-page .product-meta .meta-label {
    font-size: 11px !important;
  }

  .product-detail-page .product-meta .meta-value {
    font-size: 14px !important;
  }
}

/* ========================================================================== 
   Product detail breadcrumb — compact context on tablet and mobile only.
   ========================================================================== */
@media (max-width: 990.98px) {
  .product-detail-page nav[aria-label="breadcrumb"] {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .product-detail-page .breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: auto;
    max-width: 100%;
    min-height: 42px;
    margin: 0 auto 18px !important;
    padding: 9px 14px !important;
    overflow: visible !important;
    border: 1px solid #e0e7ef !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #68778b !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    text-align: center;
    white-space: normal !important;
  }

  .product-detail-page .breadcrumb-item,
  .product-detail-page .breadcrumb-item + .breadcrumb-item {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #68778b !important;
    float: none !important;
  }

  .product-detail-page .breadcrumb-item:first-child,
  .product-detail-page .breadcrumb-item:nth-child(2) {
    display: none !important;
  }

  .product-detail-page .breadcrumb-item::before,
  .product-detail-page .breadcrumb-item + .breadcrumb-item::before {
    display: none !important;
    content: none !important;
  }

  .product-detail-page .breadcrumb-item a,
  .product-detail-page .breadcrumb-item a:hover,
  .product-detail-page .breadcrumb-item a:focus {
    display: inline !important;
    min-height: 0 !important;
    padding: 0 !important;
    color: #68778b !important;
    font-weight: 650 !important;
    line-height: inherit !important;
    text-decoration: none !important;
  }

  .product-detail-page #breadcrumb-product-name {
    color: #172b45 !important;
    font-weight: 750 !important;
  }

  .product-detail-page #breadcrumb-product-name::before {
    display: inline !important;
    margin-right: 6px;
    color: #a3afbd;
    content: "·" !important;
  }
}

@media (max-width: 767.98px) {
  .product-detail-page .breadcrumb {
    min-height: 38px;
    margin-bottom: 14px !important;
    padding: 8px 12px !important;
    border-radius: 9px !important;
    font-size: 11px !important;
  }
}

/* ========================================================================== 
   Homepage hero — reuse the desktop carousel on tablet and mobile.
   The existing desktop presentation remains untouched above 991px.
   ========================================================================== */
@media (max-width: 990.98px) {
  .home-page .mobile-task-hero {
    display: none !important;
  }

  .home-page #top.swiper-container {
    display: block !important;
    width: calc(100% - 32px) !important;
    max-width: 960px !important;
    height: clamp(520px, 68vw, 610px) !important;
    min-height: 520px !important;
    margin: 16px auto !important;
    overflow: hidden !important;
    border: 1px solid var(--ybr-line) !important;
    border-radius: 16px !important;
    background: #dfeaf2 !important;
    box-shadow: var(--ybr-shadow) !important;
  }

  .home-page #top .swiper-wrapper,
  .home-page #top .swiper-slide,
  .home-page #top .slide-inner {
    height: 100% !important;
    min-height: 100% !important;
  }

  .home-page #top .slide-inner {
    overflow: hidden !important;
    border-radius: 16px !important;
    background-size: cover !important;
  }

  .home-page #top .slide-inner > .container {
    width: 100% !important;
    max-width: none !important;
    padding: 56px 64px 70px !important;
  }

  .home-page #top .slide-inner .row,
  .home-page #top .slide-inner [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .home-page #top .slide-inner .header-text,
  .home-page #top .hero-slide-wind .header-text {
    position: static !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-align: center !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page #top .hero-tag,
  .home-page #top .hero-slogan {
    width: fit-content !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-page #top .hero-tag {
    min-height: 0 !important;
    margin-bottom: 13px !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #155cae !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    letter-spacing: 0.06em !important;
    line-height: 1.4 !important;
  }

  .home-page #top .hero-slogan {
    display: none !important;
  }

  .home-page #top .slide-inner .header-text h2,
  .home-page #top .slide-inner .header-text p.banner-desc-line {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .home-page #top .slide-inner .header-text h2 {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .home-page #top .slide-inner .header-text h2 span {
    display: block !important;
    margin-bottom: 7px !important;
    color: #58708a !important;
    font-size: 13px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.2em !important;
  }

  .home-page #top .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-primary .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-cyan .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-gold .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-orange .slide-inner .header-text h2 em {
    display: block !important;
    margin: 0 !important;
    color: #10243d !important;
    font-size: clamp(31px, 4.6vw, 38px) !important;
    font-style: normal !important;
    font-weight: 850 !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
    text-shadow: none !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line {
    max-width: 52em !important;
    margin-bottom: 0 !important;
    color: #3f5368 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line:last-of-type {
    display: none !important;
  }

  .home-page #top .slide-inner .header-text .div-dec {
    display: none !important;
  }

  .home-page #top .slide-inner .header-text .buttons {
    gap: 10px !important;
    margin-top: 20px !important;
    justify-content: center !important;
  }

  .home-page #top .slide-inner .header-text .buttons a {
    min-width: 170px !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    border-radius: 11px !important;
    font-size: 13px !important;
    box-shadow: none !important;
  }

  .home-page #top .slide-inner .header-text .buttons a i {
    display: none !important;
  }

  /* Per-image safe zones: keep copy away from the photographed subject. */
  .home-page #top .hero-slide-wind .header-text,
  .home-page #top .hero-slide-substation .header-text,
  .home-page #top .hero-slide-transmission .header-text {
    max-width: 520px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .home-page #top .hero-slide-energy .slide-inner > .container,
  .home-page #top .hero-slide-integrated .slide-inner > .container {
    align-items: flex-start !important;
    padding-top: 48px !important;
  }

  .home-page #top .hero-slide-energy .header-text,
  .home-page #top .hero-slide-integrated .header-text {
    max-width: 520px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .home-page #top .hero-slide-energy .slide-inner::before,
  .home-page #top .hero-slide-integrated .slide-inner::before {
    display: block !important;
    background:
      linear-gradient(180deg, rgba(246, 251, 255, 0.88) 0%, rgba(241, 248, 253, 0.58) 34%, rgba(239, 247, 252, 0.08) 58%, transparent 74%),
      linear-gradient(90deg, rgba(244, 250, 254, 0.24), transparent 62%) !important;
  }

  .home-page #top .hero-slide-switchgear .header-text {
    max-width: 540px !important;
  }

  .home-page #top .swiper-slide-active .header-text {
    animation: ybr-mobile-hero-copy-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .home-page #top .hero-pagination {
    right: 50% !important;
    bottom: 24px !important;
    left: auto !important;
    justify-content: center !important;
    transform: translateX(50%) !important;
  }

  .home-page #top > .swiper-button-prev {
    left: 18px !important;
  }

  .home-page #top > .swiper-button-next {
    right: 18px !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top.swiper-container {
    width: auto !important;
    height: clamp(500px, 138vw, 560px) !important;
    min-height: 500px !important;
    max-height: 560px !important;
    margin: 12px !important;
    border-radius: 14px !important;
  }

  .home-page #top .slide-inner {
    border-radius: 14px !important;
  }

  .home-page #top .slide-inner > .container {
    padding: 42px 12px 54px !important;
  }

  .home-page #top .slide-inner .header-text,
  .home-page #top .hero-slide-wind .header-text {
    max-width: 100% !important;
    padding: 0 8px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page #top .hero-tag {
    max-width: 100% !important;
    margin-bottom: 11px !important;
    padding: 0 !important;
    font-size: 9px !important;
    line-height: 1.45 !important;
  }

  .home-page #top .slide-inner .header-text h2 {
    margin-bottom: 12px !important;
  }

  .home-page #top .slide-inner .header-text h2 span {
    margin-bottom: 6px !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
  }

  .home-page #top .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-primary .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-cyan .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-gold .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-orange .slide-inner .header-text h2 em {
    font-size: clamp(25px, 7vw, 30px) !important;
    line-height: 1.15 !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line {
    max-width: 34em !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line:nth-of-type(n+3) {
    display: none !important;
  }

  .home-page #top .slide-inner .header-text .buttons {
    gap: 8px !important;
    margin-top: 15px !important;
  }

  .home-page #top .slide-inner .header-text .buttons > div {
    width: calc(50% - 4px) !important;
  }

  .home-page #top .slide-inner .header-text .buttons a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding: 0 9px !important;
    font-size: 11px !important;
  }

  .home-page #top .hero-slide-wind .header-text,
  .home-page #top .hero-slide-substation .header-text,
  .home-page #top .hero-slide-switchgear .header-text {
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-page #top .hero-slide-transmission .header-text {
    max-width: 310px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .home-page #top .hero-slide-energy .slide-inner > .container,
  .home-page #top .hero-slide-integrated .slide-inner > .container {
    padding-top: 44px !important;
    padding-bottom: 54px !important;
  }

  .home-page #top .hero-slide-energy .header-text,
  .home-page #top .hero-slide-integrated .header-text {
    max-width: 290px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .home-page #top .hero-slide-energy .header-text h2 em,
  .home-page #top .hero-slide-integrated .header-text h2 em {
    font-size: 26px !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .home-page #top .hero-pagination {
    bottom: 20px !important;
    gap: 7px !important;
  }

  .home-page #top .hero-pagination .swiper-pagination-bullet {
    width: 20px !important;
  }

  .home-page #top .hero-pagination .swiper-pagination-bullet-active {
    width: 30px !important;
  }
}

@keyframes ybr-mobile-hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page #top .swiper-slide-active .header-text {
    animation: none !important;
  }
}

/* Unified tablet/mobile hero rhythm: context, statement, actions. */
@media (max-width: 990.98px) {
  .home-page #top .slide-inner > .container,
  .home-page #top .hero-slide-wind .slide-inner > .container,
  .home-page #top .hero-slide-energy .slide-inner > .container,
  .home-page #top .hero-slide-integrated .slide-inner > .container {
    display: block !important;
    height: 100% !important;
    padding: 0 64px !important;
  }

  .home-page #top .slide-inner .row,
  .home-page #top .slide-inner [class*="col-"] {
    height: 100% !important;
  }

  .home-page #top .slide-inner .header-text,
  .home-page #top .hero-slide-wind .header-text,
  .home-page #top .hero-slide-substation .header-text,
  .home-page #top .hero-slide-energy .header-text,
  .home-page #top .hero-slide-transmission .header-text,
  .home-page #top .hero-slide-integrated .header-text,
  .home-page #top .hero-slide-switchgear .header-text {
    position: relative !important;
    display: block !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 640px !important;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 44px 0 62px !important;
  }

  .home-page #top .hero-tag {
    position: absolute !important;
    top: 44px !important;
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
  }

  .home-page #top .slide-inner .header-text h2 {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
    transform: translateY(-50%) !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line:nth-of-type(2) {
    position: absolute !important;
    right: 0 !important;
    bottom: 126px !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .home-page #top .slide-inner .header-text .buttons {
    position: absolute !important;
    right: 0 !important;
    bottom: 62px !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top .slide-inner > .container,
  .home-page #top .hero-slide-wind .slide-inner > .container,
  .home-page #top .hero-slide-energy .slide-inner > .container,
  .home-page #top .hero-slide-integrated .slide-inner > .container {
    padding: 0 16px !important;
  }

  .home-page #top .slide-inner .header-text,
  .home-page #top .hero-slide-wind .header-text,
  .home-page #top .hero-slide-substation .header-text,
  .home-page #top .hero-slide-energy .header-text,
  .home-page #top .hero-slide-transmission .header-text,
  .home-page #top .hero-slide-integrated .header-text,
  .home-page #top .hero-slide-switchgear .header-text {
    max-width: 100% !important;
    padding: 34px 8px 54px !important;
  }

  .home-page #top .hero-tag {
    top: 34px !important;
    margin-bottom: 0 !important;
  }

  .home-page #top .slide-inner .header-text h2,
  .home-page #top .hero-slide-energy .header-text h2,
  .home-page #top .hero-slide-integrated .header-text h2 {
    margin: 0 auto !important;
  }

  .home-page #top .slide-inner .header-text h2 em,
  .home-page #top .hero-slide-energy .header-text h2 em,
  .home-page #top .hero-slide-integrated .header-text h2 em {
    font-size: clamp(25px, 7vw, 30px) !important;
    line-height: 1.16 !important;
  }

  .home-page #top .slide-inner .header-text .buttons {
    bottom: 54px !important;
    margin: 0 auto !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line:nth-of-type(2) {
    bottom: 112px !important;
  }
}

/* Mobile/tablet hero contrast: stronger brand name and image-aware labels. */
@media (max-width: 990.98px) {
  .home-page #top .slide-inner .header-text h2 span {
    margin-bottom: 10px !important;
    color: #155cae !important;
    font-size: clamp(22px, 3vw, 26px) !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.16em !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.72) !important;
  }

  .home-page #top .hero-tag {
    font-weight: 850 !important;
    text-shadow: 0 1px 3px rgba(4, 22, 42, 0.48) !important;
  }

  .home-page #top .hero-slide-wind .hero-tag,
  .home-page #top .hero-slide-substation .hero-tag,
  .home-page #top .hero-slide-transmission .hero-tag,
  .home-page #top .hero-slide-switchgear .hero-tag {
    color: #fff !important;
  }

  .home-page #top .hero-slide-energy .hero-tag,
  .home-page #top .hero-slide-integrated .hero-tag {
    color: #123e68 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
  }

  .home-page #top .slide-inner .header-text p.banner-desc-line {
    color: #263e55 !important;
    font-weight: 550 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.78) !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top .slide-inner .header-text h2 span {
    margin-bottom: 8px !important;
    font-size: 20px !important;
    letter-spacing: 0.14em !important;
  }

  .home-page #top .hero-tag {
    font-size: 10px !important;
  }
}

/* Wind hero: place the brand statement in the open sky, left of the turbine. */
@media (min-width: 576px) and (max-width: 990.98px) {
  .home-page #top .hero-slide-wind .header-text h2 {
    top: 31% !important;
    right: auto !important;
    left: 2% !important;
    width: 68% !important;
  }

  .home-page #top .hero-slide-wind .header-text p.banner-desc-line:nth-of-type(2) {
    top: 43% !important;
    right: auto !important;
    bottom: auto !important;
    left: 2% !important;
    width: 68% !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons {
    top: 59% !important;
    right: auto !important;
    bottom: auto !important;
    left: 2% !important;
    width: 68% !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top .hero-slide-wind .header-text h2 {
    top: 27% !important;
    right: auto !important;
    left: 0 !important;
    width: 62% !important;
  }

  .home-page #top .hero-slide-wind .header-text h2 em {
    font-size: 24px !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .home-page #top .hero-slide-wind .header-text p.banner-desc-line:nth-of-type(2) {
    top: 40% !important;
    bottom: auto !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons {
    top: 58% !important;
    bottom: auto !important;
  }
}

/* Wind hero responsive copy follows the desktop content stack. */
.home-page #top .hero-desc-responsive {
  display: none;
}

@media (max-width: 990.98px) {
  .home-page #top .hero-slide-wind .hero-desc-desktop {
    display: none !important;
  }

  .home-page #top .hero-slide-wind .hero-desc-responsive {
    display: inline !important;
  }

  .home-page #top .hero-slide-wind .header-text {
    display: grid !important;
    grid-template-columns: 68% 32%;
    grid-auto-rows: max-content;
    align-content: start;
    row-gap: 16px;
    padding-top: 112px !important;
    z-index: 3 !important;
  }

  .home-page #top .hero-slide-wind .header-text h2,
  .home-page #top .hero-slide-wind .header-text p.banner-desc-line:nth-of-type(2),
  .home-page #top .hero-slide-wind .header-text .buttons {
    position: static !important;
    grid-column: 1;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .home-page #top .hero-slide-wind .header-text h2 {
    grid-row: 1;
  }

  .home-page #top .hero-slide-wind .header-text p.banner-desc-line:nth-of-type(2) {
    grid-row: 2;
  }

  .home-page #top .hero-slide-wind .header-text .buttons {
    grid-row: 3;
    z-index: 4 !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top .hero-slide-wind .header-text {
    grid-template-columns: 100%;
    row-gap: 14px;
    padding-top: 88px !important;
  }

  .home-page #top .hero-slide-wind .header-text h2,
  .home-page #top .hero-slide-wind .header-text p.banner-desc-line:nth-of-type(2),
  .home-page #top .hero-slide-wind .header-text .buttons {
    grid-column: 1;
  }

  .home-page #top .hero-slide-wind .header-text h2 em {
    font-size: 26px !important;
    word-break: normal !important;
  }
}

/* Wind hero emphasis: larger brand, single-line statement, paired actions. */
@media (max-width: 990.98px) {
  .home-page #top .hero-slide-wind .header-text h2 span {
    font-size: clamp(28px, 3.8vw, 32px) !important;
    letter-spacing: 0.12em !important;
  }

  .home-page #top .hero-slide-wind .header-text h2 em {
    font-size: clamp(26px, 4.6vw, 36px) !important;
    letter-spacing: -0.045em !important;
    white-space: nowrap !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons > div {
    flex: 1 1 0 !important;
    width: calc(50% - 5px) !important;
    min-width: 0 !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons a {
    width: 100% !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 575.98px) {
  .home-page #top .hero-slide-wind .header-text h2 span {
    font-size: 25px !important;
  }

  .home-page #top .hero-slide-wind .header-text h2 em {
    font-size: clamp(23px, 6.5vw, 26px) !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons {
    gap: 8px !important;
  }

  .home-page #top .hero-slide-wind .header-text .buttons > div {
    width: calc(50% - 4px) !important;
  }
}
