:root {
  --ink: #15222b;
  --muted: #65727d;
  --line: #dfe7e4;
  --paper: #ffffff;
  --mist: #f4f8f6;
  --teal: #127c78;
  --teal-dark: #075a57;
  --coral: #d8674b;
  --gold: #b58a35;
  --green: #5f8f57;
  --shadow: 0 18px 45px rgba(21, 34, 43, 0.12);
  --shadow-soft: 0 10px 28px rgba(21, 34, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.core-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 8px;
}

.hero-categories .core-category-card {
  padding: 16px;
  border: 1px solid rgba(18, 124, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-categories .core-category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.core-category-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.core-category-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.core-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.endorsement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.endorsement-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  object-fit: contain;
}

.endorsement-icon-placeholder {
  background: var(--mist);
  border-radius: 50%;
}

.endorsement-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 16px;
}

.endorsement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  background: linear-gradient(90deg, #0f6662, #127c78);
  color: #fff;
}

.conversion-item {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 186px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
}

.conversion-item-phone {
  align-content: center;
}

.conversion-strip .conversion-item span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.conversion-strip .conversion-item strong,
.conversion-strip .conversion-item a {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.conversion-item-phone strong,
.conversion-item-phone a {
  font-size: 22px;
}

.conversion-qr {
  display: block;
  width: 118px;
  height: 118px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  padding: 8px;
}

.featured-product-carousel {
  position: relative;
}

.featured-product-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.featured-product-track {
  display: flex;
  transition: transform 500ms ease;
}

.featured-product-slide {
  display: grid;
  min-width: 100%;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.featured-product-image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  background: var(--mist);
}

.featured-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.featured-product-copy span {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.featured-product-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.featured-product-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.featured-product-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-product-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.featured-product-points li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.featured-product-copy .primary-button {
  align-self: flex-start;
  margin-top: 18px;
}

.home-help-section {
  background: #fff;
}

.home-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-help-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
}

.compact-heading {
  margin-bottom: 20px;
}

.home-help-panel > .compact-heading {
  min-height: 92px;
}

.compact-heading h2 {
  font-size: 26px;
}

.home-help-panel > .compact-heading h2 {
  margin-bottom: 0;
}

.home-question-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
}

.home-question-title-row {
  min-width: 0;
}

.home-question-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-question-title-line h2 {
  margin-bottom: 0;
}

.home-question-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.home-question-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
}

.home-question-filters button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.home-question-filters button.active,
.home-question-filters button:hover {
  border-color: rgba(18, 124, 120, 0.32);
  color: var(--teal-dark);
  background: var(--mist);
}

.home-help-list {
  display: grid;
  gap: 12px;
}

.home-help-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(31, 62, 74, 0.1);
  border-radius: 8px;
  background: #fff;
  color: inherit;
}

a.home-help-item {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a.home-help-item:hover {
  border-color: rgba(22, 126, 121, 0.35);
  box-shadow: 0 14px 28px rgba(21, 34, 43, 0.08);
  transform: translateY(-2px);
}

.home-help-item span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.home-help-item strong {
  font-size: 17px;
}

.home-help-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-help-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.home-help-pagination button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.home-help-pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.home-help-pagination span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.list-pagination button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.list-pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.list-pagination span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-consult-button {
  flex: 0 0 auto;
  width: fit-content;
  margin-top: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 90, 87, 0.74);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-button-prev {
  left: 16px;
}

.carousel-button-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(8, 90, 83, 0.45);
  border-radius: 999px;
  background: #dbe9e6;
  cursor: pointer;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--teal);
  border-color: var(--teal);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-tabs a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.category-tabs a.active,
.category-tabs a:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.faq-list-wide,
.faq-item {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.product-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.qr-item {
  margin: 0;
  text-align: center;
}

.qr-item img,
.qr-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border: 1px dashed var(--teal);
  border-radius: 8px;
  object-fit: cover;
  background: #f8fbfa;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-weight: 800;
}

