﻿:root {
  --bg-page: #f3f4f6;
  --bg-surface: #ffffff;
  --bg-soft: #edf7f6;
  --bg-mint: #d8f2ef;
  --text-main: #2e3238;
  --text-strong: #1f2937;
  --text-muted: #6b7280;
  --line: #d5dde6;
  --primary: #3f4dcc;
  --primary-dark: #2f3ca6;
  --accent: #5da79e;
  --about-blue: #d4f4f1;
  --radius: 16px;
  --shadow: 0 10px 28px rgba(32, 51, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-main);
  background: var(--bg-page);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.page-main {
  min-height: 50vh;
}

.section {
  padding: 4.2rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  line-height: 1.25;
}

.section-subtitle {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-head {
  margin-bottom: 2rem;
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-toggle-all {
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid #cfd9e4;
  border-radius: 999px;
  background: #fff;
  color: #2f3f54;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.faq-toggle-all:hover {
  background: #f6f9fc;
  border-color: #b9c6d5;
}

.faq-toggle-all:focus-visible {
  outline: 2px solid rgba(63, 77, 204, 0.28);
  outline-offset: 2px;
}

.section-head--left {
  text-align: left;
}

.section-head--center {
  text-align: center;
}

.news-highlight-title {
  margin-top: 0.6rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.news-highlight-title--lg {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.section-subtitle--readable {
  max-width: 44ch;
}

.contact-subhead {
  margin: 0 0 1rem;
  color: #1f2937;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.u-m-0 {
  margin: 0;
}

.u-mt-1 {
  margin-top: 1rem;
}

.anim-hero-item {
  opacity: 0;
  transition: opacity 640ms ease-out, transform 640ms ease-out;
  will-change: opacity, transform;
}

.anim-hero-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.anim-float-down {
  opacity: 1;
  transform: translate3d(0, -48px, 0);
  transition: transform 2800ms ease-out;
  will-change: transform;
}

.anim-float-down.is-visible {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 861px) {
  .hero-anim-pending :is(.hero-banner .hero-logo, .product-page-banner .product-device-thumb, .product-page-banner .container > :first-child) {
    opacity: 0;
    transform: translate3d(-44px, 0, 0);
  }

  .hero-anim-pending :is(.hero-banner .hero-copy, .product-page-banner .product-title-graphic-wrap, .product-page-banner .container > :last-child) {
    opacity: 0;
    transform: translate3d(44px, 0, 0);
  }

  .anim-hero-logo {
    transform: translate3d(-44px, 0, 0);
  }

  .anim-hero-copy {
    transform: translate3d(44px, 0, 0);
    transition-delay: 80ms;
  }

  .anim-card-enter {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 620ms ease-out, transform 620ms ease-out;
    will-change: opacity, transform;
  }

  .anim-card-enter.anim-card-enter-left {
    transform: translate3d(34px, 0, 0) scale(var(--card-enter-scale, 1));
    transition:
      opacity 930ms ease-out var(--card-enter-delay, 0ms),
      transform 930ms ease-out var(--card-enter-delay, 0ms);
  }

  .anim-card-enter.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 860px) {
  .hero-anim-pending :is(.hero-banner .hero-logo, .product-page-banner .product-device-thumb, .product-page-banner .container > :first-child) {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .hero-anim-pending :is(.hero-banner .hero-copy, .product-page-banner .product-title-graphic-wrap, .product-page-banner .container > :last-child) {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  .anim-hero-logo {
    transform: translate3d(0, 22px, 0);
  }

  .anim-hero-copy {
    transform: translate3d(0, 16px, 0);
    transition-delay: 180ms;
  }
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn {
  background: #2e3238;
  color: #fff;
  border: 1px solid #2e3238;
}

.btn:hover {
  transform: translateY(-1px);
  background: #12151a;
}

.btn-outline {
  border: 1px solid #858f9a;
  color: #404854;
  background: #fff;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--primary);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--bg-surface);
  border: 1px solid #e4ebf2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(36, 57, 79, 0.08);
}

.card-body {
  padding: 1rem 1rem 1.2rem;
}

.card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
}

.card-text {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-main :is(.news-highlight img, .feature-row img, .line-subscribe > img, .split img, .card-grid:not(.buy-grid):not(.software-grid):not(.desc-group) .card img) {
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
  .page-main :is(.news-highlight img, .feature-row img, .line-subscribe > img, .split img, .card-grid:not(.buy-grid):not(.software-grid):not(.desc-group) .card img):hover {
    transform: scale(1.02);
    filter: saturate(1.06);
  }

  body[data-page="news"] .page-main .press-hero-media:hover {
    transform: scale(1.015);
    box-shadow: 0 14px 30px rgba(31, 45, 61, 0.16);
  }

  body[data-page="news"] .page-main .line-subscribe .line-qr-link img:hover {
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-page-banner {
    animation: none !important;
  }

  .page-main :is(.news-highlight img, .feature-row img, .line-subscribe > img, .split img, .card-grid:not(.buy-grid):not(.software-grid):not(.desc-group) .card img) {
    transition: none;
  }

  .press-hero-media {
    transition: none !important;
    transform: none !important;
  }

  .anim-hero-item,
  .anim-card-enter,
  .anim-float-down {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 30px;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: #eff4fb;
  color: #4e6178;
  font-size: 0.74rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid #dfe7ef;
  backdrop-filter: blur(10px);
}

.site-header .container {
  width: calc(100% - 2rem);
}

.mini-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  min-height: 62px;
}

.brand-mini {
  margin-right: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mini-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.brand-mini img {
  width: 118px;
  height: auto;
  object-position: left center;
  flex-shrink: 0;
}

.brand-mini-name {
  font-family: "Zen Maru Gothic", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #374151;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  white-space: nowrap;
}

.brand-mini-name-zh,
.brand-mini-name-en {
  white-space: nowrap;
}

.brand-mini-name-en {
  font-size: 0.92em;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a,
.main-nav .nav-parent {
  font-size: 16px;
  font-weight: 600;
  color: #6d7582;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav .nav-parent {
  appearance: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  cursor: default;
  font-family: inherit;
  line-height: inherit;
}

.main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.sub-nav-toggle {
  display: none;
}

.main-nav .nav-item.has-children> :is(a, .nav-parent) {
  position: relative;
  padding-right: 0.95rem;
}

.main-nav .nav-item.has-children> :is(a, .nav-parent)::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #8a93a2;
}

.main-nav .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 0.4rem 0;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 33, 48, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 45;
}

/* 桌機：最右側子選單改為向左展開，避免超出螢幕 */
.main-nav .nav-item.has-children:last-of-type .sub-nav {
  left: auto;
  right: 0;
}

.main-nav .sub-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-bottom: 0;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: #5f6a79;
}

.main-nav .sub-nav a:hover {
  color: var(--primary-dark);
  background: #f5f8ff;
}

.main-nav .nav-item.has-children:hover .sub-nav,
.main-nav .nav-item.has-children:focus-within .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav :is(a, .nav-parent):hover,
.main-nav :is(a, .nav-parent).is-active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid #ccd5df;
  border-radius: 8px;
  background: #fff;
  color: #3f4b5d;
  min-width: 40px;
  min-height: 38px;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #3f4b5d;
  transform-origin: 50% 50%;
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon span:nth-child(1) {
  top: 3px;
}

.nav-toggle-icon span:nth-child(2) {
  top: 8px;
}

.nav-toggle-icon span:nth-child(3) {
  top: 13px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.drawer-close {
  display: none;
}

.nav-overlay {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  background-color: #f4f9f9;
  border-bottom: 1px solid #dfebf7;
  z-index: 0;
  /* Create stacking context for canvas */
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(115, 146, 181, 0.3);
}

.hero-scroll-cue::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(73, 101, 130, 0.7);
  border-bottom: 2px solid rgba(73, 101, 130, 0.7);
  transform: rotate(45deg) translateY(-1px);
}

.hero-scroll-cue:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  min-height: 262px;
}

.hero-copy {
  max-width: 760px;
}

.hero-heading {
  margin: 0;
  color: #2d3137;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.hero-kicker {
  margin: 0;
  color: #2d3137;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.hero-description {
  margin: 0.8rem 0 0;
  color: #526176;
  max-width: 56ch;
  font-size: 0.93rem;
}

.hero-action,
.action-right,
.action-center {
  margin-top: 1.3rem;
}

.hero-action,
.action-right {
  text-align: right;
}

.action-center {
  text-align: center;
}

.hero-logo {
  width: min(320px, 34vw);
}

.hero-banner.compact .hero-banner-inner {
  min-height: 216px;
}

/* 首頁：標題區使用純背景圖，並填滿首屏（扣掉導覽列高度） */
body[data-page="home"] .hero-banner {
  /* Dynamic canvas background */
}

body[data-page="home"] .hero-banner-inner {
  min-height: calc(100vh - 62px);
  min-height: calc(100svh - 62px);
  justify-content: center;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.7rem);
}

body[data-page="home"] .hero-copy {
  max-width: none;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr 1.1fr;
}

.split.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.split.reverse> :first-child {
  order: 2;
}

.split.reverse> :last-child {
  order: 1;
}

.about-intro-card {
  padding: 0.25rem 0;
}

.about-intro-split {
  grid-template-columns: 1fr;
  align-items: center;
}

.about-intro-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-copy .section-subtitle {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.075rem;
}

.about-intro-copy {
  width: 100%;
  margin-inline: 0;
}

.about-intro-split > :first-child img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-intro-card .section-title {
  margin-top: 0;
}

.about-milestone-title {
  margin: 1.2rem 0 0.5rem;
}

.about-agent-device-img {
  width: min(360px, 100%);
  margin-inline: auto;
}

.about-support-img {
  width: 50%;
  margin-inline: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-copy-mobile,
.support-copy-mobile {
  display: none;
}

.about-copy-mobile span,
.support-copy-mobile span {
  display: block;
}

.news-highlight {
  background: var(--bg-surface);
  border: 1px solid #e2eaf1;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: grid;
  gap: 1.2rem;
  align-items: center;
  grid-template-columns: 300px 1fr;
}

.news-highlight img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

body[data-page="home"] .page-main .news-highlight .hero-action {
  text-align: right;
}

.news-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.7rem 0;
}

.info-pill {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: #eff3f8;
  color: #5e6b7f;
}

.wavy-divider {
  width: 100%;
  height: 72px;
  background: url("../../resources/green_wave_background.png") center/cover no-repeat;
}

.kpi-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kpi-item {
  background: #fff;
  border: 1px solid #dfe8f0;
  border-radius: 14px;
  padding: 1.1rem;
}

.kpi-item h3 {
  margin: 0;
  color: #2a3340;
  font-size: 1rem;
}

.kpi-item p {
  margin: 0.6rem 0 0;
  color: #6a7482;
  font-size: 0.88rem;
}

.bg-mint {
  background: linear-gradient(180deg, #def4f2 0%, #d2ece8 100%);
  border-top: 1px solid #cae7e3;
  border-bottom: 1px solid #cae7e3;
}

.bg-blue-gradient {
  background: linear-gradient(180deg, #eaf3ff 0%, #d9e9ff 55%, #c8ddff 100%);
  border-top: 1px solid #c8dbf5;
  border-bottom: 1px solid #c8dbf5;
}

.blue-gradient-strip {
  width: 100%;
  height: 144px;
  background-color: var(--bg-page);
  background-image: linear-gradient(180deg,
      rgba(212, 244, 241, 0) 0%,
      rgba(212, 244, 241, 1) 100%);
}

.bg-blue-solid {
  background-color: var(--about-blue);
  border-top: 0;
  border-bottom: 0;
}

.blue-gradient-strip+.bg-blue-solid {
  margin-top: 0;
}

.bg-soft {
  background: #f8fbfd;
}

.quote-band {
  position: relative;
  margin-top: 1.4rem;
  padding: 1.7rem 1.4rem;
  border-radius: 16px;
  border: 1px solid #e1ebf2;
  background: #fff;
  text-align: center;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.quote-band::before {
  left: 1.2rem;
  top: 0.9rem;
  background-image: url("../../resources/double_quotes_front.png");
}

.quote-band::after {
  right: 1.2rem;
  bottom: 0.9rem;
  background-image: url("../../resources/double_quotes_back.png");
}

.quote-band p {
  margin: 0;
  color: #445365;
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.quote-text-mobile {
  display: none;
}

@media (min-width: 861px) {
  body[data-page="about"] .quote-band {
    margin-top: 5rem;
  }
}

.cta-forest {
  position: relative;
  background: linear-gradient(rgba(21, 50, 60, 0.54), rgba(21, 50, 60, 0.54)), url("../../resources/forest_background.png") center/cover no-repeat;
  color: #ecfffc;
}

.cta-forest .container {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.cta-forest h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
}

.cta-forest p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(233, 253, 247, 0.88);
}

.mission-strip {
  background: linear-gradient(rgba(17, 56, 64, 0.56), rgba(17, 56, 64, 0.56)), url("../../resources/forest_background.png") center/cover no-repeat;
  color: #eafff9;
}

.mission-content {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission-content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
}

.mission-content p {
  margin: 0.8rem 0 0;
  max-width: 48ch;
  font-size: 0.95rem;
}

@media (min-width: 861px) {
  .mission-content p {
    max-width: 76ch;
  }
}

.site-footer {
  margin-top: auto;
}

.footer-main {
  background: #e6e8ea;
  border-top: 1px solid #d4d8dd;
}

.footer-grid {
  padding: 2rem 0;
  display: grid;
  gap: 1.8rem;
  align-items: start;
  grid-template-columns: minmax(130px, 200px) fit-content(320px) fit-content(120px) minmax(180px, 1fr) minmax(110px, 150px);
}

.footer-brand {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.footer-brand img {
  width: min(180px, 100%);
}

.footer-brand-name {
  margin: 0;
  color: #3c4350;
  font-family: "Zen Maru Gothic", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

.footer-col h3 {
  margin: 0.25rem 0 0.45rem;
  font-size: 0.82rem;
  color: #3c4350;
}

.footer-col p {
  margin: 0 0 0.35rem;
  color: #5f6977;
  font-size: 0.8rem;
}

.footer-col a {
  color: #4667a3;
}

.footer-col-location a {
  display: inline-block;
  white-space: nowrap;
}

.footer-qr img {
  width: min(120px, 100%);
  margin-left: auto;
}

.footer-bottom {
  background: #292d32;
  color: #b2bcc8;
}

.footer-bottom .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

.timeline {
  margin: 0;
  padding: 0 0 0 1rem;
}

.timeline li {
  margin: 0.45rem 0;
  color: #5f6775;
  font-size: 0.93rem;
}

.news-list {
  margin: 0;
  padding-left: 1rem;
}

.news-list li {
  margin: 0.7rem 0;
}

.news-list a {
  color: #2f4159;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.press-release {
  background: #fff;
  border: 1px solid #dce6f0;
  border-radius: 20px;
  padding: clamp(1.1rem, 2vw, 1.8rem);
  box-shadow: var(--shadow);
}

.press-meta {
  margin: 0.55rem 0 0;
  color: #68778b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.press-title {
  margin: 0.65rem 0 0;
  color: #1f2d3d;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.press-lead {
  margin: 0.9rem 0 0;
  color: #3e4f64;
  font-size: 0.98rem;
  line-height: 1.85;
}

.press-hero-media {
  margin: 1.2rem 0 0;
  border: 1px solid #e2eaf1;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f9fc;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
}

.press-hero-media-narrow {
  max-width: min(430px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.press-hero-media-workshop {
  max-width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.press-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.press-hero-media-narrow img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.press-hero-media-workshop img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.press-hero-media figcaption {
  margin: 0;
  padding: 0.55rem 0.85rem;
  color: #5f6f82;
  font-size: 0.8rem;
  border-top: 1px solid #e4ebf2;
}

.press-body {
  margin-top: 1.2rem;
}

.press-body h3 {
  margin: 0;
  color: #253a54;
  font-size: 1.06rem;
  font-weight: 800;
}

.press-body h3+* {
  margin-top: 0.7rem;
}

.press-body p {
  margin: 0;
  color: #3a4c61;
  font-size: 0.96rem;
  line-height: 1.9;
}

.workshop-press-release .press-body p + p {
  margin-top: 0.9rem;
}

.press-body p+h3,
.press-body .press-list+h3,
.press-body .press-quote+h3 {
  margin-top: 1.3rem;
}

.press-body p+.press-quote {
  margin-top: 1rem;
}

.press-list {
  margin: 0;
  padding-left: 2rem;
  color: #3b4f67;
}

.press-list li {
  margin: 0.5rem 0;
  line-height: 1.8;
  padding-left: 0.35rem;
}

.press-contact-mobile {
  display: none;
}

.press-scenarios {
  margin-top: 0.7rem;
  padding-left: 0.15rem;
}

.press-scenario {
  margin: 0;
}

.press-scenario + .press-scenario {
  margin-top: 0.9rem;
}

.press-scenario strong {
  display: block;
  font-weight: 800;
  color: #253a54;
  margin-bottom: 0.15rem;
}

.press-scenario span {
  display: block;
  padding-left: 1.4rem;
}

.workshop-feature-title-mobile {
  display: none;
}

.press-quote {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid #7fb7af;
  border-radius: 10px;
  background: #f3fbfa;
  color: #36516d;
  font-weight: 600;
  line-height: 1.85;
}

.press-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e3ebf2;
  display: grid;
  gap: 1rem;
}

.press-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  width: 100%;
}

.press-contact {
  margin: 0;
  color: #5b6c82;
  font-size: 0.9rem;
  min-width: 0;
}

.press-footer-action {
  margin-top: 0;
  margin-left: auto;
  text-align: right;
  justify-self: end;
}

.press-footer-action .btn {
  white-space: nowrap;
}

.press-related-link {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

.press-related-link a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.press-related-link a:hover {
  color: var(--primary-strong);
}

.news-pager-card {
  background: #fff;
  border: 1px solid #dce6f0;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.news-pager-list {
  margin: 0;
}

.news-pager-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.news-page-list {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-nav-btn,
.news-page-btn {
  min-height: 34px;
  padding: 0.25rem 0.7rem;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #fff;
  color: #556274;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.news-page-btn.is-active {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: #fff;
}

.news-nav-btn:disabled,
.news-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.line-subscribe {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  grid-template-columns: 180px 1fr auto;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  padding: 1.2rem;
}

.line-subscribe img {
  width: 150px;
  border-radius: 10px;
}

.line-qr-link,
.contact-qr-link {
  display: inline-flex;
}

body[data-page="news"] .page-main .line-subscribe .line-qr-link img {
  transition: none;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 14px;
  padding: 1rem;
}

.contact-card img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
}

.contact-card .contact-qr-link {
  display: inline-flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  margin: 0;
  font-size: 1rem;
}

.contact-card p {
  margin: 0.3rem 0 0;
  color: #5f6b7a;
  font-size: 0.9rem;
}

.contact-phone-card {
  margin-top: 1rem;
}

.map-wrap {
  background: #fff;
  border: 1px solid #dce5ee;
  border-radius: 16px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
}

.address-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid #e4ebf2;
}

.address-inline p {
  margin: 0;
  font-size: 0.94rem;
  color: #495b72;
}

.product-page-banner {
  background: radial-gradient(
    circle at 30% 22%,
    #abc7b0 0%,
    #86afa7 36%,
    #7ba59c 74%,
    #86afa7 100%
  );
  background-size: 180% 180%;
  animation: product-banner-gradient-shift 12s ease-in-out infinite;
  color: #f8ffff;
  border-bottom: 1px solid #7c9f98;
}

@keyframes product-banner-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.product-page-banner .container {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.4rem;
  position: relative;
}

.product-page-banner .container>div {
  flex: 0 1 640px;
  min-width: 0;
}

.product-page-banner .product-device-thumb {
  flex: 0 0 auto;
  width: 210px;
  height: 210px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.product-title-graphic-wrap {
  margin: 0;
}

.product-title-graphic {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.product-title-graphic--mobile {
  display: none;
}

.product-banner-disclaimer {
  position: absolute;
  right: 0.9rem;
  bottom: 0.25rem;
  margin: 0;
  max-width: min(58%, 640px);
  color: rgba(248, 255, 255, 0.86);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

.product-overview-head {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
}

.product-overview-section .product-overview-head {
  margin-bottom: 0;
}

.product-overview-head .overview-title-mobile {
  display: none;
}

.product-overview-head .overview-subtitle-mobile {
  display: none;
}

.product-overview-head .section-title {
  font-size: clamp(2rem, 4.1vw, 3.2rem);
}

.product-overview-head .section-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.95rem);
  font-weight: 700;
  color: #3b4757;
}

.product-wave-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(rgba(223, 242, 239, 0.84), rgba(223, 242, 239, 0.84)), url("../../resources/green_wave_background.png") center/cover no-repeat;
  border-top: 1px solid #cde6e1;
  border-bottom: 1px solid #cde6e1;
}

.product-wave-section .container {
  width: min(1280px, calc(100% - 4rem));
}

.product-wave-content {
  display: grid;
  gap: 1.2rem 2.4rem;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}

.product-wave-content h2 {
  margin: 0;
  color: #1f2937;
  font-family: "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.35rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.product-wave-content p {
  margin: 1.05rem 0 0;
  color: #253547;
  font-size: clamp(1.7rem, 2.35vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
}

.product-wave-list {
  margin: 0;
  padding-left: 1.45rem;
  color: #253547;
}

.product-wave-list li {
  margin: 1.05rem 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  padding-left: 0.15rem;
}

.product-wave-content> :last-child p:first-child {
  margin-top: 0;
}

.product-wave-content> :last-child {
  padding-left: 0;
}

.product-wave-intro {
  padding-left: 0;
  text-align: right;
  justify-self: end;
}

.product-wave-subtitle {
  margin-top: 0.7rem;
}

.usage-section {
  border-top: 1px solid #dce4ed;
  border-bottom: 1px solid #dce4ed;
}

.usage-head-main .section-subtitle {
  margin-top: 0.55rem;
}

.usage-grid {
  margin-top: 1.2rem;
}

.usage-note {
  margin: 0.35rem 0 0;
  color: #5d78aa;
}

.scenario-section {
  border-top: 1px solid #dce4ed;
  border-bottom: 1px solid #dce4ed;
}

.scenario-head {
  text-align: left;
  margin-bottom: 1.35rem;
}

.scenario-grid {
  margin-top: 0.65rem;
}

.scenario-card {
  background: var(--bg-surface);
  border: 1px solid #e4ebf2;
  box-shadow: 0 6px 16px rgba(36, 57, 79, 0.08);
  overflow: hidden;
}

.scenario-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.scenario-card .card-body {
  padding: 1rem 1rem 1.2rem;
  text-align: left;
}

.scenario-note {
  margin-top: 0.3rem;
}

/* 說明組（desc-group / pattern-desc-group）: 共用卡片說明風格 */
:is(.desc-group, .pattern-desc-group) .card-body {
  text-align: left;
}

:is(.desc-group, .pattern-desc-group) .card img {
  padding: 0;
  background: transparent;
  object-fit: cover;
}

/* 共用：整張卡片放大（說明組、軟體模組、購買項目） */
:is(.desc-group, .pattern-desc-group, .software-grid, .buy-grid) .card,
.u-card-hover-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {

  :is(.desc-group, .pattern-desc-group, .software-grid, .buy-grid) .card:hover,
  .u-card-hover-lift:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 30px rgba(36, 57, 79, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {

  :is(.desc-group, .pattern-desc-group, .software-grid, .buy-grid) .card,
  .u-card-hover-lift {
    transition: none;
  }
}

/* 首頁套用說明組時，維持卡片圖一致比例 */
.home-desc-group .card img {
  aspect-ratio: 4 / 3;
}

/* 方形素材卡片（首頁/關於我們：設備可實現...） */
.square-media-grid .card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
}

/* 產品頁說明組保留原始圖片比例 */
body[data-page="products"] .page-main :is(.desc-group, .pattern-desc-group) .card img {
  aspect-ratio: auto;
  height: auto;
}

.feature-row {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid #dde7ef;
  border-radius: 18px;
  overflow: hidden;
}

.feature-row+.feature-row {
  margin-top: 1rem;
}

.feature-row.reverse> :first-child {
  order: 2;
}

.feature-row.reverse> :last-child {
  order: 1;
}

.feature-row img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.feature-copy {
  padding: 1.2rem 1.3rem;
}

.feature-copy h3 {
  margin: 0;
  color: #243041;
  font-size: 1.1rem;
}

.feature-copy p {
  margin: 0.7rem 0 0;
  color: #627083;
  font-size: 0.9rem;
}

.feature-copy-tech-clean {
  padding: 1.6rem 1.8rem;
}

.feature-copy-tech-clean h3 {
  margin: 0;
  color: #344552;
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.feature-copy-tech-clean-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 1.25rem;
}

.feature-copy-tech-clean-item h4 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.3rem, 2vw, 2.05rem);
  line-height: 1.4;
  font-weight: 800;
}

.feature-copy-tech-clean-item p {
  margin: 0.38rem 0 0 1.55rem;
  color: #24374c;
  font-size: clamp(1.1rem, 1.65vw, 1.7rem);
  line-height: 1.45;
  font-weight: 500;
}

.feature-copy-fast {
  padding: 1.55rem 1.8rem;
}

.feature-copy-fast h3 {
  margin: 0;
  color: #344552;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.feature-copy-fast-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.3rem;
}

.feature-copy-fast-item h4 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.4;
  font-weight: 800;
}

.feature-copy-fast-item p {
  margin: 0.45rem 0 0 1.55rem;
  color: #24374c;
  font-size: clamp(1.08rem, 1.6vw, 1.68rem);
  line-height: 1.45;
  font-weight: 500;
}

.feature-copy-fast-item p+p {
  margin-top: 0.3rem;
}

.feature-row-clean,
.feature-row-fast,
.feature-row-standard,
.feature-row-valve {
  background: #ffffff;
  border: 1px solid #dfe7ef;
  border-radius: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  padding: 1.4rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(34, 44, 60, 0.12);
}

.feature-row-clean img,
.feature-row-fast img,
.feature-row-standard img,
.feature-row-valve img {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(34, 44, 60, 0.16);
}

.feature-copy-standard,
.feature-copy-valve {
  padding: 0.2rem 0.1rem 0.2rem 0.1rem;
}

.feature-copy-standard h3,
.feature-copy-valve h3 {
  margin: 0;
  color: #344552;
  font-size: 34px;
  line-height: 1.24;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.feature-copy-valve h3 span {
  margin-left: 0.45rem;
  font-size: 1em;
  font-weight: 700;
  color: #2f455f;
}

.feature-copy-standard-list,
.feature-copy-valve-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 1rem;
}

.feature-copy-standard-item h4,
.feature-copy-valve-item h4 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.feature-copy-standard-item p,
.feature-copy-valve-item p {
  margin: 0.35rem 0 0 1.35rem;
  color: #24374c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.feature-copy-standard-item p+p,
.feature-copy-valve-item p+p {
  margin-top: 0.22rem;
}

.tech-grid .card img,
.software-grid .card img,
.buy-grid .card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body[data-page="products"] .software-grid .card img {
  object-fit: contain;
  background: #f4f7fb;
  padding: 0.7rem;
}

body[data-page="products"] .software-grid.usage-grid .card img,
body[data-page="products"] .software-grid.scenario-grid .card img {
  background: transparent;
  padding: 0;
}

.buy-grid .card-title {
  font-size: 0.94rem;
}

.purchase-head {
  text-align: left;
  margin-bottom: 1.35rem;
}

.purchase-head .section-subtitle {
  margin-top: 0.55rem;
}

.purchase-action {
  margin-top: 0;
  text-align: left;
}

.purchase-action+.buy-grid {
  margin-top: 2rem;
}

.spec-table-wrap {
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  overflow: hidden;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.product-spec-table tr:nth-child(odd) {
  background: #f8fbff;
}

.product-spec-table th,
.product-spec-table td {
  text-align: left;
  padding: 0.78rem 0.95rem;
  border-bottom: 1px solid #e3eaf2;
  font-size: 0.88rem;
}

.product-spec-table th {
  width: 200px;
  color: #2c394a;
  background: #eef3f9;
}

.product-spec-table .spec-indent {
  display: block;
  padding-left: 1.35em;
}

.faq-list {
  border: 1px solid #dce6f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-item+.faq-item {
  border-top: 1px solid #e6edf3;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: #fff;
  color: #2f3f54;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.9rem 1rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7a8798;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 1rem 1rem;
  color: #667386;
  font-size: 0.88rem;
}

.faq-answer {
  margin: 0;
}

.faq-answer-label {
  font-weight: 700;
}

.faq-panel.is-open {
  display: block;
}

.notice {
  margin-top: 1rem;
  color: #61738a;
  font-size: 0.82rem;
}

@media (min-width: 861px) and (max-width: 1050px) {
  .brand-mini img {
    width: 118px;
  }

  .brand-mini-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    white-space: normal;
    max-width: min(46vw, 210px);
  }

  .brand-mini-name-zh,
  .brand-mini-name-en {
    display: block;
  }

  .main-nav {
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .main-nav a,
  .main-nav .nav-parent {
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 0.01em;
  }

  .faq-head {
    align-items: flex-start;
  }
}

@media (max-width: 1080px) {
  .card-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not([data-page="products"]) .hero-banner-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
  }

  body:not([data-page="products"]) .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  body[data-page="home"] .card-grid.home-scroll-grid,
  .card-grid.pattern-scroll-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 0.9rem) / 1.5);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 transparent;
    padding: 0.2rem 0.2rem 1.8rem;
  }

  body[data-page="home"] .card-grid.home-scroll-grid::-webkit-scrollbar,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar {
    height: 8px;
  }

  body[data-page="home"] .card-grid.home-scroll-grid::-webkit-scrollbar-track,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  body[data-page="home"] .card-grid.home-scroll-grid::-webkit-scrollbar-thumb,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 999px;
  }

  body[data-page="home"] .home-scroll-grid .card,
  .pattern-scroll-grid .card {
    scroll-snap-align: start;
  }

  .news-highlight {
    grid-template-columns: 260px 1fr;
  }

  .footer-grid {
    grid-template-columns: minmax(120px, 180px) minmax(170px, 1fr) minmax(220px, 1fr) minmax(95px, 125px);
    grid-template-areas:
      "brand location contact qr"
      "brand site contact qr";
    column-gap: 1.3rem;
    row-gap: 0.75rem;
    align-items: start;
  }

  .footer-brand {
    grid-area: brand;
  }

  .footer-col-location {
    grid-area: location;
  }

  .footer-col-site {
    grid-area: site;
  }

  .footer-col-contact {
    grid-area: contact;
  }

  .footer-qr {
    grid-area: qr;
    align-self: start;
    justify-self: end;
  }

  body[data-page="products"] .page-main .feature-row.reverse> :first-child {
    order: 1;
  }

  body[data-page="products"] .page-main .feature-row.reverse> :last-child {
    order: 2;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(1120px, calc(100% - 1.7rem));
  }

  .brand-mini img {
    width: 118px;
  }

  .brand-mini-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    max-width: min(46vw, 210px);
    white-space: normal;
  }

  .brand-mini-name-zh,
  .brand-mini-name-en {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 61;
  }

  .main-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    margin-left: 0;
    background: #fff;
    border-left: 1px solid #dce6f0;
    border-radius: 0;
    padding: 0.9rem 0.95rem 1.2rem;
    box-shadow: -16px 0 34px rgba(30, 41, 59, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    visibility: hidden;
    pointer-events: none;
    z-index: 60;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav :is(a, .nav-parent) {
    width: 100%;
    padding: 0.75rem 0.25rem;
    font-size: 16px;
    border-bottom: 1px solid #edf2f7;
    text-align: left;
  }

  .main-nav .nav-item {
    width: 100%;
    display: block;
  }

  .main-nav .nav-item.has-children> :is(a, .nav-parent) {
    display: block;
    padding-right: 2.2rem;
  }

  .main-nav .nav-item.has-children> :is(a, .nav-parent)::after {
    content: "";
  }

  .sub-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.1rem;
    top: 0.56rem;
    border: 0;
    background: transparent;
    color: #6f7d90;
    font-size: 14px;
    line-height: 1;
    min-width: 28px;
    min-height: 28px;
    padding: 0.2rem 0.35rem;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .main-nav .nav-item.has-children.is-open .sub-nav-toggle {
    transform: rotate(180deg);
  }

  .main-nav .sub-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    margin: 0.1rem 0 0.3rem 0.45rem;
    padding: 0 0 0 0.55rem;
    border: 0;
    border-left: 2px solid #e6edf5;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: none;
  }

  .main-nav .nav-item.has-children.is-open .sub-nav {
    display: block;
  }

  .main-nav .sub-nav a {
    width: 100%;
    padding: 0.62rem 0.25rem;
    font-size: 15px;
    color: #6f7d90;
    border-bottom: 1px solid #eef3f8;
    white-space: normal;
  }

  .main-nav :is(a, .nav-parent):hover,
  .main-nav :is(a, .nav-parent).is-active {
    border-bottom-color: #ccd8e8;
  }

  .drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    min-height: 34px;
    padding: 0.25rem 0.75rem;
    border: 1px solid #d2dae4;
    border-radius: 8px;
    background: #fff;
    color: #435064;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0.35rem;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 50;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-banner-inner {
    min-height: 230px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.2rem 0;
  }

  body:not([data-page="products"]) .hero-banner-inner {
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1.8rem 0;
  }

  body:not([data-page="products"]) .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  body[data-page="home"] .hero-banner-inner {
    min-height: calc(100vh - 62px);
    min-height: calc(100svh - 62px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.8rem 0;
  }

  body[data-page="home"] .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-logo {
    width: min(220px, 55vw);
  }

  body:not([data-page="products"]) .hero-logo {
    width: auto;
    max-width: 75vw;
    height: auto;
    max-height: 5cm;
    object-fit: contain;
  }

  body:not([data-page="products"]) .hero-kicker {
    font-size: 20px;
  }

  .split,
  .split.reverse,
  .feature-row,
  .feature-row.reverse,
  .news-highlight,
  .line-subscribe {
    grid-template-columns: 1fr;
  }

  .news-pager-card {
    padding: 0.9rem;
  }

  .news-pager-controls {
    justify-content: center;
  }

  .press-release {
    padding: 1rem;
  }

  .press-title {
    font-size: clamp(1.4rem, 5.8vw, 1.95rem);
  }

  .press-lead,
  .press-body p,
  .press-list li {
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .press-scenario strong,
  .press-scenario span {
    font-size: 0.93rem;
    line-height: 1.8;
  }

  .press-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .press-hero-media-narrow img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .press-hero-media-workshop img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .press-contact-desktop {
    display: none;
  }

  .press-contact-mobile {
    display: inline;
  }

  .workshop-feature-title-desktop {
    display: none;
  }

  .workshop-feature-title-mobile {
    display: inline;
  }

  .press-footer-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.75rem;
  }

  body[data-page="news"] .press-release .press-footer .press-footer-action {
    margin-top: 0;
    width: auto;
    text-align: right;
  }

  .quote-band {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1rem;
  }

  .quote-band::before,
  .quote-band::after {
    position: static;
    display: block;
    width: 30px;
    height: 30px;
  }

  .quote-band::before {
    margin: 0 auto 0 0;
  }

  .quote-band::after {
    margin: 0 0 0 auto;
  }

  .quote-band p {
    text-align: center;
  }

  .quote-text-desktop {
    display: none;
  }

  .quote-text-mobile {
    display: inline;
  }

  body[data-page="news"] .page-main .line-subscribe .line-qr-link {
    justify-self: center;
    margin-inline: auto;
  }

  body[data-page="news"] .page-main .line-subscribe {
    justify-items: center;
    text-align: center;
  }

  body[data-page="news"] .page-main .line-subscribe .section-subtitle {
    text-align: center;
    margin-inline: auto;
  }

  body[data-page="news"] .page-main .news-highlight .hero-action {
    text-align: right;
  }

  body[data-page="news"] .page-main .line-subscribe>.btn {
    justify-self: center;
    margin-inline: auto;
  }

  .kpi-grid,
  .card-grid.cols-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.mobile-scroll-grid,
  .card-grid.pattern-scroll-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 0.9rem) / 1.5);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 transparent;
    padding: 0.2rem 0.2rem 1.8rem;
  }

  .card-grid.mobile-scroll-grid::-webkit-scrollbar,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar {
    height: 8px;
  }

  .card-grid.mobile-scroll-grid::-webkit-scrollbar-track,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .card-grid.mobile-scroll-grid::-webkit-scrollbar-thumb,
  .card-grid.pattern-scroll-grid::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 999px;
  }

  .mobile-scroll-grid .card,
  .pattern-scroll-grid .card {
    scroll-snap-align: start;
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-grid,
  .card-grid.pattern-scroll-grid-buy {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 52%);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 transparent;
    padding: 0.2rem 0.2rem 1.8rem;
  }

  .buy-grid::-webkit-scrollbar,
  .card-grid.pattern-scroll-grid-buy::-webkit-scrollbar {
    height: 8px;
  }

  .buy-grid::-webkit-scrollbar-track,
  .card-grid.pattern-scroll-grid-buy::-webkit-scrollbar-track {
    background: transparent;
  }

  .buy-grid::-webkit-scrollbar-thumb,
  .card-grid.pattern-scroll-grid-buy::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 999px;
  }

  .buy-grid .card,
  .pattern-scroll-grid-buy .card {
    scroll-snap-align: start;
  }

  body[data-page="products"] .page-main .buy-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 transparent;
    padding: 0.2rem 0.2rem 1.8rem;
  }

  body[data-page="products"] .page-main .buy-grid::-webkit-scrollbar {
    height: 8px;
  }

  body[data-page="products"] .page-main .buy-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  body[data-page="products"] .page-main .buy-grid::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 999px;
  }

  body[data-page="products"] .page-main .buy-grid .card {
    flex: 0 0 250px;
    scroll-snap-align: start;
  }

  .purchase-action+.buy-grid {
    margin-top: 1.2rem;
  }

  .feature-row img,
  .news-highlight img {
    min-height: 200px;
  }

  .about-intro-card {
    padding: 0;
  }

  .about-intro-split {
    align-items: start;
  }

  .about-intro-copy {
    width: 100%;
    margin-inline: 0;
  }

  .faq-head {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .faq-toggle-all {
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
  }

  .feature-copy-tech-clean {
    padding: 1.15rem 1rem 1.2rem;
  }

  .feature-copy-tech-clean h3 {
    font-size: clamp(1.65rem, 6.3vw, 2.35rem);
  }

  .feature-copy-tech-clean-list {
    margin-top: 1rem;
    gap: 0.95rem;
  }

  .feature-copy-tech-clean-item h4 {
    font-size: clamp(1.05rem, 4.1vw, 1.3rem);
  }

  .feature-copy-tech-clean-item p {
    margin-left: 0;
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .feature-copy-fast {
    padding: 1.15rem 1rem 1.2rem;
  }

  .feature-copy-fast h3 {
    font-size: clamp(1.65rem, 6.3vw, 2.3rem);
  }

  .feature-copy-fast-list {
    margin-top: 1rem;
    gap: 0.95rem;
  }

  .feature-copy-fast-item h4 {
    font-size: clamp(1.05rem, 4.1vw, 1.3rem);
  }

  .feature-copy-fast-item p {
    margin-left: 0;
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .feature-row-clean img,
  .feature-row-fast img,
  .feature-row-standard img,
  .feature-row-valve img {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    padding: 0;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(34, 44, 60, 0.16);
  }

  body[data-page="products"] .page-main :is(.feature-row-clean, .feature-row-fast, .feature-row-standard, .feature-row-valve)>img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(34, 44, 60, 0.16);
  }

  .feature-row-clean,
  .feature-row-fast,
  .feature-row-standard,
  .feature-row-valve {
    border-radius: 22px;
    padding: 0.95rem;
    box-shadow: 0 10px 22px rgba(34, 44, 60, 0.1);
    max-width: 100%;
  }

  .feature-copy-standard,
  .feature-copy-valve {
    padding: 1.05rem 0.2rem 0.3rem;
  }

  .feature-copy-standard h3,
  .feature-copy-valve h3 {
    font-size: 30px;
  }

  .feature-copy-valve h3 span {
    display: inline-block;
    margin-left: 0.2rem;
    margin-top: 0.2rem;
    font-size: 1em;
  }

  .feature-copy-standard-list,
  .feature-copy-valve-list {
    margin-top: 0.95rem;
    gap: 0.95rem;
  }

  .feature-copy-standard-item h4,
  .feature-copy-valve-item h4 {
    font-size: 15px;
  }

  .feature-copy-standard-item p,
  .feature-copy-valve-item p {
    margin-left: 0;
    font-size: 14px;
  }

  body[data-page="products"] .software-grid .card img {
    padding: 0.5rem;
  }

  .product-page-banner .container {
    min-height: 240px;
  }

  .product-page-banner .product-device-thumb {
    width: 144px;
    height: 144px;
  }

  .product-title-graphic {
    width: min(520px, 100%);
  }

  body[data-page="products"] .product-page-banner .container {
    display: flex;
    gap: 0;
    align-items: center;
    overflow: hidden;
  }

  body[data-page="products"] .product-page-banner .product-device-thumb {
    width: 33.333%;
    flex: 0 0 33.333%;
    height: auto;
    max-width: none;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }

  body[data-page="products"] .product-page-banner .container > div {
    width: 75%;
    flex: 0 0 75%;
    max-width: 75%;
    margin: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(1.5rem);
    margin-left: -8.333%;
    z-index: 2;
  }

  body[data-page="products"] .product-page-banner .product-title-graphic--mobile {
    width: 100%;
    max-width: none;
  }

  .product-title-graphic--desktop {
    display: none;
  }

  .product-title-graphic--mobile {
    display: block;
  }

  .product-banner-disclaimer {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.45rem;
    max-width: none;
    font-size: 0.62rem;
    text-align: center;
  }

  .product-overview-head .section-title {
    font-size: clamp(1.65rem, 6.4vw, 2.25rem);
  }

  .product-overview-head .overview-subtitle-desktop {
    display: none;
  }

  .product-overview-head .overview-subtitle-mobile {
    display: block;
  }

  .product-overview-head .section-subtitle {
    font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  }

  .product-wave-section .container {
    width: min(1120px, calc(100% - 1.7rem));
  }

  .product-wave-content {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .product-wave-intro {
    padding-left: 0;
  }

  .product-wave-content h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .product-wave-content p {
    font-size: clamp(1rem, 4.1vw, 1.2rem);
  }

  .address-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="contact"] .address-inline>.btn {
    align-self: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 0.9rem;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-col-location,
  .footer-col-site,
  .footer-col-contact,
  .footer-qr {
    grid-area: auto;
  }

  .footer-brand,
  .footer-col,
  .footer-qr {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-qr a {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .footer-brand img {
    width: auto;
    max-width: 75vw;
    height: auto;
    max-height: 5cm;
    object-fit: contain;
  }

  .footer-brand-name {
    font-size: 1rem;
    max-width: min(80vw, 260px);
    white-space: normal;
  }

  .footer-col h3 {
    margin: 0 0 0.35rem;
  }

  .footer-col p {
    margin: 0;
  }

  .footer-col p+p {
    margin-top: 0.35rem;
  }

  .footer-qr img {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="about"] .hero-action {
    text-align: right;
  }

  body[data-page="about"] .about-mobile-center {
    text-align: center;
  }

  body[data-page="about"] .about-mobile-center .hero-action {
    text-align: center;
  }

  body[data-page="about"] .about-copy-desktop,
  body[data-page="about"] .support-copy-desktop {
    display: none;
  }

  body[data-page="about"] .about-copy-mobile,
  body[data-page="about"] .support-copy-mobile {
    display: block;
  }

  body[data-page="about"] .support-contact-action {
    display: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 3rem 0;
  }

  .hero-heading {
    font-size: 2.15rem;
  }

  .card-grid.cols-2,
  .card-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .buy-grid,
  .card-grid.pattern-scroll-grid-buy {
    grid-auto-columns: minmax(230px, 74%);
    gap: 0.8rem;
  }

  body[data-page="products"] .page-main .buy-grid .card {
    flex-basis: 74%;
    min-width: 230px;
  }

  .news-highlight {
    padding: 0.8rem;
  }

  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table tr {
    display: block;
  }

  .product-spec-table th {
    border-bottom: 0;
    padding-bottom: 0.3rem;
  }

  .product-spec-table td {
    padding-top: 0.1rem;
  }
}

/* Product page typography system */
body[data-page="products"] .page-main h2.section-title,
body[data-page="products"] .page-main .feature-copy h3,
body[data-page="products"] .page-main .product-wave-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

body[data-page="products"] .page-main .section-subtitle,
body[data-page="products"] .page-main .card-title,
body[data-page="products"] .page-main .feature-copy h4,
body[data-page="products"] .page-main .faq-trigger {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

body[data-page="products"] .page-main p,
body[data-page="products"] .page-main .card-text,
body[data-page="products"] .page-main .feature-copy p,
body[data-page="products"] .page-main .faq-panel,
body[data-page="products"] .page-main .notice {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

body[data-page="products"] .page-main .feature-copy-valve h3 span {
  font-size: 18px;
  font-weight: 700;
}

body[data-page="products"] .page-main .product-wave-subtitle {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

/* Product page final responsive override layer (must stay below <=860 / <=620 blocks) */
@media (max-width: 1080px) {
  body[data-page="products"] .page-main .product-overview-head .overview-title-desktop {
    display: none;
  }

  body[data-page="products"] .page-main .product-overview-head .overview-title-mobile {
    display: inline;
  }

  body[data-page="products"] .page-main .product-wave-content {
    text-align: center;
    justify-items: center;
  }

  body[data-page="products"] .page-main .product-wave-intro,
  body[data-page="products"] .page-main .product-wave-content> :last-child {
    text-align: center;
    justify-self: center;
    padding-left: 0;
  }

  body[data-page="products"] .page-main .product-wave-content > :last-child {
    text-align: left;
    justify-self: stretch;
    width: 100%;
  }

  body[data-page="products"] .page-main .product-wave-list {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  body[data-page="products"] .page-main .product-wave-list li {
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
  }

  body[data-page="products"] .page-main .software-grid,
  body[data-page="products"] .page-main .usage-grid,
  body[data-page="products"] .page-main .scenario-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 0.9rem) / 1.5);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 transparent;
    padding: 0.2rem 0.2rem 1.8rem;
  }

  body[data-page="products"] .page-main .software-grid::-webkit-scrollbar,
  body[data-page="products"] .page-main .usage-grid::-webkit-scrollbar,
  body[data-page="products"] .page-main .scenario-grid::-webkit-scrollbar {
    height: 8px;
  }

  body[data-page="products"] .page-main .software-grid::-webkit-scrollbar-track,
  body[data-page="products"] .page-main .usage-grid::-webkit-scrollbar-track,
  body[data-page="products"] .page-main .scenario-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  body[data-page="products"] .page-main .software-grid::-webkit-scrollbar-thumb,
  body[data-page="products"] .page-main .usage-grid::-webkit-scrollbar-thumb,
  body[data-page="products"] .page-main .scenario-grid::-webkit-scrollbar-thumb {
    background: #4B5563;
    border-radius: 999px;
  }

  body[data-page="products"] .page-main .software-grid .card,
  body[data-page="products"] .page-main .usage-grid .card,
  body[data-page="products"] .page-main .scenario-grid .card {
    scroll-snap-align: start;
  }

  body[data-page="products"] .page-main .feature-row .feature-copy h4,
  body[data-page="products"] .page-main .feature-row .feature-copy p {
    padding-left: 1rem;
  }
}