.qr-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.map-embed,
.map-placeholder {
  width: 100%;
  min-height: 260px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.map-embed {
  border: 0;
}

.map-placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.map-placeholder .muted {
  color: var(--muted);
  font-size: 14px;
}

.empty-note {
  color: var(--muted);
  font-size: 16px;
}

.lead-context-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #e8f4f1;
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark small {
  color: var(--muted);
  font-size: 12px;
}

.nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  margin-left: auto;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
}

.nav-item:hover,
.nav-item:focus-within {
  z-index: 90;
}

.nav a,
.nav-link,
.nav-dropdown a {
  color: #34424c;
  font-size: 15px;
  white-space: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 6px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-item-main {
  display: flex;
  align-items: center;
}

.nav-submenu-toggle {
  display: none;
}

.has-dropdown > .nav-link::after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 100;
  display: grid;
  gap: 2px;
  justify-items: stretch;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(31, 62, 74, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(21, 34, 43, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  transition: color 160ms ease, background 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a:hover {
  background: var(--mist);
  color: var(--teal);
}

.nav a:hover,
.nav-link.active,
.footer-nav a:hover {
  color: var(--teal);
}

.nav-link:hover {
  background: var(--mist);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.primary-button {
  color: #fff;
  background: var(--teal);
}

.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  color: var(--teal-dark);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #eef5f3;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-image.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 8vw, 112px);
  bottom: 74px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(8, 90, 83, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.hero-dots button.active {
  width: 28px;
  background: var(--teal);
  border-color: var(--teal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 248, 246, 0.96) 0%, rgba(244, 248, 246, 0.78) 42%, rgba(244, 248, 246, 0.15) 74%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 112px);
  padding: 72px 0 118px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 520px;
  color: #31414b;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 84px clamp(20px, 6vw, 84px);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 104px clamp(20px, 6vw, 84px) 58px;
  color: #fff;
  background: #22343c;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(16, 39, 45, 0.88) 0%, rgba(16, 39, 45, 0.7) 46%, rgba(16, 39, 45, 0.22) 100%),
    var(--page-hero-image, linear-gradient(90deg, #27474c, #4d716f));
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #a8efe4;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 72px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.band {
  background: var(--mist);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: 28px;
  background: #fff;
}

.stats span,
.product-card span,
.article-card span {
  color: var(--muted);
  font-size: 13px;
}

.stats strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.category-grid,
.product-grid,
.solution-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-catalog-section {
  background: #fff;
}

.product-category-list {
  display: grid;
  gap: 34px;
}

.product-category-section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.product-category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-category-header h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.product-category-header p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.product-category-header > span {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-list {
  grid-template-columns: 1fr;
}

.category-card,
.product-card,
.solution-card,
.article-card,
.brand-panel,
.lead-form,
.contact-card,
.partner-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(21, 34, 43, 0.02);
}

.category-card,
.product-card,
.solution-card,
.article-card {
  padding: 22px;
}

.category-card {
  border-left: 4px solid var(--teal);
}

.category-card:nth-child(2) {
  border-left-color: var(--coral);
}

.category-card:nth-child(3) {
  border-left-color: var(--green);
}

.category-card:nth-child(4) {
  border-left-color: var(--gold);
}

.category-card ul,
.product-card ul,
.solution-card ul,
.brand-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.category-card li a {
  color: var(--teal-dark);
  font-weight: 700;
}

.category-card li a:hover {
  color: var(--coral);
}

.product-card {
  min-height: 332px;
  display: flex;
  flex-direction: column;
}

.clickable-card {
  cursor: pointer;
}

.product-card h3 a:hover {
  color: var(--teal);
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--mist);
}

.card-link {
  align-self: flex-start;
  margin-top: 16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badges b {
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e5f3f1;
  font-size: 12px;
}

.product-card .compliance-note {
  margin-top: auto;
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.solution-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--teal);
}

.solution-list .solution-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 28px;
}

.solution-list .solution-card h3,
.solution-list .solution-card p {
  margin: 0;
}

.solution-card:nth-child(2) {
  border-left-color: var(--coral);
}

.solution-card:nth-child(3) {
  border-left-color: var(--green);
}

.solution-card:nth-child(4) {
  border-left-color: var(--gold);
}

.solution-card .card-link {
  margin-top: auto;
}

.solution-card-sections {
  display: grid;
  gap: 12px;
  width: 100%;
}

.solution-card-sections section {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.solution-card em {
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
}

.solution-card-sections em {
  font-size: 13px;
}

.solution-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.solution-card-actions .card-link {
  margin-top: 0;
}

.solution-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.solution-card h3 a:hover {
  color: var(--teal);
}

.solution-meta {
  color: var(--muted);
  font-size: 14px;
}

.solution-detail {
  display: grid;
  gap: 28px;
}

.solution-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
}

.solution-overview-grid-single {
  grid-template-columns: 1fr;
}

.solution-insight-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.solution-insight-card-primary {
  align-content: start;
  background: linear-gradient(145deg, #eef7f5 0%, #fff 68%);
  border-left: 4px solid var(--teal);
}

.solution-insight-card .solution-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.solution-insight-card:not(.solution-insight-card-primary) .solution-index {
  color: var(--teal-dark);
  background: var(--mist);
}

.solution-insight-card h2 {
  margin-bottom: 10px;
}

.solution-lead-panel {
  width: 100%;
}

.solution-lead-panel .lead-form {
  gap: 10px;
  padding: 18px;
  box-shadow: none;
}

.solution-lead-panel .lead-form h3 {
  margin-bottom: 2px;
}

.solution-lead-panel .lead-form input,
.solution-lead-panel .lead-form select {
  min-height: 40px;
  padding: 8px 10px;
}

.solution-lead-panel .lead-form textarea {
  min-height: 86px;
  padding: 8px 10px;
}

.solution-lead-panel .lead-form .primary-button {
  min-height: 40px;
  margin-top: 4px;
}

.solution-lead-panel .form-status {
  min-height: 20px;
  font-size: 13px;
}

.solution-copy {
  margin: 0;
  font-size: 17px;
  color: #31414b;
  line-height: 1.8;
}

.solution-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
  margin-bottom: 18px;
}

.solution-count {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 13px;
  font-weight: 800;
}

.solution-combo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.solution-combo-list a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mist);
  font-weight: 700;
}

.solution-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-product-card {
  display: grid;
  gap: 11px;
  align-content: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.solution-product-media {
  display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  overflow: hidden;
}

.solution-product-media img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.solution-product-media:hover img {
  transform: scale(1.03);
}

.solution-product-card span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.solution-product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.solution-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.solution-product-card .card-link {
  align-self: end;
  justify-self: start;
  margin-top: 4px;
}

.brand-layout,
.partner-layout,
.contact-layout,
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
}

.product-detail {
  display: grid;
  gap: 22px;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-overview-info {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.detail-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-info-card {
  display: grid;
  align-content: start;
  padding: 22px 24px;
}

.product-info-card .section-heading {
  margin-bottom: 14px;
}

.product-info-card .section-heading h2 {
  font-size: 24px;
}

.product-media-block {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.product-media-block .section-heading {
  margin-bottom: 4px;
}

.product-media-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-media-viewer {
  width: 100%;
}

.product-media-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(136px, 15vw, 176px);
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.product-media-stage--solo {
  max-width: none;
}

.product-media-stage--solo .product-media-main {
  box-shadow: var(--shadow);
}

.product-media-main {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fafcfb 0%, var(--mist) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  contain: layout style paint;
}

.product-overview-media .product-media-stage {
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-overview-media .product-media-main {
  min-height: 520px;
}

.product-overview-media .product-gallery-thumbs {
  flex: none;
  flex-direction: row;
  width: 100%;
  max-height: none;
  padding: 0 0 6px;
  overflow-x: hidden;
  overflow-y: hidden;
  gap: 10px;
}

.product-overview-media .product-gallery-rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.product-overview-media .thumb-page-button {
  width: 34px;
  height: clamp(78px, 8vw, 118px);
  min-height: 0;
  flex: 0 0 auto;
}

.product-overview-media .thumb-page-button-prev::before {
  transform: rotate(135deg);
}

.product-overview-media .thumb-page-button-next::before {
  transform: rotate(-45deg);
}

.product-overview-media .gallery-thumb {
  flex: 1 1 0;
  width: auto;
  height: clamp(78px, 8vw, 118px);
  min-width: 0;
}

.product-main-image {
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.28s ease;
}

.product-main-image.is-changing {
  opacity: 0.55;
}

.product-media-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(21, 34, 43, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.product-gallery-rail {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-self: stretch;
  width: clamp(136px, 15vw, 176px);
}

.thumb-page-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fff;
  cursor: pointer;
}

.thumb-page-button::before {
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
}

.thumb-page-button-prev::before {
  transform: rotate(-135deg);
}

.thumb-page-button-next::before {
  transform: rotate(45deg);
}

.thumb-page-button:disabled {
  cursor: default;
  opacity: 0.36;
}

.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(136px, 15vw, 176px);
  max-height: 100%;
  padding: 2px 4px 2px 0;
  overflow-y: hidden;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}

.product-gallery-thumbs::-webkit-scrollbar {
  width: 6px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(18, 124, 120, 0.35);
}

.gallery-thumb {
  position: relative;
  flex: 0 0 clamp(124px, 14vw, 164px);
  width: clamp(124px, 14vw, 164px);
  height: clamp(124px, 14vw, 164px);
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(18, 124, 120, 0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 8px 20px rgba(18, 124, 120, 0.12);
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  background: rgba(18, 124, 120, 0.06);
}

.gallery-thumb.is-active {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 1px var(--teal-dark), 0 10px 24px rgba(7, 90, 87, 0.16);
}

.gallery-thumb.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--teal);
  z-index: 1;
}

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

.product-media-main--placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: var(--teal-dark);
  box-shadow: none;
}

.product-media-main--placeholder span {
  font-size: 22px;
  font-weight: 900;
}

.product-media-main--placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-gallery-thumbs--placeholder {
  pointer-events: none;
}

.product-gallery-thumbs--placeholder .gallery-placeholder {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  background: var(--mist);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.product-gallery img,
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  background: var(--mist);
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.feature-list,
.spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.product-detail .tutorial-content {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 18px;
  border-radius: 8px;
  background: var(--mist);
}

.faq-list h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--mist);
}

.contact-strip h2,
.contact-strip p {
  margin-bottom: 0;
}

.solution-contact-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 400px);
  align-items: start;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #f4f8f6 0%, #fff 100%);
}

.solution-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 8px 0;
}

.solution-contact-strip h2 {
  margin-bottom: 8px;
}

.solution-contact-strip .solution-copy {
  max-width: 620px;
  margin-bottom: 14px;
}

.solution-contact-button {
  margin-top: 0;
}

.brand-panel,
.partner-info,
.contact-card {
  padding: 28px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-left: 5px solid var(--teal);
  background: var(--mist);
}

.timeline span {
  color: var(--coral);
  font-weight: 900;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.brand-card {
  display: grid;
  grid-template-columns: clamp(220px, 26vw, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 220px;
}

.brand-card .card-media {
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  min-height: 180px;
  margin-bottom: 0;
}

.brand-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  min-width: 0;
  padding-left: 0;
}

.brand-card span {
  color: var(--muted);
  font-size: 13px;
}

.brand-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.brand-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.brand-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: #5c6d73;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.brand-card-copy .card-link {
  margin-top: auto;
}

.brand-section + .brand-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.brand-section h3 {
  margin-bottom: 8px;
}

.brand-highlights {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.brand-highlights li {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--mist);
  font-weight: 700;
}

.brand-detail-panel h2 {
  margin-bottom: 18px;
}

.brand-cover-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

.brand-page-content {
  line-height: 1.8;
}

.brand-page-content .rich-content {
  display: grid;
  gap: 18px;
}

.rich-content h2,
.rich-content h3,
.rich-content h4,
.brand-page-content .rich-content h2,
.brand-page-content .rich-content h3,
.brand-page-content .rich-content h4 {
  margin: 0;
  color: var(--teal-dark);
  line-height: 1.35;
}

.rich-content h2,
.brand-page-content .rich-content h2 {
  font-size: 24px;
}

.rich-content h3,
.brand-page-content .rich-content h3,
.brand-section h3 {
  font-size: 20px;
}

.rich-content p,
.brand-page-content .rich-content p {
  margin: 0;
  color: var(--ink);
}

.rich-content ul,
.rich-content ol,
.brand-page-content .rich-content ul,
.brand-page-content .rich-content ol {
  margin: 0;
  padding-left: 22px;
}

.rich-content li + li,
.brand-page-content .rich-content li + li {
  margin-top: 6px;
}

.rich-content a,
.brand-page-content .rich-content a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
}

.rich-content img,
.brand-page-content .rich-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(21, 34, 43, 0.08);
}

.rich-content blockquote,
.brand-page-content .rich-content blockquote {
  margin: 0;
  padding: 14px 18px;
  border-left: 4px solid var(--teal);
  background: var(--mist);
  color: #31414b;
}

.rich-content .ql-size-small,
.brand-page-content .rich-content .ql-size-small,
.tutorial-content .ql-size-small,
.article-body-content .ql-size-small {
  font-size: 0.75em;
}

.rich-content .ql-size-large,
.brand-page-content .rich-content .ql-size-large,
.tutorial-content .ql-size-large,
.article-body-content .ql-size-large {
  font-size: 1.5em;
}

.rich-content .ql-size-huge,
.brand-page-content .rich-content .ql-size-huge,
.tutorial-content .ql-size-huge,
.article-body-content .ql-size-huge {
  font-size: 2.5em;
}

.brand-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.brand-gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.brand-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.brand-subnav {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.brand-subnav a {
  color: var(--teal-dark);
  font-weight: 700;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.credential-card img,
.credential-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.credential-placeholder {
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
}

.credential-card figcaption {
  padding: 14px;
}

.credential-card figcaption p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quality-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-steps li {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--mist);
}

.quality-steps span {
  color: var(--coral);
  font-weight: 900;
  font-size: 18px;
}

.quality-steps p {
  margin: 6px 0 0;
  color: var(--muted);
}

.brand-timeline {
  display: grid;
  gap: 14px;
}

.brand-timeline article {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-left: 5px solid var(--teal);
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.brand-timeline span {
  min-width: 72px;
  color: var(--coral);
  font-weight: 900;
}

.brand-timeline p {
  margin: 6px 0 0;
  color: var(--muted);
}

.article-card {
  min-height: 226px;
}

.article-detail p {
  font-size: 17px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.article-related-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.article-related-card span {
  color: var(--muted);
  font-size: 13px;
}

.article-related-card h4 {
  margin: 8px 0;
  font-size: 17px;
}

.article-related-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h2 {
  margin-bottom: 0;
}

.article-card strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
}

.partner-info {
  display: grid;
  gap: 18px;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--mist);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 28px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
}

.contact-card dl {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 13px;
}

.contact-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.qr-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px dashed var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #f8fbfa;
  font-weight: 800;
}

.site-footer {
  padding: 34px clamp(20px, 6vw, 84px);
  color: #dce8e5;
  background: #14292d;
}

.site-footer .footer-nav {
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 960px;
  margin-bottom: 8px;
  color: #b9c9c6;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1180px) {
  .product-overview-grid {
    grid-template-columns: 1fr;
  }

  .solution-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100vh - 72px);
    padding: 16px 20px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  .nav-item {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .nav-item-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .nav-link {
    min-height: 34px;
    justify-content: flex-start;
    padding: 0 10px;
    white-space: normal;
  }

  .nav-submenu-toggle {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--teal-dark);
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .nav-submenu-toggle:active {
    background: var(--mist);
  }

  .nav-dropdown {
    position: static;
    display: none;
    gap: 2px;
    min-width: 0;
    padding: 4px 0 8px 10px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav .nav-dropdown,
  .nav-item:hover .nav-dropdown {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    visibility: visible;
  }

  .nav .nav-item:not(.mobile-open) > .nav-dropdown {
    display: none !important;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .nav-item.mobile-open .nav-dropdown,
  .nav-dropdown.mobile-dropdown-open {
    display: grid !important;
    height: auto;
    overflow: visible;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    justify-content: flex-start;
    min-height: 32px;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 10px;
    color: var(--muted);
    text-align: left;
    white-space: normal;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav.open {
    display: flex;
  }


  .category-grid,
  .product-grid,
  .solution-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-overview-grid {
    grid-template-columns: 1fr;
  }

  .solution-insight-card-primary {
    grid-row: auto;
  }

  .product-overview-grid {
    grid-template-columns: 1fr;
  }

  .product-overview-info {
    grid-template-rows: none;
  }

  .product-media-stage {
    grid-template-columns: minmax(0, 1fr) 124px;
    max-width: none;
  }

  .product-gallery-thumbs {
    width: 124px;
  }

  .gallery-thumb {
    flex-basis: 112px;
    width: 112px;
    height: 112px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-category-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-product-slide {
    grid-template-columns: 1fr;
  }

  .featured-product-image {
    min-height: 320px;
  }

  .home-help-grid {
    grid-template-columns: 1fr;
  }

  .home-help-panel > .compact-heading {
    min-height: 0;
  }

  .home-question-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .home-question-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .home-question-filters {
    justify-content: flex-start;
  }

  .home-help-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .list-pagination {
    flex-wrap: wrap;
  }

}

@media (max-width: 720px) {
  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(244, 248, 246, 0.98) 0%, rgba(244, 248, 246, 0.8) 48%, rgba(244, 248, 246, 0.18) 100%);
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-copy {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding-top: 54px;
  }

  .hero-dots {
    left: 20px;
    bottom: 38px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .core-category-grid,
  .endorsement-grid,
  .conversion-strip {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid,
  .solution-grid,
  .article-grid,
  .brand-grid,
  .credential-grid,
  .brand-gallery-grid,
  .solution-product-grid,
  .article-related-grid,
  .brand-layout,
  .partner-layout,
  .contact-layout,
  .detail-layout,
  .stats {
    grid-template-columns: 1fr;
  }

  .product-category-section {
    padding: 22px;
  }

  .product-category-header h3 {
    font-size: 24px;
  }

  .brand-card {
    grid-template-columns: 1fr;
  }

  .brand-card .card-media {
    width: min(100%, 320px);
    max-width: 320px !important;
    min-height: 150px;
  }

  .featured-product-image {
    min-height: 240px;
  }

  .featured-product-copy {
    padding: 24px;
  }

  .featured-product-copy h3 {
    font-size: 28px;
  }

  .carousel-button {
    top: 120px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .solution-list .solution-card {
    gap: 12px;
  }

  .solution-list .solution-card .card-link {
    align-self: flex-start;
  }

  .solution-card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-block {
    padding: 22px;
  }

  .solution-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-insight-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .solution-insight-card .solution-index {
    width: 38px;
    height: 38px;
  }

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

  .product-media-layout {
    grid-template-columns: 1fr;
  }

  .product-media-stage {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
  }

  .product-overview-media .product-media-stage {
    grid-template-columns: 1fr;
  }

  .product-media-main {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .product-overview-media .product-media-main {
    min-height: 260px;
  }

  .product-main-image {
    padding: 12px;
  }

  .product-gallery-thumbs {
    flex: none;
    flex-direction: row;
    width: 100%;
    max-height: none;
    padding: 0 0 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: contain;
    gap: 12px;
  }

  .product-gallery-rail {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .thumb-page-button {
    width: 34px;
    height: 80px;
    min-height: 0;
    flex: 0 0 auto;
  }

  .thumb-page-button-prev::before {
    transform: rotate(135deg);
  }

  .thumb-page-button-next::before {
    transform: rotate(-45deg);
  }

  .product-overview-media .product-gallery-thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    padding: 0 0 6px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-overview-media .product-gallery-rail {
    width: 100%;
  }

  .gallery-thumb {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
  }

  .product-overview-media .gallery-thumb {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
  }

  .gallery-thumb.is-active::before {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }

  .product-gallery-thumbs--placeholder {
    flex-direction: row;
  }

  .product-gallery-thumbs--placeholder .gallery-placeholder {
    width: 84px;
    height: 84px;
    flex: 0 0 auto;
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery img,
  .gallery-placeholder {
    aspect-ratio: 4 / 3;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-contact-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .solution-lead-panel {
    width: 100%;
  }

  .solution-contact-copy {
    padding: 0;
  }

  .solution-contact-button {
    margin-top: 0;
  }

  .qr-grid {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }
}
:where([v-cloak]) {
  display: none;
}

