:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #5b6678;
  --line: #dbe3ee;
  --blue: #1769e0;
  --blue-700: #0f4db3;
  --teal: #16a394;
  --orange: #f06f2f;
  --yellow: #f5b82e;
  --green: #2e9f62;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "PingFang SC",
    "Microsoft YaHei",
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 247, 251, 0.96) 100%),
    var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: saturate(180%) blur(22px);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-header .menu-toggle {
  margin-left: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.brand:hover,
.brand:focus-visible {
  background: rgba(23, 105, 224, 0.08);
  border-color: rgba(23, 105, 224, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.brand img {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

.nav-group {
  position: relative;
}

.nav-group > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  color: inherit;
  cursor: pointer;
  list-style: none;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-group[open] > summary,
.nav-group > summary:hover {
  color: var(--blue);
  background: rgba(23, 105, 224, 0.08);
}

.nav-group[open] > summary::after {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  display: none;
  min-width: 220px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 227, 238, 0.92);
  border-radius: 16px;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.nav-group[open] > .nav-menu {
  display: grid;
}

.nav-menu a {
  min-height: 40px;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 12px;
}

.nav-menu a:hover {
  color: var(--blue);
  background: #f6f9fd;
}

.nav-group:last-child .nav-menu {
  right: 0;
  left: auto;
}

.mobile-nav .nav-group > summary {
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f8fafc;
}

.mobile-nav .nav-group > summary::after {
  content: "▸";
}

.mobile-nav .nav-group[open] > summary {
  color: var(--blue);
  background: #fff;
}

.mobile-nav .nav-group {
  overflow: hidden;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 16px;
  background: #fff;
}

.mobile-nav .nav-menu {
  position: static;
  display: none;
  min-width: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.mobile-nav .nav-group[open] > .nav-menu {
  display: grid;
  gap: 6px;
}

.mobile-nav .nav-menu a {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    color 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(23, 105, 224, 0.18);
}

.button.secondary {
  color: var(--blue-700);
  border: 1px solid rgba(23, 105, 224, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.button.neutral {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.button:hover,
.category-card:hover,
.product-card:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover,
.console-item:hover {
  transform: translateY(-2px);
}

.button:active,
.category-card:active,
.product-card:active,
.solution-grid article:active,
.promise-grid article:active,
.process-list li:active,
.credential-card:active,
.console-item:active {
  transform: translateY(0);
}

.button:hover {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.menu-toggle:hover {
  border-color: rgba(23, 105, 224, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 49;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  max-height: calc(100vh - 72px);
  overflow: auto;
}

.mobile-nav a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: #f8fafc;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.mobile-nav a:hover {
  border-color: rgba(23, 105, 224, 0.16);
  background: #fff;
}

.mobile-nav .mobile-nav-cta {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  text-align: center;
}

.mobile-nav .mobile-nav-cta:hover {
  color: #fff;
  background: var(--blue-700);
}

.nav-open .mobile-nav {
  display: grid;
}

.mobile-nav .nav-group + .nav-group {
  margin-top: 2px;
}

.hero {
  padding: 88px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(23, 105, 224, 0.09);
  border: 1px solid rgba(23, 105, 224, 0.13);
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.credentials h2,
.contact h2 {
  margin: 16px 0 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 64px;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #3f4b5e;
  font-size: 18px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button {
  min-width: 150px;
}

.hero-mobile-consult {
  display: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  color: #2f3b4d;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.trust-row span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: #526174;
  font-size: 13px;
}

.hero-proof-row span {
  position: relative;
  padding-left: 14px;
}

.hero-proof-row span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.hero-guide {
  width: min(100%, 660px);
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(198, 211, 226, 0.82);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.hero-guide-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.hero-guide-copy span {
  color: var(--muted);
  font-size: 13px;
}

.hero-guide-copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.hero-guide-note {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 10px 13px 10px 15px;
  color: #063f61;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  background: linear-gradient(135deg, #e6f7ff 0%, #dffaf4 100%);
  border: 1px solid rgba(0, 122, 255, 0.24);
  border-left: 4px solid #0f68e8;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 104, 232, 0.1);
}

.hero-guide-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-guide-steps li {
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.76);
  border-radius: 8px;
}

.hero-guide-steps span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.hero-guide-steps strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.hero-guide-steps em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

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

.hero-guide-actions a,
.hero-guide-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  color: #0b4fb6;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 8px;
}

.hero-guide-actions .hero-guide-primary {
  color: #fff;
  background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%);
  border-color: rgba(15, 94, 208, 0.32);
  box-shadow: 0 12px 24px rgba(15, 104, 232, 0.18);
}

.hero-guide-actions .hero-guide-secondary {
  color: #0b4fb6;
  background: #fff;
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.panel-top,
.console-metrics,
.console-item,
.product-title,
.section-heading,
.card-actions,
.credentials-grid,
.contact-grid,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-top strong {
  display: block;
  font-size: 22px;
}

.panel-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  color: #087568;
  font-size: 13px;
  font-weight: 800;
  background: rgba(22, 163, 148, 0.12);
  border-radius: 999px;
}

.live-dot::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.console-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  margin: 22px 0;
  padding: 0 12px 0 18px;
  color: #7a8596;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.85);
  border-radius: 16px;
}

.console-search:focus-within {
  background: #fff;
  border-color: rgba(31, 119, 235, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 119, 235, 0.08);
}

.console-search input {
  width: 100%;
  min-width: 0;
  height: 50px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  outline: 0;
}

.console-search input::placeholder {
  color: #8a96a8;
}

.console-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.console-search kbd {
  flex: 0 0 auto;
  padding: 4px 8px;
  color: #566174;
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.console-metrics {
  margin-bottom: 20px;
}

.console-metrics a,
.console-metrics div {
  display: block;
  flex: 1;
  padding: 16px 12px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.85);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
}

.console-metrics a {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.console-metrics a:hover,
.console-metrics a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 94, 240, 0.28);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 64, 128, 0.1);
  outline: none;
}

.console-metrics strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.console-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.console-list {
  display: grid;
  gap: 12px;
}

.console-item {
  min-height: 78px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.86);
  border-radius: 16px;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease;
}

.console-list strong {
  display: block;
  font-size: 15px;
}

.console-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.console-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  background: rgba(31, 119, 235, 0.08);
  border-radius: 999px;
}

.console-service-note {
  margin-top: 16px;
  padding: 14px 16px;
  color: #3c485a;
  font-size: 14px;
  background: #fffaf3;
  border: 1px solid rgba(240, 111, 47, 0.22);
  border-radius: 8px;
}

.console-service-note strong {
  color: #a84d1a;
}

.console-service-note span {
  display: block;
  margin-top: 4px;
}

.console-service-button {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  min-height: auto;
  margin-top: 16px;
  padding: 14px 16px;
  color: var(--blue-700);
  text-align: left;
  white-space: normal;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 104, 232, 0.08);
}

.console-service-button strong {
  color: var(--blue-700);
}

.console-service-button span {
  color: #334155;
  line-height: 1.7;
}

.home-operations {
  padding: 62px 0;
  background: #fff;
  border-block: 1px solid rgba(12, 22, 38, 0.08);
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.operations-copy h2 {
  max-width: 560px;
  margin: 14px 0 0;
  color: #08111f;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
}

.operations-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.operations-material-card {
  margin-top: 22px;
  padding: 20px;
  color: #243247;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(12, 22, 38, 0.09);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.operations-material-card strong {
  display: block;
  color: #08111f;
  font-size: 18px;
}

.operations-material-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.operations-material-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.operations-material-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
}

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

.operations-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(12, 22, 38, 0.08);
  border-radius: 8px;
}

.operations-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
}

.operations-list strong {
  display: block;
  color: #08111f;
  font-size: 22px;
  line-height: 1.25;
}

.operations-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.operations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.operations-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #0b4fb6;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  background: #eef5ff;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 999px;
}

.product-carousel-band {
  padding: 36px 0 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 252, 0.98) 100%);
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.carousel-head h2 {
  margin: 12px 0 0;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 105, 224, 0.2);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.product-carousel-shell {
  overflow: hidden;
}

.product-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 12px;
  scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-product {
  flex: 0 0 calc((100% - 36px) / 3);
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease;
}

.carousel-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.carousel-product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.72;
  padding: 12px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.carousel-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.carousel-product-body {
  padding: 16px;
}

.carousel-product-body h3 {
  display: -webkit-box;
  min-height: 50px;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.carousel-product-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.carousel-product-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  margin-top: 14px;
}

.carousel-product-foot a,
.carousel-product-foot button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
}

.carousel-product-foot a {
  color: var(--blue-700);
  background: rgba(23, 105, 224, 0.08);
  border: 1px solid rgba(23, 105, 224, 0.14);
}

.carousel-product-foot button {
  color: #fff;
  cursor: pointer;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.category-strip {
  margin-top: -24px;
  padding-bottom: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  min-height: 94px;
  padding: 16px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 227, 238, 0.92);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-card:hover {
  border-color: rgba(23, 105, 224, 0.16);
}

.category-card span,
.category-card strong {
  display: block;
}

.category-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-card strong {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.category-card.active {
  color: #fff;
  background: linear-gradient(180deg, #1f77eb 0%, #1769e0 100%);
  border-color: rgba(23, 105, 224, 0.75);
  box-shadow: 0 14px 30px rgba(23, 105, 224, 0.22);
}

.category-card.active span {
  color: rgba(255, 255, 255, 0.76);
}

.category-card:hover,
.console-item:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover,
.product-card:hover {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.credentials h2,
.contact h2 {
  font-size: 42px;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  margin-bottom: 0;
}

.section-heading.compact p {
  margin-top: 18px;
}

.customization-copy {
  margin-top: 22px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.84);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.customization-copy strong {
  display: block;
  color: #0b1220;
  font-size: 18px;
  line-height: 1.4;
}

.customization-copy p {
  margin: 10px 0 0;
  color: #526071;
  font-size: 15px;
  line-height: 1.8;
}

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

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: -8px 0 18px;
}

.product-count {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--muted);
}

.product-count strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.product-toolbar-enhanced {
  justify-content: space-between;
  gap: 16px;
}

.product-discovery-tools {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.product-list-search {
  display: flex;
  align-items: center;
  width: min(100%, 420px);
  min-height: 44px;
  padding: 4px 5px 4px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 224, 235, 0.95);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 17, 31, 0.05);
}

.product-list-search:focus-within {
  border-color: rgba(15, 104, 232, 0.36);
  box-shadow: 0 0 0 4px rgba(15, 104, 232, 0.08);
}

.product-list-search input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.product-list-search button,
.product-clear-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
}

.product-list-search button {
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.product-clear-button {
  color: var(--blue-700);
  background: #eef5ff;
  border: 1px solid rgba(15, 104, 232, 0.16);
}

.product-status {
  flex: 1 1 180px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  margin-top: 10px;
  padding: 0 9px;
  color: var(--blue-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  background: rgba(15, 104, 232, 0.08);
  border-radius: 999px;
}

.category-card.active .category-count {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero,
.category-strip,
.products {
  content-visibility: visible;
}

.product-empty {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.product-empty-rich {
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.product-empty-rich strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.product-empty-rich p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.product-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-empty-actions .button {
  border: 0;
  cursor: pointer;
}

.product-empty-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.product-empty-suggestions button {
  min-height: 30px;
  padding: 0 11px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  background: #eef5ff;
  border: 1px solid rgba(15, 104, 232, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.load-more-row {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    opacity 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.product-card.is-hidden {
  display: none;
}

.product-card.is-pinned {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.08),
    0 0 0 3px rgba(245, 158, 11, 0.1);
}

.product-pin-button,
.product-pin-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.product-pin-badge {
  color: #fff;
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  border-color: rgba(217, 119, 6, 0.62);
}

.product-pin-button:hover,
.product-pin-button:focus-visible {
  color: #fff;
  background: #f59e0b;
  border-color: #f59e0b;
  outline: none;
}

.product-pin-button.is-pinned {
  color: #fff;
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  border-color: rgba(217, 119, 6, 0.62);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
  padding: 0;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  image-rendering: auto;
}

.product-body {
  padding: 16px;
}

.product-card-meta,
.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-meta {
  margin-bottom: 10px;
}

.product-card-meta span,
.product-tag-row span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  padding: 0 9px;
  overflow: hidden;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(15, 104, 232, 0.08);
  border-radius: 999px;
}

.product-card-meta span:nth-child(2) {
  color: #087568;
  background: rgba(10, 155, 143, 0.1);
}

.product-tag-row {
  margin-top: 12px;
}

.product-tag-row span {
  color: #596579;
  background: #f3f7fb;
}

.product-title {
  align-items: flex-start;
  gap: 12px;
}

.product-title h3 {
  display: -webkit-box;
  min-height: 50px;
  overflow: hidden;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-title strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 18px;
}

.product-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin-top: 14px;
  gap: 8px;
}

.card-actions a,
.card-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 999px;
}

.card-actions button {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.card-actions .detail-link {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.88);
}

.card-actions .consult-link {
  color: #fff;
  background: var(--blue);
}

.card-actions .selection-link {
  color: #0b6f65;
  background: rgba(10, 155, 143, 0.1);
  border-color: rgba(10, 155, 143, 0.2);
}

.card-actions .selection-link.is-selected,
.carousel-product-foot button.is-selected {
  color: #fff;
  background: linear-gradient(180deg, #0b9487 0%, #087568 100%);
  border-color: rgba(8, 117, 104, 0.28);
}

.product-card.is-loading .product-media img {
  opacity: 0.72;
}

.split-section {
  background: #fff;
}

.faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 247, 251, 0.96) 100%);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

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

.faq-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.faq-grid h3 {
  margin: 0;
  font-size: 18px;
}

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

.faq-grid a {
  color: var(--blue);
  font-weight: 800;
}

.faq-grid article {
  content-visibility: auto;
  contain-intrinsic-size: 180px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: start;
}

.solution-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article,
.promise-grid article {
  min-height: 180px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease;
}

.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover,
.console-item:hover {
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.solution-grid article {
  background: rgba(248, 250, 252, 0.92);
}

.solution-grid span {
  color: var(--blue);
  font-weight: 900;
}

.solution-grid h3,
.promise-grid strong {
  display: block;
  margin: 12px 0 0;
  font-size: 20px;
}

.solution-grid p,
.promise-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.delivery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 247, 251, 0.92)),
    var(--bg);
}

.promise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promise-grid article {
  min-height: 210px;
}

.promise-grid article::before {
  display: block;
  width: 36px;
  height: 6px;
  margin-bottom: 18px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 999px;
}

.process {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 178px;
  padding: 18px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.process-list strong {
  display: block;
  margin-top: 18px;
  font-size: 17px;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.deployment-snapshot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 247, 0.94));
  border: 1px solid rgba(175, 205, 229, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.deployment-snapshot h3 {
  margin: 8px 0 0;
  color: #08111f;
  font-size: 24px;
  line-height: 1.25;
}

.deployment-snapshot p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.deployment-snapshot .button {
  flex: 0 0 auto;
}

.deployment-materials {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.032) 1px, transparent 1px) 0 0 / 92px 92px,
    #f7fbff;
  border-block: 1px solid rgba(12, 22, 38, 0.08);
}

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

.materials-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(202, 216, 232, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.materials-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
}

.materials-grid strong {
  display: block;
  color: #08111f;
  font-size: 19px;
  line-height: 1.3;
}

.materials-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.materials-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-top: 16px;
  padding: 22px 24px;
  color: #253044;
  background: #fffaf3;
  border: 1px solid rgba(240, 111, 47, 0.26);
  border-radius: 8px;
}

.materials-note strong {
  color: var(--orange);
  font-size: 24px;
  line-height: 1.25;
}

.materials-note ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.materials-note li {
  position: relative;
  padding-left: 18px;
}

.materials-note li + li {
  margin-top: 8px;
}

.materials-note li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

@media (max-width: 1080px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .deployment-snapshot,
  .materials-note {
    display: block;
  }

  .deployment-snapshot {
    padding: 18px;
  }

  .deployment-snapshot .button {
    width: 100%;
    margin-top: 16px;
  }

  .deployment-snapshot h3,
  .materials-note strong {
    font-size: 22px;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .materials-grid article {
    min-height: auto;
    padding: 18px;
  }

  .materials-note {
    padding: 18px;
  }

  .materials-note ul {
    margin-top: 14px;
  }
}

.credentials {
  color: #101828;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 247, 251, 1) 100%);
}

.credentials-grid {
  align-items: stretch;
}

.credentials-grid > div:first-child {
  max-width: 520px;
}

.credentials .eyebrow,
.contact .eyebrow {
  color: var(--blue-700);
  background: rgba(23, 105, 224, 0.09);
  border-color: rgba(23, 105, 224, 0.12);
}

.credentials p,
.contact p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.credential-card {
  width: min(540px, 100%);
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 238, 0.88);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease;
}

.credential-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.credential-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.credential-card dt {
  color: var(--muted);
  font-weight: 800;
}

.credential-card dd {
  margin: 0;
  font-weight: 800;
}

.credential-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  margin-top: 20px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, #25b7a8 0%, #16a394 100%);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(22, 163, 148, 0.2);
}

.plain-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links span {
  white-space: nowrap;
}

.contact {
  color: #101828;
  background:
    linear-gradient(180deg, rgba(247, 250, 253, 0.96) 0%, rgba(233, 242, 250, 0.96) 100%);
}

.contact-grid {
  align-items: center;
}

.contact-grid > div:first-child {
  max-width: 660px;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.channel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 999px;
}

.contact-actions {
  display: grid;
  min-width: 250px;
  gap: 12px;
}

.contact-actions .button.primary {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  color: var(--blue);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.contact-actions .button.secondary {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 105, 224, 0.12);
}

.contact-actions .button.neutral {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(219, 227, 238, 0.9);
}

.contact-hero-grid {
  align-items: center;
}

.contact-price-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 10px 14px;
  color: #075f57;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  background: rgba(52, 199, 179, 0.11);
  border: 1px solid rgba(52, 199, 179, 0.2);
  border-radius: 10px;
}

.contact-qr-card img {
  width: min(100%, 210px);
}

.contact-consult {
  background: #f6f8fb;
}

.contact-consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: stretch;
}

.contact-method-card,
.contact-action-card {
  background: #fff;
  border: 1px solid rgba(12, 22, 38, 0.09);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.contact-method-card {
  padding: 28px;
}

.contact-method-card h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #08111f;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.contact-method-card p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #0b4fb6;
  font-size: 14px;
  font-weight: 850;
  background: #eef5ff;
  border: 1px solid rgba(23, 105, 224, 0.13);
  border-radius: 999px;
}

.contact-action-stack {
  display: grid;
  gap: 12px;
}

.contact-action-card {
  display: grid;
  align-content: center;
  min-height: 106px;
  padding: 20px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.contact-action-card.primary {
  color: #fff;
  background: linear-gradient(135deg, #155eef 0%, #0a9b8f 100%);
  border-color: rgba(21, 94, 239, 0.22);
}

.contact-action-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.contact-action-card span {
  margin-top: 8px;
  color: inherit;
  opacity: 0.78;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 17, 31, 0.58);
  backdrop-filter: blur(12px);
}

.modal-backdrop.is-open {
  display: flex;
}

.detail-modal {
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(10, 17, 31, 0.28);
}

.detail-modal header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 0;
}

.detail-modal header h3 {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 1.25;
}

.detail-modal .close-modal {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #f2f5f9;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.detail-modal .modal-body {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
  padding: 18px 22px 22px;
}

.detail-modal .modal-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 14px;
  background: #eef3f8;
}

.detail-modal .modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #eef3f8;
}

.detail-modal .modal-info {
  display: grid;
  gap: 14px;
}

.detail-modal .contact-box {
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 14px;
}

.detail-modal .contact-box strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(30px, 4.8vw, 44px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.detail-modal .detail-list {
  display: grid;
  gap: 10px;
}

.detail-modal .detail-list div {
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.detail-modal .detail-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.detail-modal .detail-list strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.detail-modal .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-modal .feature-tags span {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  background: rgba(23, 105, 224, 0.08);
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 999px;
}

.detail-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-modal .modal-actions a {
  min-height: 42px;
}

.contact-popup {
  width: min(860px, 100%);
}

.contact-popup-header p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-popup-body {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
}

.contact-popup-qr {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 340px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 14px;
}

.contact-popup-qr img {
  width: min(100%, 230px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.contact-popup-qr strong {
  font-size: 18px;
}

.contact-popup-qr span,
.contact-popup-note {
  color: var(--muted);
}

.contact-popup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-context {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f3f8ff;
  border: 1px solid rgba(15, 104, 232, 0.16);
  border-radius: 8px;
}

.contact-context[hidden] {
  display: none;
}

.contact-context span {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
}

.contact-context strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.contact-popup-grid a,
.contact-popup-grid button,
.contact-popup-grid div {
  padding: 13px 14px;
  width: 100%;
  text-align: left;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-popup-grid button {
  font: inherit;
  cursor: pointer;
}

.contact-popup-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-popup-grid strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 15px;
}

.contact-price-card {
  padding: 13px 14px;
  color: #063f61;
  background: linear-gradient(135deg, #e6f7ff 0%, #dffaf4 100%);
  border: 1px solid rgba(0, 122, 255, 0.22);
  border-left: 4px solid #0f68e8;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 104, 232, 0.1);
}

.contact-price-card span {
  display: block;
  color: #0a4fb6;
  font-size: 13px;
  font-weight: 850;
}

.contact-price-card strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.55;
}

.contact-popup-note {
  margin: 0;
}

.site-footer {
  padding: 34px 0;
  color: #5f6b7c;
  background:
    linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
  border-top: 1px solid #dde6ee;
  backdrop-filter: blur(12px);
}

.footer-logo {
  width: 162px;
  filter: none;
}

.footer-grid p {
  max-width: 580px;
  margin: 12px 0 0;
  color: #5f6b7c;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-wechat-qr {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #d7e1ea;
  background: #fff;
}

.footer-links {
  justify-content: flex-end;
}

.footer-grid a,
.footer-links span {
  color: #667587;
}

.product-page {
  background: var(--bg);
}

.product-hero {
  padding: 72px 0 44px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 30px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue);
}

.product-hero-copy h1 {
  max-width: 760px;
  font-size: 58px;
}

.product-hero-summary {
  max-width: 760px;
  margin: 20px 0 0;
  color: #3f4b5e;
  font-size: 18px;
}

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

.product-hero-actions .button {
  min-width: 152px;
}

.product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.product-hero-metrics article,
.product-hero-card,
.product-hero-image {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.product-hero-metrics article {
  padding: 16px;
}

.product-hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.product-hero-metrics .phone-metric strong {
  white-space: nowrap;
  font-size: clamp(16px, 1.5vw, 18px);
}

.product-hero-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.product-hero-image {
  overflow: hidden;
  padding: 14px;
}

.product-hero-image img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: contain;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
  border-radius: 14px;
}

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

.product-hero-card strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.product-hero-card p {
  margin: 6px 0 0;
  color: var(--ink);
}

.product-hero-card .button {
  width: 100%;
  margin-top: 18px;
}

.product-section {
  padding-top: 44px;
}

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

.related-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.related-card a {
  display: block;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: contain;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
}

.related-card img.image-fallback-applied,
.product-card img.image-fallback-applied,
.carousel-product img.image-fallback-applied,
.product-hero-image img.image-fallback-applied {
  padding: 18%;
  object-fit: contain;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}

.related-card-body {
  padding: 16px;
}

.related-card-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

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

.related-card .card-actions {
  margin-top: 14px;
}

.related-card .card-actions a,
.related-card .card-actions button {
  min-height: 36px;
  font-size: 13px;
}

.product-page .contact {
  margin-top: 24px;
}

/* Premium visual refresh */
:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ink: #0b1220;
  --muted: #667085;
  --line: #d7e0ea;
  --blue: #1167e8;
  --blue-700: #0b4fb9;
  --teal: #0f9f8f;
  --orange: #f2852f;
  --yellow: #f2b94c;
  --green: #2d9f66;
  --shadow: 0 18px 46px rgba(12, 22, 38, 0.08);
  --shadow-strong: 0 28px 70px rgba(12, 22, 38, 0.14);
  --radius: 8px;
}

body {
  background:
    linear-gradient(90deg, rgba(13, 25, 44, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #f7fafc 0%, #eef3f8 34%, #f7fafc 100%);
}

.section {
  position: relative;
}

.site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(12, 22, 38, 0.08);
  box-shadow: 0 10px 34px rgba(12, 22, 38, 0.05);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(12, 22, 38, 0.08);
}

.brand img {
  width: 166px;
}

.nav-group > summary {
  min-height: 40px;
  padding: 0 14px;
  color: #435064;
  border: 1px solid transparent;
  border-radius: 8px;
}

.nav-group[open] > summary,
.nav-group > summary:hover {
  color: var(--ink);
  background: #f3f7fb;
  border-color: rgba(17, 103, 232, 0.12);
}

.nav-menu {
  padding: 10px;
  border-color: rgba(12, 22, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(12, 22, 38, 0.14);
}

.nav-menu a {
  border-radius: 6px;
}

.button {
  min-height: 44px;
  border-radius: 8px;
  letter-spacing: 0;
}

.button.primary,
.console-search-submit,
.card-actions .consult-link,
.carousel-product-foot button {
  background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%);
  box-shadow: 0 14px 30px rgba(17, 103, 232, 0.22);
}

.button.secondary,
.button.neutral {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 103, 232, 0.16);
}

.section-band,
.hero {
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.055) 1px, transparent 1px) center / 86px 86px,
    linear-gradient(180deg, #f9fbfe 0%, #edf4fb 100%);
}

.hero {
  overflow: hidden;
  padding: 104px 0 86px;
  border-bottom: 1px solid rgba(12, 22, 38, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(17, 103, 232, 0.11), transparent 42%),
    linear-gradient(260deg, rgba(15, 159, 143, 0.08), transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 62px;
}

.eyebrow {
  min-height: 28px;
  padding: 0 12px;
  color: #0b4fb9;
  font-size: 12px;
  background: #eaf2ff;
  border-color: #cfe0fb;
  border-radius: 8px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.06;
}

.hero-copy p {
  max-width: 680px;
  color: #3c485a;
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  gap: 12px;
}

.trust-row {
  gap: 10px;
}

.trust-row span {
  min-height: 36px;
  color: #263244;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(12, 22, 38, 0.1);
  border-radius: 8px;
}

.hero-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 253, 0.94) 100%);
  border: 1px solid rgba(12, 22, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.hero-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--orange));
}

.panel-top strong {
  font-size: 24px;
  letter-spacing: 0;
}

.panel-label {
  color: #738095;
}

.live-dot {
  min-height: 32px;
  color: #067d73;
  background: #e7f7f4;
  border: 1px solid #c7ece6;
  border-radius: 8px;
}

.console-search {
  min-height: 56px;
  background: #fff;
  border-color: rgba(12, 22, 38, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.console-search:focus-within {
  border-color: rgba(17, 103, 232, 0.52);
  box-shadow: 0 0 0 4px rgba(17, 103, 232, 0.1);
}

.console-search-submit,
.console-note,
.carousel-product-foot a,
.carousel-product-foot button,
.card-actions a,
.card-actions button,
.category-card,
.product-card,
.carousel-product,
.solution-grid article,
.promise-grid article,
.process-list li,
.faq-grid article,
.credential-card,
.related-card {
  border-radius: 8px;
}

.console-search kbd {
  border-radius: 6px;
}

.console-metrics {
  gap: 10px;
}

.console-metrics a,
.console-metrics div {
  padding: 16px 14px;
  background: #f6f9fc;
  border-color: rgba(12, 22, 38, 0.1);
  border-radius: 8px;
}

.console-metrics strong {
  font-size: 28px;
}

.console-item {
  min-height: 82px;
  padding: 16px;
  background: #fff;
  border-color: rgba(12, 22, 38, 0.1);
}

.console-item:hover {
  border-color: rgba(17, 103, 232, 0.28);
}

.console-note {
  min-height: 34px;
  color: #0b4fb9;
  background: #eaf2ff;
}

.product-carousel-band {
  padding: 48px 0 58px;
  background: #f7fafc;
  border-bottom: 1px solid rgba(12, 22, 38, 0.08);
}

.capability-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 38px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 22, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(12, 22, 38, 0.12);
}

.capability-grid article {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid rgba(12, 22, 38, 0.08);
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid span {
  color: #7b8798;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.capability-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.carousel-head h2,
.section-heading h2,
.credentials h2,
.contact h2 {
  color: var(--ink);
  letter-spacing: 0;
}

.carousel-button {
  color: var(--ink);
  background: #fff;
  border-color: rgba(12, 22, 38, 0.12);
  border-radius: 8px;
}

.product-carousel {
  padding: 4px 4px 16px;
}

.carousel-product,
.product-card,
.faq-grid article,
.solution-grid article,
.promise-grid article,
.process-list li,
.credential-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(12, 22, 38, 0.1);
  box-shadow: 0 14px 34px rgba(12, 22, 38, 0.06);
}

.carousel-product-media,
.product-media,
.related-card img {
  background:
    linear-gradient(90deg, rgba(12, 22, 38, 0.035) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, #f8fafc 0%, #edf3f8 100%);
}

.category-strip {
  margin-top: 0;
  padding: 28px 0 30px;
  background: #eef3f8;
  border-bottom: 1px solid rgba(12, 22, 38, 0.08);
}

.category-grid {
  gap: 14px;
}

.category-card {
  min-height: 92px;
  background: #fff;
  border-color: rgba(12, 22, 38, 0.1);
  box-shadow: 0 10px 28px rgba(12, 22, 38, 0.05);
}

.category-card.active {
  background:
    linear-gradient(135deg, rgba(17, 103, 232, 0.98), rgba(15, 159, 143, 0.94));
  box-shadow: 0 18px 40px rgba(17, 103, 232, 0.24);
}

.products {
  background: #f7fafc;
}

.product-toolbar {
  margin: -14px 0 24px;
}

.product-count {
  min-height: 40px;
  padding: 0 14px;
  line-height: 1;
  background: #fff;
  border: 1px solid rgba(12, 22, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(12, 22, 38, 0.04);
}

.product-count strong {
  color: var(--blue);
  flex: 0 0 auto;
}

.product-card {
  overflow: hidden;
}

.product-card:hover,
.carousel-product:hover,
.category-card:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover,
.console-item:hover {
  box-shadow: 0 24px 54px rgba(12, 22, 38, 0.12);
}

.product-body,
.carousel-product-body {
  border-top: 1px solid rgba(12, 22, 38, 0.07);
}

.product-title h3,
.carousel-product-body h3,
.related-card-body h3 {
  color: #111827;
  font-weight: 850;
}

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

.card-actions a,
.card-actions button {
  border-radius: 8px;
}

.card-actions .detail-link {
  background: #eef5ff;
  border-color: #cfe0fb;
}

.split-section,
.process,
.credentials {
  background:
    linear-gradient(90deg, rgba(12, 22, 38, 0.035) 1px, transparent 1px) 0 0 / 82px 82px,
    #ffffff;
}

.delivery,
.contact {
  background:
    linear-gradient(90deg, rgba(12, 22, 38, 0.035) 1px, transparent 1px) 0 0 / 82px 82px,
    #f1f6fb;
  border-block: 1px solid rgba(12, 22, 38, 0.08);
}

.solution-grid article,
.promise-grid article,
.process-list li {
  position: relative;
  overflow: hidden;
}

.solution-grid article::after,
.promise-grid article::after,
.process-list li::after {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0.9;
}

.solution-grid span {
  color: #0b4fb9;
}

.promise-grid article::before {
  width: 42px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.process-list span {
  background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%);
}

.contact-grid,
.credentials-grid {
  padding: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(12, 22, 38, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(12, 22, 38, 0.06);
}

.channel-chip {
  background: #fff;
  border-color: rgba(12, 22, 38, 0.1);
  border-radius: 8px;
}

.contact-actions .button.primary {
  color: #fff;
  background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%);
}

.detail-modal,
.contact-context,
.contact-popup-qr,
.contact-popup-grid a,
.contact-popup-grid button,
.contact-popup-grid div,
.detail-modal .detail-list div,
.detail-modal .modal-image,
.detail-modal .contact-box {
  border-radius: 8px;
}

.detail-modal {
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.site-footer {
  color: #c8d2df;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 78px 78px,
    #0f1724;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid p,
.footer-grid a,
.footer-links span {
  color: #c8d2df;
}

.footer-contact-block {
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Navigation and subpage architecture */
.site-header-pro {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nav-direct,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #435064;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-direct:hover,
.nav-direct.active {
  color: var(--ink);
  background: #f3f7fb;
  border-color: rgba(17, 103, 232, 0.12);
}

.nav-cta {
  color: #fff;
  background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%);
  border-color: rgba(17, 103, 232, 0.36);
  box-shadow: 0 12px 26px rgba(17, 103, 232, 0.2);
}

.nav-cta:hover,
.nav-cta.active {
  color: #fff;
  box-shadow: 0 16px 32px rgba(17, 103, 232, 0.26);
}

.nav-group-wide {
  position: static;
}

.nav-group-wide .mega-menu {
  left: 50%;
  width: min(920px, calc(100vw - 40px));
  min-width: 0;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
  padding: 12px;
  transform: translateX(-50%);
}

.nav-feature {
  display: grid;
  align-content: end;
  min-height: 250px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 103, 232, 0.96), rgba(15, 159, 143, 0.9)),
    #1167e8;
  border-radius: 8px;
}

.nav-feature:hover {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 103, 232, 0.98), rgba(15, 159, 143, 0.92)),
    #1167e8;
}

.nav-feature span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-feature strong {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.nav-feature em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.7;
}

.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nav-card-grid a {
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 14px;
  color: var(--ink);
  background: #f7fafc;
  border: 1px solid rgba(12, 22, 38, 0.08);
  border-radius: 8px;
}

.nav-card-grid a:hover {
  color: var(--blue-700);
  background: #fff;
  border-color: rgba(17, 103, 232, 0.18);
}

.nav-card-grid strong,
.footer-nav-column strong,
.footer-contact-block strong {
  display: block;
}

.nav-card-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.subpage-hero {
  padding: 92px 0 64px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 40px;
  align-items: center;
}

.subpage-hero h1 {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
}

.subpage-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #3c485a;
  font-size: 18px;
  line-height: 1.85;
}

.subpage-panel,
.contact-page-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 22, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.subpage-panel strong,
.contact-page-card strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.subpage-panel span,
.contact-page-card span,
.contact-large-number {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.contact-page-card {
  text-align: center;
}

.contact-page-card img {
  width: min(100%, 220px);
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid rgba(12, 22, 38, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 22, 38, 0.08);
}

.page-card-grid article {
  min-height: 230px;
}

.footer-grid-pro {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(220px, 0.85fr);
  align-items: start;
  gap: 24px;
}

.footer-brand-block p {
  max-width: 420px;
}

.footer-cert-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-cert-line span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #dbe5f1;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.footer-nav-column {
  display: grid;
  gap: 10px;
}

.footer-nav-column strong,
.footer-contact-block strong {
  color: #fff;
  font-size: 15px;
}

.footer-nav-column a {
  color: #c8d2df;
  font-size: 14px;
}

.footer-nav-column a:hover {
  color: #fff;
}

.footer-grid-pro .footer-contact-block {
  align-items: flex-start;
  min-width: 0;
}

.footer-grid-pro .footer-contact-block p {
  margin: 6px 0 0;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: none;
  }

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

  .capability-grid article:nth-child(2n) {
    border-right: 0;
  }

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

  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    padding: 62px 0 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-panel,
  .contact-grid,
  .credentials-grid {
    padding: 18px;
  }

  .console-search-submit {
    padding: 0 12px;
  }

  .category-strip {
    background: #f7fafc;
  }

  .capability-strip {
    margin-top: 0;
    padding: 16px 0 28px;
    background: #f7fafc;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 22, 38, 0.08);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .nav-direct,
  .nav-cta {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
  }

  .subpage-hero {
    padding: 62px 0 42px;
  }

  .subpage-hero h1 {
    font-size: 40px;
  }

  .subpage-hero p {
    font-size: 16px;
  }

  .subpage-panel,
  .contact-page-card {
    padding: 18px;
  }

  .footer-grid-pro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 680px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-carousel-shell {
    margin-right: 0;
  }

  .carousel-product {
    flex-basis: calc((100% - 18px) / 2);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .promise-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 0 14px;
  }

  .brand img {
    width: 148px;
  }

  .mobile-nav {
    inset-block-start: 68px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .product-carousel-band {
    padding: 28px 0 34px;
  }

  .carousel-head {
    align-items: center;
  }

  .carousel-head h2 {
    font-size: 28px;
  }

  .carousel-controls {
    gap: 8px;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .product-carousel-shell {
    margin-right: 0;
  }

  .product-carousel {
    gap: 12px;
    padding-right: 2px;
  }

  .carousel-product {
    flex-basis: 100%;
    border-radius: 14px;
  }

  .carousel-product-media {
    aspect-ratio: 1 / 0.78;
  }

  .carousel-product-body {
    padding: 14px;
  }

  .hero-copy p,
  .credentials p,
  .contact p {
    font-size: 16px;
  }

  .section-heading h2,
  .credentials h2,
  .contact h2 {
    font-size: 32px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .console-search {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0 10px 0 14px;
  }

  .console-search kbd {
    display: none;
  }

  .product-media {
    aspect-ratio: 1 / 0.98;
  }

  .product-body {
    padding: 14px;
  }

  .product-title h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .card-actions {
    gap: 8px;
  }

  .card-actions button {
    min-height: 36px;
  }

  .console-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .console-note {
    justify-self: start;
  }

  .category-grid,
  .product-grid,
  .solution-grid,
  .promise-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .category-strip {
    margin-top: 0;
    padding: 18px 0 0;
    background: #fff;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    min-height: 76px;
  }

  .section-heading,
  .credentials-grid,
  .contact-grid,
  .footer-grid {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .product-title h3,
  .product-body p {
    min-height: auto;
  }

  .credential-card {
    margin-top: 24px;
    padding: 18px;
  }

  .credential-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-actions {
    margin-top: 24px;
  }

  .contact-channels {
    margin-top: 16px;
  }

  .floating-contact-panel {
    right: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .footer-grid nav {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .footer-contact-block {
    margin: 18px 0;
  }

  .detail-modal .modal-body {
    grid-template-columns: 1fr;
  }

  .detail-modal header,
  .detail-modal .modal-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-backdrop {
    padding: 8px 12px;
  }

  .detail-modal {
    max-height: 92vh;
    border-radius: 14px;
  }

  .detail-modal header h3 {
    font-size: 22px;
  }

  .contact-popup header {
    padding-top: 18px;
  }

  .contact-popup-header p {
    margin-top: 8px;
    font-size: 13px;
  }

  .contact-popup-body {
    gap: 12px;
    padding-top: 12px;
  }

  .contact-popup-qr {
    min-height: auto;
    gap: 6px;
    padding: 10px;
  }

  .contact-popup-qr img {
    width: min(100%, 168px);
  }

  .contact-popup-qr strong {
    font-size: 16px;
  }

  .contact-popup .contact-box {
    padding: 12px 14px;
  }

  .contact-popup .contact-box strong {
    font-size: 34px;
  }

  .contact-popup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-popup-grid a,
  .contact-popup-grid button,
  .contact-popup-grid div {
    padding: 9px 10px;
  }

  .contact-popup-grid strong {
    font-size: 13px;
  }

  .contact-popup-note {
    font-size: 13px;
  }

  .contact-popup .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .contact-popup .modal-actions .button {
    min-height: 38px;
    padding: 0 12px;
  }
}

/* Full-site polish pass */
:root {
  --bg: #eef4f8;
  --ink: #09111f;
  --muted: #647084;
  --line: #d6e0eb;
  --blue: #0f68e8;
  --blue-700: #0a4fb6;
  --teal: #0a9b8f;
  --shadow: 0 18px 48px rgba(8, 20, 36, 0.08);
  --shadow-strong: 0 30px 80px rgba(8, 20, 36, 0.16);
}

body {
  background:
    radial-gradient(circle at 16% 6%, rgba(15, 104, 232, 0.12), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(10, 155, 143, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(9, 17, 31, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, #f8fbfd 0%, #eef4f8 40%, #f7fafc 100%);
}

.container {
  width: min(1200px, calc(100% - 44px));
}

.site-header {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(9, 17, 31, 0.08);
  box-shadow: 0 14px 40px rgba(9, 17, 31, 0.06);
}

.site-header::after {
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(15, 104, 232, 0.35), transparent);
}

.desktop-nav {
  gap: 6px;
}

.nav-group > summary,
.nav-direct,
.nav-cta {
  min-height: 42px;
  font-size: 14px;
}

.nav-menu {
  border: 1px solid rgba(9, 17, 31, 0.1);
  box-shadow: 0 30px 80px rgba(9, 17, 31, 0.18);
}

.nav-feature {
  min-height: 264px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(145deg, #0f68e8 0%, #0a9b8f 100%);
}

.nav-card-grid a,
.category-card,
.product-card,
.carousel-product,
.solution-grid article,
.promise-grid article,
.process-list li,
.faq-grid article,
.credential-card,
.subpage-panel,
.contact-page-card,
.contact-grid,
.credentials-grid,
.hero-panel {
  border-color: rgba(9, 17, 31, 0.09);
  box-shadow: 0 14px 38px rgba(9, 17, 31, 0.06);
}

.hero,
.subpage-hero,
.product-hero {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.045) 1px, transparent 1px) center / 88px 88px,
    linear-gradient(180deg, #f9fbfd 0%, #edf5fc 100%);
}

.hero::after,
.subpage-hero::after,
.product-hero::after {
  position: absolute;
  right: -8%;
  bottom: -28%;
  width: 520px;
  height: 520px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(15, 104, 232, 0.12), transparent 62%);
}

.hero-copy,
.subpage-hero-grid > div:first-child,
.product-hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.subpage-hero h1,
.product-hero-copy h1 {
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p,
.subpage-hero p,
.product-hero-summary {
  color: #405066;
}

.eyebrow {
  color: #0a4fb6;
  background: rgba(15, 104, 232, 0.09);
  border-color: rgba(15, 104, 232, 0.16);
}

.button.primary,
.nav-cta,
.console-search-submit,
.card-actions .consult-link,
.carousel-product-foot button {
  background: linear-gradient(180deg, #1978ff 0%, #0d5fd6 100%);
  box-shadow: 0 16px 34px rgba(15, 104, 232, 0.24);
}

.button:hover,
.nav-cta:hover,
.product-card:hover,
.carousel-product:hover,
.category-card:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover {
  transform: translateY(-3px);
}

.hero-panel,
.subpage-panel,
.contact-page-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.94));
  backdrop-filter: blur(18px);
}

.console-metrics a,
.console-metrics div,
.console-item {
  background: rgba(255, 255, 255, 0.88);
}

.console-metrics a,
.console-item,
.category-card,
.product-card,
.carousel-product,
.related-card {
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.product-media,
.carousel-product-media,
.related-card img,
.product-hero-image img {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
}

.product-card:hover,
.carousel-product:hover,
.related-card:hover {
  border-color: rgba(15, 104, 232, 0.22);
}

.card-actions a,
.card-actions button,
.carousel-product-foot a,
.carousel-product-foot button {
  min-height: 40px;
}

.category-card.active {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, #106be9, #0a9b8f);
}

.capability-grid,
.footer-grid-pro,
.contact-grid,
.credentials-grid {
  box-shadow: 0 24px 64px rgba(9, 17, 31, 0.1);
}

.capability-grid article,
.promise-grid article,
.solution-grid article,
.process-list li {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
}

.subpage-panel span,
.contact-page-card span,
.contact-large-number {
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-page-card img,
.contact-popup-qr img,
.footer-wechat-qr {
  image-rendering: auto;
}

.modal-backdrop {
  background: rgba(8, 16, 28, 0.62);
  backdrop-filter: blur(16px);
}

.detail-modal {
  border-radius: 10px;
  box-shadow: 0 34px 100px rgba(8, 16, 28, 0.32);
}

.selection-modal {
  width: min(920px, calc(100vw - 28px));
}

.selection-modal header p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.selection-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 18px;
  padding: 0 24px 24px;
}

.selection-list {
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.selection-item,
.selection-empty,
.selection-summary {
  min-width: 0;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid rgba(214, 224, 235, 0.94);
  border-radius: 8px;
}

.selection-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.selection-item strong {
  display: block;
  overflow-wrap: anywhere;
}

.selection-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.selection-item span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  margin-top: 10px;
  padding: 0 8px;
  color: #087568;
  font-size: 12px;
  font-weight: 850;
  background: rgba(10, 155, 143, 0.1);
  border-radius: 999px;
}

.selection-item-actions {
  display: grid;
  gap: 8px;
}

.selection-item-actions a,
.selection-item-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  background: #fff;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.selection-item-actions button {
  color: #a03324;
  border-color: rgba(240, 111, 47, 0.22);
}

.selection-summary {
  position: sticky;
  top: 16px;
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.98));
}

.selection-summary > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.selection-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.15;
}

.selection-summary strong span {
  color: var(--blue);
}

.selection-summary p,
.selection-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.selection-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.selection-actions .button,
.selection-empty .button {
  width: 100%;
}

.selection-actions .button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.selection-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  color: #087568;
  font-size: 13px;
  font-weight: 800;
}

.contact-popup .contact-box,
.detail-modal .contact-box {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(135deg, #106be9, #0a9b8f);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  gap: 8px;
  width: 178px;
}

.floating-wechat {
  display: grid;
}

.floating-wechat-card {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(214, 224, 235, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(9, 17, 31, 0.16);
}

.floating-wechat-card img {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(214, 224, 235, 0.9);
  border-radius: 8px;
}

.floating-wechat-copy {
  display: grid;
  gap: 3px;
  margin-top: 8px;
  text-align: center;
}

.floating-wechat-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.floating-wechat-copy span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.floating-wechat-copy .floating-wechat-benefit {
  color: #075f57;
  font-size: 12px;
  font-weight: 850;
}

.floating-wechat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}

.floating-wechat-actions a,
.floating-wechat-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 6px;
  color: #0b4db3;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 40px;
  padding: 0 13px;
  color: #203047;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 224, 235, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(9, 17, 31, 0.12);
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(9, 17, 31, 0.16);
}

.floating-action.primary {
  color: #fff;
  background: linear-gradient(180deg, #1475ff 0%, #0b58ca 100%);
  border-color: rgba(15, 104, 232, 0.28);
}

.wechat-floating-action {
  display: none;
}

.selection-floating-action {
  gap: 6px;
}

.selection-floating-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  font-size: 12px;
  background: #0b9487;
  border-radius: 999px;
}

.selection-floating-action.has-items {
  color: var(--blue-700);
  border-color: rgba(10, 155, 143, 0.24);
  background: #f3fffc;
}

[data-add-current-product].is-selected {
  color: #fff;
  background: linear-gradient(180deg, #0b9487 0%, #087568 100%);
  border-color: rgba(8, 117, 104, 0.28);
  box-shadow: 0 14px 30px rgba(10, 155, 143, 0.18);
}

.floating-action.back-top {
  display: none;
}

.floating-action.back-top.is-visible {
  display: inline-flex;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 104, 232, 0.2), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(10, 155, 143, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 78px 78px,
    #0b1220;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.footer-nav-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav-column a:hover {
  transform: translateX(3px);
}

@media (max-width: 1080px) {
  .site-header-pro {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-nav {
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 140px;
  }

  .hero,
  .subpage-hero,
  .product-hero {
    padding-top: 54px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .product-hero-copy h1 {
    font-size: 36px;
  }

  .hero-panel,
  .subpage-panel,
  .contact-page-card,
  .contact-grid,
  .credentials-grid {
    border-radius: 8px;
  }

  .console-search {
    gap: 8px;
  }

  .console-search input {
    font-size: 15px;
  }

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

  .card-actions a,
  .card-actions button {
    width: 100%;
  }

  .footer-grid-pro {
    display: grid;
  }
}

/* Executive redesign pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: #0a1020;
  background:
    linear-gradient(90deg, rgba(12, 20, 36, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #fbfcfd 0%, #edf3f7 44%, #f8fafc 100%);
}

body::selection {
  color: #fff;
  background: #0f68e8;
}

.container,
.hero-grid,
.subpage-hero-grid,
.product-hero-grid,
.split-grid,
.product-grid,
.product-carousel-shell,
.hero-copy,
.hero-panel,
.product-card,
.carousel-product,
.contact-grid,
.credentials-grid,
.footer-grid-pro {
  min-width: 0;
}

.site-header {
  isolation: isolate;
  min-height: 80px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(9, 17, 31, 0.08);
  box-shadow: 0 16px 44px rgba(9, 17, 31, 0.07);
  backdrop-filter: saturate(160%) blur(24px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(9, 17, 31, 0.1);
}

.brand img {
  width: 168px;
}

.brand {
  padding-inline: 8px 12px;
}

.desktop-nav {
  justify-content: flex-end;
  gap: 8px;
  color: #344054;
}

.nav-group > summary,
.nav-direct {
  min-height: 42px;
  padding: 0 13px;
  color: #344054;
  font-size: 14px;
  font-weight: 760;
  border: 1px solid transparent;
  border-radius: 8px;
}

.nav-group[open] > summary,
.nav-group > summary:hover,
.nav-direct:hover,
.nav-direct.active {
  color: #081424;
  background: rgba(248, 250, 252, 0.92);
  border-color: rgba(15, 104, 232, 0.14);
  box-shadow: 0 10px 28px rgba(9, 17, 31, 0.07);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1475ff 0%, #0b58ca 100%);
}

.nav-menu {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 32px 84px rgba(9, 17, 31, 0.18);
}

.nav-group-wide .mega-menu {
  width: min(940px, calc(100vw - 42px));
  gap: 14px;
  padding: 14px;
}

.nav-feature {
  min-height: 270px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(145deg, #081424 0%, #0d3c7a 54%, #0a8f84 100%);
}

.nav-card-grid a {
  min-height: 82px;
  background: #f8fafc;
  border-color: rgba(9, 17, 31, 0.08);
  border-radius: 8px;
}

.nav-card-grid a:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(9, 17, 31, 0.08);
}

.hero,
.subpage-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.045) 1px, transparent 1px) center / 92px 92px,
    linear-gradient(180deg, #fdfefe 0%, #edf5fb 100%);
}

.hero::before,
.subpage-hero::before,
.product-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(15, 104, 232, 0.12), transparent 36%),
    linear-gradient(270deg, rgba(10, 155, 143, 0.09), transparent 42%);
}

.hero::after,
.subpage-hero::after,
.product-hero::after {
  display: none;
}

.hero {
  padding: 112px 0 96px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 68px;
}

.hero h1,
.subpage-hero h1,
.product-hero-copy h1 {
  color: #08111f;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.04;
}

.hero-copy p,
.subpage-hero p,
.product-hero-summary {
  color: #3b485b;
  line-height: 1.86;
}

.eyebrow {
  min-height: 30px;
  padding: 0 12px;
  color: #0a4fb6;
  font-size: 12px;
  font-weight: 860;
  background: rgba(15, 104, 232, 0.08);
  border-color: rgba(15, 104, 232, 0.18);
  border-radius: 8px;
}

.button,
.card-actions a,
.card-actions button,
.carousel-product-foot a,
.carousel-product-foot button,
.console-search-submit,
.carousel-button {
  border-radius: 8px;
}

.button.primary,
.nav-cta,
.console-search-submit,
.card-actions .consult-link,
.carousel-product-foot button,
.contact-actions .button.primary {
  color: #fff;
  background: linear-gradient(180deg, #1475ff 0%, #0b58ca 100%);
  box-shadow: 0 18px 38px rgba(15, 104, 232, 0.24);
}

.button.secondary,
.button.neutral,
.card-actions .detail-link,
.carousel-product-foot a {
  color: #0b4fb6;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 104, 232, 0.16);
}

.button:hover,
.card-actions a:hover,
.card-actions button:hover,
.carousel-product-foot a:hover,
.carousel-product-foot button:hover {
  transform: translateY(-2px);
}

.trust-row {
  gap: 10px;
}

.trust-row span {
  min-height: 38px;
  color: #243044;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 17, 31, 0.04);
}

.hero-panel {
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.94));
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(9, 17, 31, 0.14);
}

.hero-panel::before {
  height: 5px;
  background: linear-gradient(90deg, #1475ff 0%, #0a9b8f 58%, #f2994a 100%);
}

.panel-top,
.console-metrics,
.console-item {
  min-width: 0;
}

.panel-top strong {
  color: #08111f;
  font-size: 26px;
}

.live-dot {
  flex: 0 0 auto;
  border: 1px solid rgba(10, 155, 143, 0.22);
  border-radius: 8px;
}

.console-search {
  min-height: 58px;
  background: #fff;
  border-color: rgba(9, 17, 31, 0.12);
  border-radius: 8px;
}

.console-search input {
  min-width: 0;
}

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

.console-metrics a,
.console-metrics div,
.console-item {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
}

.console-note {
  color: #0b4fb6;
  background: #eef5ff;
  border-radius: 8px;
}

.capability-grid {
  overflow: hidden;
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(9, 17, 31, 0.11);
}

.capability-grid article {
  background:
    linear-gradient(180deg, #fff, #f8fafc);
}

.capability-grid strong {
  font-weight: 900;
}

.product-carousel-band,
.products,
.category-strip {
  background: #f7fafc;
}

.product-carousel-shell {
  overflow: hidden;
}

.product-carousel {
  gap: 20px;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  will-change: scroll-position;
}

.carousel-product {
  flex-basis: calc((100% - 40px) / 3);
}

.carousel-product,
.product-card,
.related-card,
.category-card,
.faq-grid article,
.solution-grid article,
.promise-grid article,
.process-list li,
.credential-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(9, 17, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(9, 17, 31, 0.06);
}

.carousel-product:hover,
.product-card:hover,
.related-card:hover,
.category-card:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover {
  border-color: rgba(15, 104, 232, 0.22);
  box-shadow: 0 28px 68px rgba(9, 17, 31, 0.12);
}

.carousel-product-media,
.product-media {
  aspect-ratio: 16 / 10;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
}

.product-media img,
.carousel-product-media img,
.related-card img,
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.product-body,
.carousel-product-body,
.related-card-body {
  background: #fff;
}

.product-title h3,
.carousel-product-body h3,
.related-card-body h3 {
  color: #0b1220;
  font-weight: 860;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
}

.category-grid {
  gap: 14px;
}

.category-card {
  min-height: 98px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.category-card.active {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(135deg, #0f68e8 0%, #0a9b8f 100%);
}

.section-heading h2,
.carousel-head h2,
.credentials h2,
.contact h2 {
  color: #08111f;
  font-weight: 900;
}

.split-section,
.process,
.credentials {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.032) 1px, transparent 1px) 0 0 / 92px 92px,
    #fff;
}

.delivery,
.contact,
.faq {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.032) 1px, transparent 1px) 0 0 / 92px 92px,
    #f2f7fb;
}

.contact-grid,
.credentials-grid {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.subpage-panel,
.contact-page-card,
.product-hero-card,
.product-hero-image,
.product-hero-metrics article {
  border-radius: 8px;
}

.subpage-panel span,
.contact-page-card span,
.contact-large-number,
.product-hero-metrics .phone-metric strong {
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-hero {
  padding: 92px 0 58px;
}

.product-hero-copy h1 {
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.08;
}

.product-hero-image {
  padding: 16px;
}

.product-hero-image img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
}

.related-card img {
  aspect-ratio: 16 / 10;
  padding: 14px;
}

.modal-backdrop {
  background: rgba(8, 16, 28, 0.58);
  backdrop-filter: blur(18px);
}

.detail-modal {
  border-radius: 8px;
  box-shadow: 0 36px 110px rgba(8, 16, 28, 0.36);
}

.contact-popup-qr,
.contact-context,
.contact-popup-grid a,
.contact-popup-grid button,
.contact-popup-grid div,
.detail-modal .detail-list div,
.detail-modal .modal-image,
.detail-modal .contact-box {
  border-radius: 8px;
}

.contact-popup-qr img,
.footer-wechat-qr,
.contact-page-card img {
  object-fit: contain;
  aspect-ratio: 1 / 1;
  padding: 6px;
  background: #fff;
}

.site-footer {
  padding: 54px 0 42px;
  color: #cfdae8;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, #0d1525 0%, #080e19 100%);
}

.footer-grid-pro {
  gap: 38px;
}

.footer-grid p,
.footer-grid a,
.footer-links span,
.footer-contact-block p {
  color: #b8c4d4;
}

.footer-logo {
  width: 164px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.footer-nav-column strong,
.footer-contact-block strong {
  color: #fff;
  font-weight: 860;
}

.footer-contact-block {
  padding: 14px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-wechat-qr {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  border-radius: 8px;
}

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

  .hero-panel {
    width: 100%;
    max-width: none;
  }

  .product-hero-aside {
    position: static;
  }

  .carousel-product {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (min-width: 1181px) {
  .site-footer .footer-contact-block {
    display: none !important;
  }

  .footer-grid-pro {
    grid-template-columns: minmax(280px, 1.3fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) !important;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .section {
    padding: 54px 0;
  }

  .site-header {
    min-height: 66px;
    padding: 0 12px;
  }

  .brand img {
    width: 138px;
  }

  .brand {
    min-height: 44px;
    padding: 4px 6px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    inset-block-start: 66px;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
  }

  .mobile-nav .nav-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .hero,
  .subpage-hero,
  .product-hero {
    padding: 48px 0 42px;
  }

  .hero-grid,
  .subpage-hero-grid,
  .product-hero-grid {
    gap: 26px;
  }

  .hero h1,
  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.12;
  }

  .product-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.6vw, 38px);
    line-height: 1.16;
  }

  .hero-copy p,
  .subpage-hero p,
  .product-hero-summary {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.78;
  }

  .hero-actions,
  .product-hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button,
  .product-hero-actions .button,
  .contact-actions .button {
    width: 100%;
    min-width: 0;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-row span {
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-panel {
    width: 100%;
    padding: 16px;
  }

  .panel-top {
    align-items: flex-start;
    gap: 12px;
  }

  .panel-top strong {
    font-size: 22px;
  }

  .console-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 52px;
    padding: 0 8px 0 12px;
  }

  .console-search-submit {
    min-width: 58px;
    padding: 0 10px;
  }

  .console-metrics,
  .product-hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-toolbar-enhanced {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .product-toolbar-enhanced .product-count {
    justify-self: start;
    max-width: 100%;
  }

  .product-discovery-tools {
    justify-content: stretch;
  }

  .product-list-search {
    width: 100%;
  }

  .product-status {
    flex-basis: 100%;
    text-align: left;
  }

  .console-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .console-note {
    justify-self: start;
  }

  .capability-grid,
  .category-grid,
  .product-grid,
  .solution-grid,
  .promise-grid,
  .process-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .capability-strip {
    margin-top: 0;
  }

  .product-carousel-band {
    padding: 34px 0 40px;
  }

  .carousel-head {
    align-items: flex-start;
  }

  .carousel-head h2,
  .section-heading h2,
  .credentials h2,
  .contact h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .carousel-product {
    flex-basis: 88%;
    max-width: 88%;
  }

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

  .carousel-product-foot a {
    grid-column: 1 / -1;
  }

  .carousel-product-media,
  .product-media,
  .related-card img {
    aspect-ratio: 16 / 11;
    padding: 10px;
  }

  .product-title h3,
  .carousel-product-body h3 {
    min-height: auto;
  }

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

  .card-actions .detail-link {
    grid-column: 1 / -1;
  }

  .category-strip {
    padding: 20px 0;
  }

  .category-card {
    min-height: 82px;
  }

  .product-empty-rich {
    padding: 22px 14px;
  }

  .product-empty-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-empty-actions .button {
    width: 100%;
  }

  .floating-actions {
    right: 14px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 28px);
    gap: 8px;
  }

  .floating-action {
    min-width: 0;
    min-height: 38px;
    padding: 0 8px;
  }

  .floating-action.back-top.is-visible {
    grid-column: 1 / -1;
  }

  .selection-body {
    grid-template-columns: 1fr;
    padding: 0 14px 14px;
  }

  .selection-modal header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .selection-summary {
    position: static;
    order: -1;
  }

  .selection-item {
    grid-template-columns: 1fr;
  }

  .selection-item-actions {
    grid-template-columns: 1fr 1fr;
  }

  .subpage-panel span,
  .contact-page-card span,
  .contact-large-number {
    font-size: clamp(28px, 9vw, 34px);
  }

  .contact-grid,
  .credentials-grid {
    padding: 18px;
  }

  .product-hero-image,
  .product-hero-card,
  .product-hero-metrics article {
    box-shadow: 0 14px 34px rgba(9, 17, 31, 0.07);
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 10px;
  }

  .detail-modal {
    width: 100%;
    max-height: 90vh;
  }

  .contact-popup-body {
    grid-template-columns: 1fr;
  }

  .contact-popup-qr img {
    width: min(100%, 172px);
  }

  .contact-popup .contact-box strong {
    font-size: clamp(28px, 9vw, 36px);
  }

  .contact-popup .modal-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid-pro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .footer-contact-block {
    align-items: flex-start;
  }

  .footer-wechat-qr {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 720px) {
  .modal-backdrop {
    align-items: flex-end;
    padding: 8px;
  }

  .detail-modal {
    width: min(100%, calc(100vw - 16px));
    max-height: calc(100vh - 18px);
    overflow-x: hidden;
  }

  .detail-modal header,
  .detail-modal .modal-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-popup {
    width: min(100%, calc(100vw - 16px));
  }

  .contact-popup .modal-info,
  .contact-popup-body,
  .contact-popup-grid,
  .contact-popup .modal-actions {
    min-width: 0;
  }

  .contact-popup-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-popup-grid {
    grid-template-columns: 1fr;
  }

  .contact-popup-grid a,
  .contact-popup-grid button,
  .contact-popup-grid div {
    min-width: 0;
  }

  .contact-popup-grid strong,
  .contact-popup .contact-box strong {
    overflow-wrap: anywhere;
  }

  .contact-popup .contact-box {
    padding: 12px;
  }

  .contact-popup .contact-box strong {
    font-size: clamp(28px, 8.6vw, 34px);
    line-height: 1.08;
  }

  .contact-popup .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Phone number fit rules */
.subpage-panel,
.contact-page-card,
.contact-grid,
.product-hero-metrics article,
.detail-modal .contact-box,
.contact-popup .contact-box {
  min-width: 0;
  container-type: inline-size;
}

.subpage-panel span,
.contact-page-card span,
.contact-large-number,
.product-hero-metrics .phone-metric strong,
.detail-modal .contact-box strong,
.contact-popup .contact-box strong {
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.subpage-panel span,
.contact-page-card span {
  font-size: clamp(24px, 7.2cqw, 34px) !important;
  line-height: 1.08;
}

.contact-large-number {
  font-size: clamp(26px, 8cqw, 42px) !important;
  line-height: 1.05;
}

.product-hero-metrics .phone-metric strong {
  font-size: clamp(15px, 1.35vw, 17px);
}

@media (max-width: 960px) {
  .subpage-panel span,
  .contact-page-card span {
    font-size: clamp(23px, 7cqw, 32px) !important;
  }
}

@media (max-width: 520px) {
  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(30px, 9vw, 36px) !important;
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .subpage-hero p {
    overflow-wrap: anywhere;
  }

  .button,
  .hero-actions .button,
  .contact-actions .button {
    min-width: 0;
  }

  .subpage-panel,
  .contact-page-card {
    padding: 16px;
  }

  .subpage-panel span,
  .contact-page-card span,
  .contact-large-number {
    font-size: clamp(21px, 7cqw, 28px) !important;
  }
}

html[data-page] #products .load-more-row {
  margin-top: 24px !important;
}

html[data-page] #products #loadMoreProducts {
  min-width: 290px !important;
  min-height: 58px !important;
  padding: 0 32px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  background: linear-gradient(180deg, #1682f3 0%, #0b5dcc 100%) !important;
  border: 1px solid #0953b2 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 22px rgba(11, 93, 204, 0.24) !important;
}

html[data-page] #products #loadMoreProducts:hover {
  background: linear-gradient(180deg, #087cff 0%, #084fac 100%) !important;
  box-shadow: 0 14px 28px rgba(11, 93, 204, 0.31) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 520px) {
  html[data-page] #products #loadMoreProducts {
    width: min(100%, 320px) !important;
    min-width: 0 !important;
    min-height: 54px !important;
    font-size: 17px !important;
  }
}

html[data-page] .contact-popup-grid .enterprise-grid-action {
  grid-column: 1 / -1 !important;
  min-height: 105px !important;
}

html[data-page] .contact-popup-grid > button,
html[data-page] .contact-popup-grid > div {
  min-height: 92px !important;
}

@media (max-width: 420px) {
  html[data-page] .contact-popup-grid {
    grid-template-columns: 1fr !important;
  }

  html[data-page] .contact-popup-grid .enterprise-grid-action {
    grid-column: auto !important;
  }
}

/* Contact dialog WeChat ID: quiet information row, not a second CTA block. */
html[data-page] .contact-popup .contact-box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-height: 76px !important;
  padding: 13px 18px !important;
  color: #18253a !important;
  background: #f7faff !important;
  border: 1px solid #d8e6f7 !important;
  border-left: 4px solid #1682f3 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

html[data-page] .contact-popup .contact-box span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #66768d !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

html[data-page] .contact-popup .contact-box span b {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: #1682f3;
  border-radius: 9px;
}

html[data-page] .contact-popup .contact-box strong {
  color: #0b4fb6 !important;
  font-size: clamp(25px, 2.4vw, 33px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
}

@media (max-width: 440px) {
  html[data-page] .contact-popup .contact-box {
    min-height: 68px !important;
    padding: 11px 14px !important;
  }

  html[data-page] .contact-popup .contact-box strong {
    font-size: 23px !important;
  }
}

html[data-page] .contact-popup .contact-box {
  min-height: 84px !important;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, #f4f9ff 0%, #e7f2ff 100%) !important;
  border: 2px solid #a9d0ff !important;
  border-left: 6px solid #087cff !important;
  box-shadow: 0 9px 22px rgba(23, 105, 224, 0.15) !important;
}

html[data-page] .contact-popup .contact-box span {
  color: #385d8c !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

html[data-page] .contact-popup .contact-box span b {
  width: 38px !important;
  height: 38px !important;
  font-size: 17px !important;
  background: linear-gradient(180deg, #1988fa 0%, #0866d8 100%) !important;
  box-shadow: 0 6px 14px rgba(8, 102, 216, 0.22) !important;
}

html[data-page] .contact-popup .contact-box strong {
  padding: 8px 13px !important;
  color: #084fac !important;
  font-size: clamp(30px, 2.7vw, 38px) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  border: 1px solid rgba(130, 186, 249, 0.6) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(23, 105, 224, 0.08) !important;
}

@media (max-width: 440px) {
  html[data-page] .contact-popup .contact-box strong {
    padding: 6px 10px !important;
    font-size: 25px !important;
  }
}

/* Compact footer proportions. */
html[data-page] .site-footer {
  padding: 20px 0 22px !important;
}

html[data-page] .site-footer .footer-grid-pro {
  padding: 20px 28px !important;
  min-height: 0 !important;
}

html[data-page] .site-footer .footer-logo {
  width: min(190px, 100%) !important;
  margin-bottom: 11px !important;
}

html[data-page] .site-footer .footer-brand-block > p {
  margin-bottom: 12px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

html[data-page] .site-footer .footer-nav-column {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

html[data-page] .site-footer .footer-nav-column strong {
  margin-bottom: 9px !important;
  font-size: 16px !important;
}

html[data-page] .site-footer .footer-nav-column a {
  margin: 5px 0 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

html[data-page] .site-footer .footer-cert-line span {
  padding: 4px 9px !important;
}

@media (max-width: 820px) {
  html[data-page] .site-footer .footer-grid-pro {
    padding: 22px !important;
  }

  html[data-page] .site-footer .footer-brand-block {
    margin-bottom: 16px !important;
    padding-bottom: 16px !important;
  }
}

/* Rebuilt footer: compact brand panel with grouped navigation. */
html[data-page] .site-footer {
  padding: 34px 0 38px !important;
}

html[data-page] .site-footer .footer-grid-pro {
  width: min(1180px, calc(100% - 40px)) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 1.55fr) minmax(170px, 0.62fr) minmax(180px, 0.68fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 30px 34px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(23, 105, 224, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 40px rgba(55, 90, 135, 0.08) !important;
  backdrop-filter: blur(14px) saturate(120%) !important;
}

html[data-page] .site-footer .footer-brand-block {
  max-width: 480px !important;
  padding-right: clamp(30px, 5vw, 76px) !important;
}

html[data-page] .site-footer .footer-logo {
  width: min(220px, 100%) !important;
  height: auto !important;
  margin-bottom: 17px !important;
  border-radius: 8px !important;
}

html[data-page] .site-footer .footer-brand-block > p {
  max-width: 430px !important;
  margin: 0 0 18px !important;
  color: #62728a !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

html[data-page] .site-footer .footer-nav-column {
  min-width: 0 !important;
  padding: 4px 26px !important;
  border-left: 1px solid rgba(23, 105, 224, 0.12) !important;
}

html[data-page] .site-footer .footer-nav-column strong {
  display: block !important;
  margin-bottom: 14px !important;
  color: #0b5dcc !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

html[data-page] .site-footer .footer-nav-column a {
  display: block !important;
  width: fit-content !important;
  margin: 9px 0 !important;
  color: #65758b !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  transition: color 0.18s ease, transform 0.18s ease !important;
}

html[data-page] .site-footer .footer-nav-column a:hover {
  color: #0b5dcc !important;
  transform: translateX(3px) !important;
}

html[data-page] .site-footer .footer-cert-line {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

html[data-page] .site-footer .footer-cert-line span {
  padding: 6px 10px !important;
  color: #376da9 !important;
  font-size: 12px !important;
  background: #f3f8ff !important;
  border: 1px solid #d8e9ff !important;
  border-radius: 999px !important;
}

@media (max-width: 820px) {
  html[data-page] .site-footer .footer-grid-pro {
    grid-template-columns: 1fr 1fr !important;
    padding: 26px !important;
  }

  html[data-page] .site-footer .footer-brand-block {
    grid-column: 1 / -1 !important;
    max-width: none !important;
    margin-bottom: 24px !important;
    padding: 0 0 24px !important;
    border-bottom: 1px solid rgba(23, 105, 224, 0.12) !important;
  }

  html[data-page] .site-footer .footer-nav-column {
    padding: 0 20px 0 0 !important;
    border-left: 0 !important;
  }

  html[data-page] .site-footer .footer-nav-column + .footer-nav-column {
    padding-left: 24px !important;
    border-left: 1px solid rgba(23, 105, 224, 0.12) !important;
  }
}

@media (max-width: 520px) {
  html[data-page] .site-footer {
    padding: 22px 0 26px !important;
  }

  html[data-page] .site-footer .footer-grid-pro {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    padding: 22px 20px !important;
  }

  html[data-page] .site-footer .footer-nav-column,
  html[data-page] .site-footer .footer-nav-column + .footer-nav-column {
    padding: 18px 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(23, 105, 224, 0.12) !important;
  }
}

/* Products contact card: verified desktop and narrow-phone layout. */
html[data-page="products"],
html[data-page="products"] body {
  max-width: 100%;
  overflow-x: clip;
}

html[data-page="products"] .subpage-hero-grid > *,
html[data-page="products"] .subpage-panel,
html[data-page="products"] .product-contact-copy {
  box-sizing: border-box;
  min-width: 0 !important;
}

html[data-page="products"] .product-contact-copy .enterprise-wechat-button {
  white-space: nowrap !important;
}

@media (min-width: 981px) {
  html[data-page="products"] .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px !important;
  }

  html[data-page="products"] .subpage-panel {
    width: 420px !important;
    grid-template-columns: minmax(0, 1fr) 150px !important;
  }
}

@media (max-width: 980px) {
  html[data-page="products"] .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page="products"] .subpage-panel {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 430px) {
  html[data-page="products"] .subpage-panel {
    grid-template-columns: minmax(0, 1fr) 108px !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  html[data-page="products"] .product-contact-qr {
    width: 108px !important;
    height: 108px !important;
    padding: 4px;
  }

  html[data-page="products"] .product-contact-copy {
    gap: 9px;
  }

  html[data-page="products"] .product-contact-copy .enterprise-wechat-button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  html[data-page="products"] .product-contact-note {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}

/* Cross-device finishing rules: iOS safe areas and mobile touch targets. */
html[data-page] {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html[data-page] body {
  min-width: 320px;
}

html[data-page] img,
html[data-page] video {
  max-width: 100%;
}

@supports (padding: max(0px)) {
  html[data-page] .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

@media (max-width: 720px) {
  html[data-page] a,
  html[data-page] button,
  html[data-page] summary {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 122, 255, 0.14);
  }

  html[data-page] .button,
  html[data-page] .enterprise-wechat-button,
  html[data-page] .category-card {
    min-height: 44px;
  }

  html[data-page] input,
  html[data-page] select,
  html[data-page] textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 380px) {
  .subpage-panel span,
  .contact-page-card span,
  .contact-large-number {
    font-size: clamp(19px, 6.8cqw, 25px) !important;
  }
}

.contact-page-card {
  overflow: hidden;
}

.contact-page-card span,
.subpage-panel span,
.contact-large-number {
  display: block;
  width: 100%;
  text-align: inherit;
  transform-origin: left center;
}

/* Premium UI refinement pass */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #0b1220;
  --muted: #667085;
  --line: #e2e8f0;
  --blue: #155eef;
  --blue-700: #0b4db3;
  --teal: #0f9f8f;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.14);
}

body {
  background:
    linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 42%, #f8fafc 100%);
}

.section-band,
.hero,
.subpage-hero,
.product-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 94, 239, 0.08), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(15, 159, 143, 0.075), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef5f8 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.055);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.085);
}

.nav-group > summary,
.nav-direct,
.nav-cta,
.button,
.menu-toggle,
.category-card,
.product-card,
.carousel-product,
.hero-panel,
.subpage-panel,
.contact-page-card,
.contact-grid,
.credentials-grid,
.credential-card,
.promise-grid article,
.solution-grid article,
.process-list li,
.faq-grid article,
.detail-modal,
.contact-popup-qr,
.contact-context,
.contact-popup-grid a,
.contact-popup-grid button,
.contact-popup-grid div,
.product-list-search,
.product-count,
.floating-action {
  border-radius: 10px;
}

.eyebrow {
  color: #0b4db3;
  background: rgba(21, 94, 239, 0.07);
  border-color: rgba(21, 94, 239, 0.16);
}

.hero h1,
.subpage-hero h1,
.product-hero-copy h1,
.section-heading h2,
.credentials h2,
.contact h2 {
  color: #080f1f;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-copy p,
.subpage-hero p,
.product-hero-summary,
.section-heading p {
  color: #526071;
}

.hero-panel,
.subpage-panel,
.contact-page-card,
.contact-grid,
.credentials-grid,
.credential-card,
.promise-grid article,
.solution-grid article,
.process-list li,
.faq-grid article,
.product-card,
.carousel-product,
.related-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.hero-panel,
.subpage-panel,
.contact-page-card {
  backdrop-filter: none;
}

.category-strip {
  background: rgba(248, 250, 252, 0.72);
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}

.category-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.category-card.active {
  background:
    linear-gradient(135deg, #0d4fb8 0%, #127f76 100%);
  box-shadow: 0 20px 48px rgba(13, 79, 184, 0.22);
}

.product-card:hover,
.carousel-product:hover,
.category-card:hover,
.related-card:hover,
.solution-grid article:hover,
.promise-grid article:hover,
.process-list li:hover,
.credential-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 94, 239, 0.2);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.11);
}

.product-media,
.carousel-product-media,
.related-card img,
.product-hero-image img {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.product-media img,
.carousel-product-media img,
.related-card img,
.product-hero-image img {
  filter: none;
}

.product-card-meta span,
.product-tag-row span,
.category-count,
.console-note {
  border-radius: 999px;
}

.button.primary,
.nav-cta,
.console-search-submit,
.product-list-search button,
.card-actions .consult-link,
.carousel-product-foot button,
.floating-action.primary {
  background: linear-gradient(180deg, #1769f2 0%, #0d56c8 100%);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.2);
}

.button.secondary,
.button.neutral,
.product-clear-button,
.card-actions .detail-link,
.carousel-product-foot a {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(21, 94, 239, 0.16);
}

.console-search,
.product-list-search {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(203, 213, 225, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.contact-popup .contact-box,
.detail-modal .contact-box {
  background:
    linear-gradient(135deg, #0d56c8 0%, #0b9487 100%);
}

.modal-backdrop {
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(20px);
}

.detail-modal {
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 34px 120px rgba(15, 23, 42, 0.32);
}

.floating-actions {
  filter: none;
}

body {
  padding-bottom: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(21, 94, 239, 0.16), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(15, 159, 143, 0.14), transparent 28%),
    #0b1220;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 176px;
  }

  .category-strip {
    background: rgba(248, 250, 252, 0.92);
  }

  .hero-panel,
  .subpage-panel,
  .contact-page-card,
  .product-card,
  .carousel-product {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  }
}

/* Proportion tuning for a quieter, more premium first screen */
.subpage-hero,
.product-hero {
  padding: 78px 0 64px;
}

.subpage-hero h1 {
  font-size: clamp(48px, 5.2vw, 72px);
}

.subpage-hero p {
  max-width: 760px;
  font-size: 18px;
}

.subpage-panel,
.contact-page-card {
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}

.product-toolbar {
  align-items: center;
}

.products.section {
  padding-top: 64px;
}

.product-count {
  min-height: 42px;
}

.floating-action {
  min-height: 42px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(203, 213, 225, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.floating-action.primary {
  background: linear-gradient(180deg, #155eef 0%, #0b4db3 100%);
}

.contact-popup .modal-actions {
  gap: 12px;
}

@media (max-width: 720px) {
  .subpage-hero,
  .product-hero {
    padding: 42px 0 34px;
  }

  .subpage-hero h1 {
    font-size: clamp(32px, 9.2vw, 40px) !important;
  }

  .subpage-hero p {
    font-size: 15px;
    line-height: 1.78;
  }

  .subpage-panel,
  .contact-page-card {
    padding: 18px;
  }

  .category-card {
    min-height: 76px;
  }

  .products.section {
    padding-top: 42px;
  }

  .floating-actions {
    bottom: 10px;
  }

  .floating-action {
    min-height: 36px;
  }
}

/* Scroll feel fix: keep the hero elegant without trapping the first wheel gestures */
.hero {
  min-height: auto;
  padding: clamp(54px, 6.4vw, 82px) 0 clamp(42px, 5vw, 62px);
}

.hero-grid {
  align-items: center;
}

.hero h1 {
  font-size: clamp(44px, 4.6vw, 64px);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions,
.trust-row {
  margin-top: 26px;
}

.hero-panel {
  max-width: 560px;
  justify-self: end;
}

.capability-strip {
  margin-top: 0;
  padding: 26px 0 34px;
}

.capability-grid {
  transform: none;
}

@media (max-width: 1080px) {
  .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 0 34px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.2vw, 40px) !important;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions,
  .trust-row {
    margin-top: 20px;
  }
}

/* Product selection list final overrides */
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
}

.card-actions a,
.card-actions button,
.carousel-product-foot a,
.carousel-product-foot button {
  min-width: 0;
  white-space: nowrap;
}

.card-actions .selection-link {
  color: #0b6f65;
  background: rgba(10, 155, 143, 0.1);
  border-color: rgba(10, 155, 143, 0.2);
  box-shadow: none;
}

.card-actions .selection-link.is-selected,
.carousel-product-foot button.is-selected {
  color: #fff;
  background: linear-gradient(180deg, #0b9487 0%, #087568 100%);
  border-color: rgba(8, 117, 104, 0.28);
  box-shadow: 0 14px 30px rgba(10, 155, 143, 0.18);
}

.carousel-product-foot {
  grid-template-columns: 1fr auto auto;
}

.selection-modal {
  width: min(920px, calc(100vw - 28px));
}

.selection-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 18px;
  padding: 0 24px 24px;
}

.selection-list {
  display: grid;
  gap: 10px;
}

.selection-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .contact-consult-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    padding: 20px;
  }

  .contact-action-card {
    min-height: 82px;
    padding: 16px;
  }

  .contact-action-card strong {
    font-size: 19px;
  }

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

  .card-actions .detail-link {
    grid-column: 1 / -1;
  }

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

  .carousel-product-foot a {
    grid-column: 1 / -1;
  }

  .selection-body {
    grid-template-columns: 1fr;
    padding: 0 14px 14px;
  }

  .selection-item {
    grid-template-columns: 1fr;
  }

  .selection-summary {
    position: static;
    order: -1;
  }

  .floating-actions {
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    width: auto;
    gap: 6px;
  }

  .floating-wechat-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 68px;
    align-items: center;
    gap: 8px;
    min-height: 66px;
    padding: 7px 8px;
  }

  .floating-wechat-card img {
    width: 52px;
    height: 52px;
    padding: 4px;
  }

  .floating-wechat-copy {
    gap: 2px;
    min-width: 0;
    margin-top: 0;
    text-align: left;
  }

  .floating-wechat-copy strong {
    font-size: 12px;
  }

  .floating-wechat-actions {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 0;
  }

  .floating-wechat-actions a,
  .floating-wechat-actions button {
    min-height: 24px;
    padding: 0 4px;
    font-size: 10px;
  }

  .floating-wechat-copy span {
    font-size: 10px;
    line-height: 1.3;
    white-space: normal;
  }

  .floating-action {
    display: none;
  }

  .selection-floating-action.has-items {
    display: inline-flex;
    align-self: stretch;
    min-width: 76px;
    min-height: 68px;
    padding: 0 8px;
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(9, 17, 31, 0.12);
  }

  .floating-action.back-top.is-visible {
    display: none;
  }
}

/* Keep footer contact numbers readable in narrow contact cards. */
.footer-contact-block {
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.footer-contact-block > div {
  min-width: 0;
}

.footer-contact-block p,
.footer-contact-block strong {
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-contact-block strong {
  font-size: 14px;
  line-height: 1.35;
}

.footer-contact-block p:nth-of-type(2),
.footer-contact-block p:nth-of-type(3) {
  white-space: normal;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 380px) {
  .footer-contact-block {
    gap: 10px;
  }

  .footer-contact-block > div {
    min-width: 132px;
  }

  .footer-contact-block p:nth-of-type(2),
  .footer-contact-block p:nth-of-type(3) {
    font-size: 14px;
  }
}

/* Home scroll performance pass: reduce large repaints during wheel gestures. */
html[data-page="home"] {
  scroll-behavior: auto;
}

html[data-page="home"] body {
  background: #f6f8fb;
}

html[data-page="home"] .site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.055);
  transform: translateZ(0);
}

html[data-page="home"] .site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.075);
}

html[data-page="home"] .hero,
html[data-page="home"] .section-band {
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 48%, #eaf8f5 100%);
}

html[data-page="home"] .hero-panel,
html[data-page="home"] .trust-row span,
html[data-page="home"] .contact-grid,
html[data-page="home"] .credentials-grid {
  backdrop-filter: none;
}

html[data-page="home"] .hero-panel {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

html[data-page="home"] .mobile-nav,
html[data-page="home"] .modal-backdrop {
  backdrop-filter: none;
}

html[data-page="home"] .product-carousel {
  will-change: auto;
}

html[data-page="home"] .section,
html[data-page="home"] .faq {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

html[data-page="home"] .floating-actions {
  contain: layout paint;
  transform: translateZ(0);
}

html[data-page="home"] .floating-action {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (min-width: 1181px) {
  html[data-page="home"] .products .container {
    padding-right: 168px;
  }
}

html[data-page="home"] .button,
html[data-page="home"] .card-actions a,
html[data-page="home"] .card-actions button,
html[data-page="home"] .carousel-product-foot a,
html[data-page="home"] .carousel-product-foot button,
html[data-page="home"] .floating-action {
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

html[data-page="home"] .button:hover,
html[data-page="home"] .card-actions a:hover,
html[data-page="home"] .card-actions button:hover,
html[data-page="home"] .carousel-product-foot a:hover,
html[data-page="home"] .carousel-product-foot button:hover,
html[data-page="home"] .floating-action:hover {
  transform: none;
}

html[data-page="home"] .reveal,
html[data-page="home"] .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

html[data-page="home"] .product-card,
html[data-page="home"] .carousel-product,
html[data-page="home"] .category-card,
html[data-page="home"] .solution-grid article,
html[data-page="home"] .promise-grid article,
html[data-page="home"] .process-list li,
html[data-page="home"] .credential-card {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

html[data-page="home"] .product-card:hover,
html[data-page="home"] .carousel-product:hover,
html[data-page="home"] .category-card:hover,
html[data-page="home"] .solution-grid article:hover,
html[data-page="home"] .promise-grid article:hover,
html[data-page="home"] .process-list li:hover,
html[data-page="home"] .credential-card:hover {
  transform: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

html[data-page="home"] .home-operations {
  background:
    linear-gradient(90deg, rgba(9, 17, 31, 0.028) 1px, transparent 1px) 0 0 / 92px 92px,
    #ffffff;
}

html[data-page="home"] .operations-list article {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

html[data-page="home"] .operations-material-card {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

/* Subpage scroll performance pass: keep product/detail pages smooth during wheel gestures. */
html:not([data-page="home"]) {
  scroll-behavior: auto;
}

html:not([data-page="home"]) body {
  background: #f6f8fb;
}

html:not([data-page="home"]) .site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.055);
  transform: translateZ(0);
}

html:not([data-page="home"]) .site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.075);
}

html:not([data-page="home"]) .mobile-nav,
html:not([data-page="home"]) .modal-backdrop,
html:not([data-page="home"]) .subpage-panel,
html:not([data-page="home"]) .contact-grid,
html:not([data-page="home"]) .credentials-grid,
html:not([data-page="home"]) .product-hero-card,
html:not([data-page="home"]) .product-hero-image,
html:not([data-page="home"]) .product-hero-metrics article {
  backdrop-filter: none;
}

html:not([data-page="home"]) .section,
html:not([data-page="home"]) .faq {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

html:not([data-page="home"]) .reveal,
html:not([data-page="home"]) .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

html:not([data-page="home"]) .subpage-hero,
html:not([data-page="home"]) .product-hero,
html:not([data-page="home"]) .section-band {
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 48%, #eaf8f5 100%);
}

html:not([data-page="home"]) .product-card,
html:not([data-page="home"]) .carousel-product,
html:not([data-page="home"]) .category-card,
html:not([data-page="home"]) .solution-grid article,
html:not([data-page="home"]) .promise-grid article,
html:not([data-page="home"]) .process-list li,
html:not([data-page="home"]) .credential-card,
html:not([data-page="home"]) .faq-grid article,
html:not([data-page="home"]) .subpage-panel,
html:not([data-page="home"]) .product-hero-card,
html:not([data-page="home"]) .product-hero-image,
html:not([data-page="home"]) .product-hero-metrics article {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

html:not([data-page="home"]) .product-card:hover,
html:not([data-page="home"]) .carousel-product:hover,
html:not([data-page="home"]) .category-card:hover,
html:not([data-page="home"]) .solution-grid article:hover,
html:not([data-page="home"]) .promise-grid article:hover,
html:not([data-page="home"]) .process-list li:hover,
html:not([data-page="home"]) .credential-card:hover,
html:not([data-page="home"]) .faq-grid article:hover,
html:not([data-page="home"]) .subpage-panel:hover,
html:not([data-page="home"]) .product-hero-card:hover,
html:not([data-page="home"]) .product-hero-image:hover,
html:not([data-page="home"]) .product-hero-metrics article:hover {
  transform: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

html:not([data-page="home"]) .button,
html:not([data-page="home"]) .card-actions a,
html:not([data-page="home"]) .card-actions button,
html:not([data-page="home"]) .floating-action {
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

html:not([data-page="home"]) .button:hover,
html:not([data-page="home"]) .card-actions a:hover,
html:not([data-page="home"]) .card-actions button:hover,
html:not([data-page="home"]) .floating-action:hover {
  transform: none;
}

@media (max-width: 1080px) {
  .operations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .hero-proof-row {
    display: grid;
    gap: 8px;
  }

  .console-service-note {
    padding: 12px;
    font-size: 13px;
  }

  .home-operations {
    padding: 42px 0;
  }

  .operations-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .operations-copy p {
    font-size: 15px;
  }

  .operations-material-card {
    padding: 16px;
  }

  .operations-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .operations-list strong {
    font-size: 20px;
  }

  .operations-tags em {
    min-height: 26px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html[data-page="home"] .reveal {
    transition-duration: 0s;
  }
}

/* Product browsing performance pass: keep secondary pages responsive while scrolling. */
html[data-page="products"],
html[data-page="subpage"],
html[data-page="product"] {
  scroll-behavior: auto;
}

html[data-page="products"] *,
html[data-page="subpage"] *,
html[data-page="product"] * {
  animation-duration: 0s;
  animation-delay: 0s;
}

html[data-page="products"] .site-header,
html[data-page="subpage"] .site-header,
html[data-page="product"] .site-header {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.055);
  transition: background-color 120ms ease, border-color 120ms ease;
}

html[data-page="products"] .site-header.is-scrolled,
html[data-page="subpage"] .site-header.is-scrolled,
html[data-page="product"] .site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.075);
}

html[data-page="products"] .subpage-hero::before,
html[data-page="products"] .subpage-hero::after,
html[data-page="subpage"] .subpage-hero::before,
html[data-page="subpage"] .subpage-hero::after,
html[data-page="product"] .product-hero::before,
html[data-page="product"] .product-hero::after,
html[data-page="product"] .site-footer::before {
  display: none;
}

html[data-page="products"] .subpage-hero,
html[data-page="subpage"] .subpage-hero,
html[data-page="product"] .product-hero,
html[data-page="product"] .product-section,
html[data-page="products"] .section-band,
html[data-page="subpage"] .section-band,
html[data-page="product"] .section-band {
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 54%, #eaf8f5 100%);
}

html[data-page="products"] .split-section,
html[data-page="products"] .process,
html[data-page="products"] .credentials,
html[data-page="products"] .delivery,
html[data-page="products"] .contact,
html[data-page="products"] .faq,
html[data-page="subpage"] .split-section,
html[data-page="subpage"] .process,
html[data-page="subpage"] .credentials,
html[data-page="subpage"] .delivery,
html[data-page="subpage"] .contact,
html[data-page="subpage"] .faq,
html[data-page="product"] .split-section,
html[data-page="product"] .process,
html[data-page="product"] .credentials,
html[data-page="product"] .delivery,
html[data-page="product"] .contact,
html[data-page="product"] .faq {
  background: #f6f8fb;
}

html[data-page="products"] .section,
html[data-page="products"] .faq,
html[data-page="subpage"] .section,
html[data-page="subpage"] .faq,
html[data-page="product"] .section,
html[data-page="product"] .faq {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

html[data-page="products"] .product-carousel,
html[data-page="subpage"] .product-carousel,
html[data-page="product"] .product-carousel {
  scroll-behavior: auto;
  will-change: auto;
}

html[data-page="products"] .product-hero-aside,
html[data-page="subpage"] .product-hero-aside,
html[data-page="product"] .product-hero-aside {
  position: static;
}

html[data-page="products"] .mobile-nav,
html[data-page="products"] .nav-menu,
html[data-page="products"] .modal-backdrop,
html[data-page="products"] .hero-panel,
html[data-page="products"] .subpage-panel,
html[data-page="products"] .contact-page-card,
html[data-page="products"] .contact-grid,
html[data-page="products"] .credentials-grid,
html[data-page="products"] .product-hero-card,
html[data-page="products"] .product-hero-image,
html[data-page="products"] .product-hero-metrics article,
html[data-page="subpage"] .mobile-nav,
html[data-page="subpage"] .nav-menu,
html[data-page="subpage"] .modal-backdrop,
html[data-page="subpage"] .hero-panel,
html[data-page="subpage"] .subpage-panel,
html[data-page="subpage"] .contact-page-card,
html[data-page="subpage"] .contact-grid,
html[data-page="subpage"] .credentials-grid,
html[data-page="subpage"] .product-hero-card,
html[data-page="subpage"] .product-hero-image,
html[data-page="subpage"] .product-hero-metrics article,
html[data-page="product"] .mobile-nav,
html[data-page="product"] .nav-menu,
html[data-page="product"] .modal-backdrop,
html[data-page="product"] .hero-panel,
html[data-page="product"] .subpage-panel,
html[data-page="product"] .contact-page-card,
html[data-page="product"] .contact-grid,
html[data-page="product"] .credentials-grid,
html[data-page="product"] .product-hero-card,
html[data-page="product"] .product-hero-image,
html[data-page="product"] .product-hero-metrics article {
  backdrop-filter: none;
}

html[data-page="products"] .reveal,
html[data-page="products"] .reveal.is-visible,
html[data-page="subpage"] .reveal,
html[data-page="subpage"] .reveal.is-visible,
html[data-page="product"] .reveal,
html[data-page="product"] .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

html[data-page="products"] .brand,
html[data-page="products"] .button,
html[data-page="products"] .nav-direct,
html[data-page="products"] .nav-cta,
html[data-page="products"] .product-card,
html[data-page="products"] .carousel-product,
html[data-page="products"] .related-card,
html[data-page="products"] .category-card,
html[data-page="products"] .solution-grid article,
html[data-page="products"] .promise-grid article,
html[data-page="products"] .process-list li,
html[data-page="products"] .credential-card,
html[data-page="products"] .faq-grid article,
html[data-page="products"] .subpage-panel,
html[data-page="products"] .contact-page-card,
html[data-page="products"] .product-hero-card,
html[data-page="products"] .product-hero-image,
html[data-page="products"] .product-hero-metrics article,
html[data-page="subpage"] .brand,
html[data-page="subpage"] .button,
html[data-page="subpage"] .nav-direct,
html[data-page="subpage"] .nav-cta,
html[data-page="subpage"] .product-card,
html[data-page="subpage"] .carousel-product,
html[data-page="subpage"] .related-card,
html[data-page="subpage"] .category-card,
html[data-page="subpage"] .solution-grid article,
html[data-page="subpage"] .promise-grid article,
html[data-page="subpage"] .process-list li,
html[data-page="subpage"] .credential-card,
html[data-page="subpage"] .faq-grid article,
html[data-page="subpage"] .subpage-panel,
html[data-page="subpage"] .contact-page-card,
html[data-page="subpage"] .product-hero-card,
html[data-page="subpage"] .product-hero-image,
html[data-page="subpage"] .product-hero-metrics article,
html[data-page="product"] .brand,
html[data-page="product"] .button,
html[data-page="product"] .nav-direct,
html[data-page="product"] .nav-cta,
html[data-page="product"] .product-card,
html[data-page="product"] .carousel-product,
html[data-page="product"] .related-card,
html[data-page="product"] .category-card,
html[data-page="product"] .solution-grid article,
html[data-page="product"] .promise-grid article,
html[data-page="product"] .process-list li,
html[data-page="product"] .credential-card,
html[data-page="product"] .faq-grid article,
html[data-page="product"] .subpage-panel,
html[data-page="product"] .contact-page-card,
html[data-page="product"] .product-hero-card,
html[data-page="product"] .product-hero-image,
html[data-page="product"] .product-hero-metrics article {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

html[data-page="products"] .brand:hover,
html[data-page="products"] .button:hover,
html[data-page="products"] .nav-direct:hover,
html[data-page="products"] .nav-cta:hover,
html[data-page="products"] .product-card:hover,
html[data-page="products"] .carousel-product:hover,
html[data-page="products"] .related-card:hover,
html[data-page="products"] .category-card:hover,
html[data-page="products"] .solution-grid article:hover,
html[data-page="products"] .promise-grid article:hover,
html[data-page="products"] .process-list li:hover,
html[data-page="products"] .credential-card:hover,
html[data-page="products"] .faq-grid article:hover,
html[data-page="products"] .subpage-panel:hover,
html[data-page="products"] .contact-page-card:hover,
html[data-page="products"] .product-hero-card:hover,
html[data-page="products"] .product-hero-image:hover,
html[data-page="products"] .product-hero-metrics article:hover,
html[data-page="subpage"] .brand:hover,
html[data-page="subpage"] .button:hover,
html[data-page="subpage"] .nav-direct:hover,
html[data-page="subpage"] .nav-cta:hover,
html[data-page="subpage"] .product-card:hover,
html[data-page="subpage"] .carousel-product:hover,
html[data-page="subpage"] .related-card:hover,
html[data-page="subpage"] .category-card:hover,
html[data-page="subpage"] .solution-grid article:hover,
html[data-page="subpage"] .promise-grid article:hover,
html[data-page="subpage"] .process-list li:hover,
html[data-page="subpage"] .credential-card:hover,
html[data-page="subpage"] .faq-grid article:hover,
html[data-page="subpage"] .subpage-panel:hover,
html[data-page="subpage"] .contact-page-card:hover,
html[data-page="subpage"] .product-hero-card:hover,
html[data-page="subpage"] .product-hero-image:hover,
html[data-page="subpage"] .product-hero-metrics article:hover,
html[data-page="product"] .brand:hover,
html[data-page="product"] .button:hover,
html[data-page="product"] .nav-direct:hover,
html[data-page="product"] .nav-cta:hover,
html[data-page="product"] .product-card:hover,
html[data-page="product"] .carousel-product:hover,
html[data-page="product"] .related-card:hover,
html[data-page="product"] .category-card:hover,
html[data-page="product"] .solution-grid article:hover,
html[data-page="product"] .promise-grid article:hover,
html[data-page="product"] .process-list li:hover,
html[data-page="product"] .credential-card:hover,
html[data-page="product"] .faq-grid article:hover,
html[data-page="product"] .subpage-panel:hover,
html[data-page="product"] .contact-page-card:hover,
html[data-page="product"] .product-hero-card:hover,
html[data-page="product"] .product-hero-image:hover,
html[data-page="product"] .product-hero-metrics article:hover {
  transform: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

html[data-page="products"] .floating-actions,
html[data-page="subpage"] .floating-actions,
html[data-page="product"] .floating-actions {
  contain: layout paint;
  filter: none;
  transform: translateZ(0);
}

html[data-page="products"] .floating-wechat-card,
html[data-page="products"] .floating-action,
html[data-page="subpage"] .floating-wechat-card,
html[data-page="subpage"] .floating-action,
html[data-page="product"] .floating-wechat-card,
html[data-page="product"] .floating-action {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* Final responsive contact fixes: show hotline and WeChat together without mobile overlap. */
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-contact-strip a,
.hero-contact-strip button {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: #0c3f8c;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 94, 239, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.hero-contact-strip span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.hero-contact-strip strong {
  color: #0b4fb6;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .hero-contact-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-contact-strip a,
  .hero-contact-strip button {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
    justify-content: start;
    width: 100%;
    min-height: 48px;
    padding: 8px 12px;
  }

  .hero-contact-strip strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .floating-actions {
    right: 10px !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    left: 10px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: auto !important;
    align-items: stretch !important;
  }

  .floating-wechat {
    display: none !important;
  }

  .floating-action {
    display: inline-flex !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 0 8px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
  }

  .floating-action.back-top {
    display: none !important;
  }

  .wechat-floating-action {
    order: 1;
  }

  .selection-floating-action {
    order: 2;
  }

  .floating-actions > a.floating-action {
    order: 3;
  }

  html[data-page="subpage"] .floating-actions {
    display: none !important;
  }
}

@media (min-width: 721px) {
  html[data-page="products"] .products .container {
    padding-right: 124px;
  }

  html[data-page="products"] .floating-actions,
  html[data-page="subpage"] .floating-actions,
  html[data-page="product"] .floating-actions {
    right: 8px;
    bottom: 18px;
    width: 108px;
    gap: 6px;
  }

  html[data-page="products"] .floating-wechat-card,
  html[data-page="subpage"] .floating-wechat-card,
  html[data-page="product"] .floating-wechat-card {
    padding: 8px;
  }

  html[data-page="products"] .floating-wechat-card img,
  html[data-page="subpage"] .floating-wechat-card img,
  html[data-page="product"] .floating-wechat-card img {
    width: 68px;
    height: 68px;
    padding: 4px;
  }

  html[data-page="products"] .floating-wechat-copy,
  html[data-page="subpage"] .floating-wechat-copy,
  html[data-page="product"] .floating-wechat-copy {
    gap: 2px;
    margin-top: 6px;
  }

  html[data-page="products"] .floating-wechat-copy strong,
  html[data-page="subpage"] .floating-wechat-copy strong,
  html[data-page="product"] .floating-wechat-copy strong {
    font-size: 12px;
  }

  html[data-page="products"] .floating-wechat-copy span,
  html[data-page="subpage"] .floating-wechat-copy span,
  html[data-page="product"] .floating-wechat-copy span {
    font-size: 10px;
    line-height: 1.28;
    white-space: normal;
  }

  html[data-page="products"] .floating-wechat-actions,
  html[data-page="subpage"] .floating-wechat-actions,
  html[data-page="product"] .floating-wechat-actions {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 6px;
  }

  html[data-page="products"] .floating-wechat-actions a,
  html[data-page="products"] .floating-wechat-actions button,
  html[data-page="subpage"] .floating-wechat-actions a,
  html[data-page="subpage"] .floating-wechat-actions button,
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button {
    min-height: 26px;
    padding: 0 5px;
    font-size: 10px;
  }

  html[data-page="products"] .floating-action,
  html[data-page="subpage"] .floating-action,
  html[data-page="product"] .floating-action {
    min-height: 28px;
    padding: 0 7px;
    font-size: 11px;
  }
}

@media (min-width: 1181px) {
  html[data-page="products"] .products .container {
    padding-right: 202px;
  }

  html[data-page="products"] .floating-actions,
  html[data-page="subpage"] .floating-actions,
  html[data-page="product"] .floating-actions {
    right: 14px;
    width: 180px;
  }

  html[data-page="products"] .floating-wechat-card img,
  html[data-page="subpage"] .floating-wechat-card img,
  html[data-page="product"] .floating-wechat-card img {
    width: 104px;
    height: 104px;
  }

  html[data-page="products"] .floating-wechat-copy strong,
  html[data-page="subpage"] .floating-wechat-copy strong,
  html[data-page="product"] .floating-wechat-copy strong {
    font-size: 15px;
  }

  html[data-page="products"] .floating-wechat-copy span,
  html[data-page="subpage"] .floating-wechat-copy span,
  html[data-page="product"] .floating-wechat-copy span {
    font-size: 13px;
  }

  html[data-page="products"] .floating-wechat-actions a,
  html[data-page="products"] .floating-wechat-actions button,
  html[data-page="subpage"] .floating-wechat-actions a,
  html[data-page="subpage"] .floating-wechat-actions button,
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button {
    min-height: 34px;
    font-size: 13px;
  }

  html[data-page="product"] .floating-actions {
    right: 12px;
    bottom: 12px;
    width: 146px;
  }

  html[data-page="product"] .floating-wechat-card {
    padding: 10px;
  }

  html[data-page="product"] .floating-wechat-card img {
    width: 82px;
    height: 82px;
  }

  html[data-page="product"] .floating-wechat-copy strong {
    font-size: 13px;
  }

  html[data-page="product"] .floating-wechat-copy span {
    font-size: 11px;
  }

  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button {
    min-height: 28px;
    font-size: 11px;
  }
}

html[data-page="products"] .site-footer,
html[data-page="subpage"] .site-footer,
html[data-page="product"] .site-footer {
  background: #0b1220;
}

/* Home product carousel replaces the old static service strip. */
html[data-page="home"] .product-carousel-band {
  padding: 30px 0 56px;
  margin-top: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #f4f8fc 100%);
  border-top: 1px solid rgba(12, 22, 38, 0.06);
  border-bottom: 1px solid rgba(12, 22, 38, 0.08);
}

html[data-page="home"] .carousel-head {
  align-items: center;
  margin-bottom: 20px;
}

html[data-page="home"] .carousel-head h2 {
  font-size: clamp(30px, 3vw, 44px);
}

html[data-page="home"] .product-carousel {
  gap: 18px;
  padding: 4px 4px 18px;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
}

html[data-page="home"] .carousel-product {
  flex: 0 0 calc((100% - 36px) / 3);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

html[data-page="home"] .carousel-product-media {
  aspect-ratio: 16 / 10;
  padding: 14px;
  background: linear-gradient(180deg, #fbfdff 0%, #eef4fa 100%);
}

html[data-page="home"] .carousel-product-body {
  padding: 16px;
}

/* Compact desktop dropdowns: keep the mega menu useful without a huge blank feature card. */
.desktop-nav .nav-group-wide .mega-menu {
  left: 50%;
  width: min(760px, calc(100vw - 40px));
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border-color: rgba(12, 22, 38, 0.1);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transform: translateX(-50%);
}

.desktop-nav .nav-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  min-height: 0;
  align-items: center;
  padding: 12px 14px;
  color: #0b4fb6;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef6ff 100%);
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 8px;
}

.desktop-nav .nav-feature span {
  color: #667587;
  font-size: 12px;
}

.desktop-nav .nav-feature strong {
  margin-top: 0;
  color: #0b4fb6;
  font-size: 18px;
  line-height: 1.15;
}

.desktop-nav .nav-feature em {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: #435064;
  font-size: 13px;
  line-height: 1.45;
}

.desktop-nav .nav-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.desktop-nav .nav-card-grid a {
  min-height: 58px;
  padding: 12px;
  color: #172033;
  background: #f8fafc;
}

.desktop-nav .nav-card-grid strong {
  color: #101828;
  font-size: 14px;
}

.desktop-nav .nav-card-grid span {
  color: #667587;
  font-size: 12px;
  line-height: 1.45;
}

.desktop-nav .nav-group.active > summary,
.mobile-nav .nav-group.active > summary {
  color: #081424;
  background: rgba(238, 245, 255, 0.96);
  border-color: rgba(21, 94, 239, 0.2);
}

@media (max-width: 1080px) {
  html[data-page="home"] .carousel-product {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .product-carousel-band {
    padding: 24px 0 38px;
  }

  html[data-page="home"] .carousel-head {
    align-items: flex-start;
  }

  html[data-page="home"] .carousel-product {
    flex-basis: min(86vw, 320px);
  }

  html[data-page="home"] .carousel-product-media {
    aspect-ratio: 16 / 11;
    padding: 10px;
  }
}

/* UI polish pass: make the source-code site feel more like an operated product desk. */
html[data-page="home"] body,
html[data-page="products"] body {
  background: #f3f7fb;
}

html[data-page="home"] .site-header,
html[data-page="products"] .site-header,
html[data-page="subpage"] .site-header,
html[data-page="product"] .site-header {
  min-height: 70px;
  border-bottom-color: rgba(16, 24, 40, 0.08);
}

.brand {
  padding: 6px 8px;
}

html[data-page="home"] .hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 86px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 105, 224, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(10, 155, 143, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(135deg, #eef6ff 0%, #f8fbff 52%, #e7f8f4 100%);
}

html[data-page="home"] .hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.86) 100%);
}

html[data-page="home"] .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  gap: 62px;
}

html[data-page="home"] .hero h1 {
  max-width: 700px;
  font-size: clamp(52px, 5vw, 70px);
  line-height: 1.05;
}

html[data-page="home"] .hero-copy p {
  max-width: 620px;
  color: #40516a;
  line-height: 1.85;
}

html[data-page="home"] .hero-actions .button,
html[data-page="product"] .product-hero-actions .button {
  border-radius: 9px;
}

html[data-page="home"] .hero-actions .button.primary {
  box-shadow: 0 14px 28px rgba(21, 94, 239, 0.18);
}

html[data-page="home"] .trust-row span {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(193, 207, 224, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

html[data-page="home"] .hero-guide {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(193, 207, 224, 0.9);
}

html[data-page="home"] .hero-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 211, 226, 0.92);
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

html[data-page="home"] .hero-panel::before {
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1769e0 0%, #0a9b8f 58%, #f59e0b 100%);
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}

html[data-page="home"] .panel-top strong {
  font-size: 26px;
  line-height: 1.22;
}

html[data-page="home"] .console-search {
  border-radius: 8px;
}

html[data-page="home"] .console-metrics a,
html[data-page="home"] .console-item,
html[data-page="home"] .console-service-note {
  border-radius: 8px;
}

html[data-page="home"] .console-item {
  min-height: 74px;
  background: #fff;
  border-color: rgba(198, 211, 226, 0.78);
}

html[data-page="home"] .console-note {
  color: #0b4fb6;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.08);
}

html[data-page="home"] .product-carousel-band {
  padding: 46px 0 62px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f3f7fb 100%);
}

html[data-page="home"] .carousel-head {
  margin-bottom: 22px;
}

html[data-page="home"] .carousel-head h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

html[data-page="home"] .carousel-button {
  width: 52px;
  height: 52px;
  color: #0c1628;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

html[data-page="home"] .carousel-product {
  border-color: rgba(198, 211, 226, 0.9);
  border-radius: 9px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

html[data-page="home"] .carousel-product-media {
  padding: 18px;
  background:
    linear-gradient(180deg, #f9fcff 0%, #edf4fb 100%);
}

html[data-page="home"] .carousel-product-body {
  padding: 18px 18px 16px;
}

html[data-page="home"] .carousel-product-body h3 {
  font-size: 18px;
  line-height: 1.42;
}

html[data-page="home"] .carousel-product-foot {
  grid-template-columns: minmax(0, 1fr) 72px 72px;
  gap: 8px;
}

html[data-page="home"] .carousel-product-foot a,
html[data-page="home"] .carousel-product-foot button {
  min-height: 42px;
  border-radius: 8px;
}

html[data-page="home"] .category-strip {
  margin-top: 0;
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid rgba(198, 211, 226, 0.7);
  border-bottom: 1px solid rgba(198, 211, 226, 0.7);
}

html[data-page="home"] .category-card,
html[data-page="products"] .category-card {
  border-radius: 9px;
}

html[data-page="home"] .product-card,
html[data-page="products"] .product-card {
  border-color: rgba(198, 211, 226, 0.86);
  border-radius: 9px;
}

html[data-page="home"] .product-card:hover,
html[data-page="products"] .product-card:hover {
  border-color: rgba(21, 94, 239, 0.22);
}

html[data-page="products"] .subpage-hero {
  background:
    linear-gradient(90deg, rgba(23, 105, 224, 0.052) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(135deg, #f4f8ff 0%, #ffffff 48%, #e9f8f4 100%);
}

html[data-page="products"] .category-strip {
  padding-top: 30px;
  background: #fff;
  border-top: 1px solid rgba(198, 211, 226, 0.72);
}

html[data-page="products"] .product-toolbar {
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.78);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

html[data-page="home"] .floating-actions {
  right: max(10px, calc((100vw - 1180px) / 2 - 116px));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 96px;
}

html[data-page="home"] .floating-wechat-card {
  padding: 6px;
  border-radius: 8px;
}

html[data-page="home"] .floating-wechat-card img {
  width: 58px;
  height: 58px;
  padding: 3px;
}

@media (max-width: 1180px) {
  html[data-page="home"] .floating-actions {
    right: 14px;
  }
}

@media (max-width: 900px) {
  html[data-page="home"] .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, calc(100vw - 24px));
  }

  html[data-page="home"] .hero {
    min-height: auto;
    padding: 42px 0 34px;
  }

  html[data-page="home"] .hero-grid {
    gap: 28px;
  }

  html[data-page="home"] .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  html[data-page="home"] .hero-copy p {
    line-height: 1.7;
  }

  html[data-page="home"] .hero-panel {
    padding: 16px;
  }

  html[data-page="home"] .panel-top {
    align-items: flex-start;
    gap: 10px;
  }

  html[data-page="home"] .panel-top strong {
    font-size: 24px;
  }

  html[data-page="home"] .console-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  html[data-page="home"] .product-carousel-band {
    padding: 34px 0 46px;
  }

  html[data-page="home"] .carousel-head {
    align-items: center;
  }

  html[data-page="home"] .carousel-product-foot {
    grid-template-columns: 1fr 62px 62px;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .container {
    width: min(100% - 24px, 1180px);
  }

  html[data-page="home"] .hero {
    padding-bottom: 24px;
    background:
      linear-gradient(90deg, rgba(23, 105, 224, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
      linear-gradient(0deg, rgba(10, 155, 143, 0.03) 1px, transparent 1px) 0 0 / 96px 96px,
      linear-gradient(135deg, #eef6ff 0%, #f8fbff 52%, #e7f8f4 100%);
  }

  html[data-page="home"] .hero h1 {
    display: block;
    min-width: 0;
    font-size: clamp(34px, 9.4vw, 40px) !important;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: normal !important;
    word-break: normal;
  }

  html[data-page="home"] .hero-actions .button {
    width: 100%;
  }

  html[data-page="home"] .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-page="home"] .trust-row span {
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  html[data-page="home"] .hero-proof-row {
    display: grid;
    gap: 8px;
  }

  html[data-page="home"] .hero-guide {
    margin-top: 18px;
    padding: 14px;
  }

  html[data-page="home"] .hero-guide-copy {
    margin-bottom: 10px;
  }

  html[data-page="home"] .hero-guide-copy strong {
    font-size: 16px;
  }

  html[data-page="home"] .hero-guide-steps {
    grid-template-columns: 1fr;
  }

  html[data-page="home"] .hero-guide-actions a,
  html[data-page="home"] .hero-guide-actions button {
    flex: 1 1 132px;
  }

  html[data-page="home"] .hero-panel {
    margin-top: 4px;
    border-radius: 9px;
    margin-bottom: 72px;
  }

  html[data-page="home"] .console-search {
    grid-template-columns: 1fr auto;
  }

  html[data-page="home"] .console-search kbd {
    display: none;
  }

  html[data-page="home"] .console-list {
    max-height: none;
  }

  html[data-page="home"] .console-item {
    min-height: 68px;
  }

  html[data-page="home"] .carousel-controls {
    display: none;
  }

  html[data-page="home"] .carousel-product {
    flex-basis: min(88vw, 340px);
  }

  html[data-page="home"] .floating-actions,
  html[data-page="products"] .floating-actions,
  html[data-page="subpage"] .floating-actions,
  html[data-page="product"] .floating-actions {
    width: calc(100% - 20px);
  }

  html[data-page="home"] .floating-wechat-card,
  html[data-page="products"] .floating-wechat-card,
  html[data-page="subpage"] .floating-wechat-card,
  html[data-page="product"] .floating-wechat-card {
    grid-template-columns: 44px minmax(0, 1fr) 64px;
    min-height: 58px;
    padding: 6px 7px;
  }

  html[data-page="home"] .floating-wechat-card img,
  html[data-page="products"] .floating-wechat-card img,
  html[data-page="subpage"] .floating-wechat-card img,
  html[data-page="product"] .floating-wechat-card img {
    width: 44px;
    height: 44px;
    padding: 3px;
  }

  html[data-page="home"] .floating-wechat-copy strong,
  html[data-page="products"] .floating-wechat-copy strong,
  html[data-page="subpage"] .floating-wechat-copy strong,
  html[data-page="product"] .floating-wechat-copy strong {
    font-size: 12px;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="products"] .floating-wechat-copy span,
  html[data-page="subpage"] .floating-wechat-copy span,
  html[data-page="product"] .floating-wechat-copy span {
    font-size: 10px;
    line-height: 1.2;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button,
  html[data-page="products"] .floating-wechat-actions a,
  html[data-page="products"] .floating-wechat-actions button,
  html[data-page="subpage"] .floating-wechat-actions a,
  html[data-page="subpage"] .floating-wechat-actions button,
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button {
    min-height: 23px;
    font-size: 10px;
  }
}

.featured-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 17, 31, 0.48);
}

.featured-admin-modal.is-open {
  display: flex;
}

.featured-admin-panel {
  display: flex;
  flex-direction: column;
  width: min(1180px, 100%);
  height: min(840px, calc(100vh - 32px));
  overflow: hidden;
  color: #0b1220;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.9);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(9, 17, 31, 0.24);
}

.featured-admin-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(198, 211, 226, 0.82);
}

.featured-admin-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  color: #0b4fb6;
  font-size: 12px;
  font-weight: 900;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 999px;
}

.featured-admin-head h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.featured-admin-close {
  width: 38px;
  height: 38px;
  color: #475467;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
}

.featured-admin-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  min-height: 0;
  overflow: hidden;
}

.featured-admin-column {
  min-width: 0;
  min-height: 0;
  padding: 18px 20px 20px;
  overflow: auto;
}

.featured-admin-column + .featured-admin-column {
  border-left: 1px solid rgba(198, 211, 226, 0.72);
}

.featured-admin-label {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.featured-admin-help {
  padding: 12px;
  margin-bottom: 14px;
  background: #f8fbff;
  border: 1px solid rgba(198, 211, 226, 0.88);
  border-left: 4px solid #1769e0;
  border-radius: 8px;
}

.featured-admin-help strong {
  display: block;
  color: #101828;
  font-size: 13px;
  line-height: 1.3;
}

.featured-admin-help p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.featured-admin-ids,
.featured-admin-search,
.featured-admin-config,
.featured-admin-custom input {
  width: 100%;
  color: #101828;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.9);
  border-radius: 8px;
  outline: none;
}

.featured-admin-ids,
.featured-admin-config {
  padding: 12px;
  resize: vertical;
}

.featured-admin-search {
  min-height: 42px;
  padding: 0 12px;
}

.featured-admin-custom {
  display: grid;
  gap: 8px;
  padding: 12px;
  margin-top: 12px;
  background: #fbfdff;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
}

.featured-admin-custom strong {
  color: #101828;
  font-size: 13px;
  line-height: 1.3;
}

.featured-admin-custom input {
  min-height: 36px;
  padding: 0 10px;
  font-size: 12px;
}

.featured-admin-custom button {
  min-height: 34px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  background: #0f766e;
  border: 1px solid #0f766e;
  border-radius: 8px;
}

.featured-admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.featured-admin-actions button,
.featured-admin-mini-actions button,
.featured-admin-result button {
  min-height: 34px;
  padding: 0 10px;
  color: #0b4fb6;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 8px;
}

.featured-admin-actions button:first-child,
.featured-admin-result button {
  color: #fff;
  background: #1769e0;
  border-color: #1769e0;
}

.featured-admin-actions button:disabled,
.featured-admin-mini-actions button:disabled,
.featured-admin-result button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.featured-admin-status {
  min-height: 38px;
  margin: 12px 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.featured-admin-config {
  color: #344054;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.featured-admin-selected,
.featured-admin-results {
  display: grid;
  gap: 8px;
}

.featured-admin-products-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 100%;
  overflow: hidden;
}

.featured-admin-pane {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: #fbfdff;
  border: 1px solid rgba(198, 211, 226, 0.82);
  border-radius: 8px;
}

.featured-admin-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  background: #f5f9ff;
  border-bottom: 1px solid rgba(198, 211, 226, 0.78);
}

.featured-admin-pane-head strong {
  color: #101828;
  font-size: 12px;
  line-height: 1.3;
}

.featured-admin-pane-head span {
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.featured-admin-selected {
  flex: 1 1 auto;
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.featured-admin-selected-pane {
  margin-top: 12px;
  max-height: 190px;
}

.featured-admin-library-pane {
  flex: 1 1 220px;
}

.featured-admin-count {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.featured-admin-results {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.featured-admin-selected::-webkit-scrollbar,
.featured-admin-results::-webkit-scrollbar {
  width: 8px;
}

.featured-admin-selected::-webkit-scrollbar-thumb,
.featured-admin-results::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

.featured-admin-empty {
  padding: 14px;
  color: #667085;
  font-size: 13px;
  background: #f8fafc;
  border: 1px dashed rgba(198, 211, 226, 0.9);
  border-radius: 8px;
}

.featured-admin-selected-item,
.featured-admin-result {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.82);
  border-radius: 8px;
}

.featured-admin-selected-item {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.featured-admin-selected-item strong,
.featured-admin-result strong {
  display: -webkit-box;
  overflow: hidden;
  color: #101828;
  font-size: 12px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-admin-selected-item span,
.featured-admin-result span {
  display: block;
  margin-top: 3px;
  color: #667085;
  font-size: 11px;
}

.featured-admin-mini-actions {
  display: flex;
  gap: 4px;
}

.featured-admin-selected-item .featured-admin-mini-actions button {
  min-height: 26px;
  padding: 0 7px;
  font-size: 11px;
}

.featured-admin-result {
  grid-template-columns: 62px minmax(0, 1fr) 66px;
}

.featured-admin-result img {
  width: 62px;
  height: 46px;
  object-fit: contain;
  background: #f4f7fb;
  border-radius: 6px;
}

@media (max-width: 760px) {
  .featured-admin-modal {
    align-items: stretch;
    padding: 10px;
  }

  .featured-admin-panel {
    height: calc(100vh - 20px);
  }

  .featured-admin-body {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: auto;
  }

  .featured-admin-column {
    overflow: visible;
    padding: 14px;
  }

  .featured-admin-products-column {
    display: grid;
    grid-template-rows: auto auto auto auto;
    overflow: visible;
  }

  .featured-admin-selected-pane,
  .featured-admin-library-pane {
    flex: none;
  }

  .featured-admin-selected,
  .featured-admin-results {
    max-height: 320px;
  }

  .featured-admin-column + .featured-admin-column {
    border-top: 1px solid rgba(198, 211, 226, 0.72);
    border-left: 0;
  }

  .featured-admin-actions {
    grid-template-columns: 1fr;
  }

  .featured-admin-selected-item {
    grid-template-columns: 1fr;
  }

  .featured-admin-mini-actions {
    flex-wrap: wrap;
  }

  .featured-admin-result {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .featured-admin-result button {
    grid-column: 1 / -1;
  }
}

/* Compact home floating contact rail */
html[data-page="home"] .floating-action[href^="tel:"] {
  display: none;
}

html[data-page="home"] .floating-actions {
  width: 240px;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

html[data-page="home"] .floating-wechat {
  width: 100%;
}

html[data-page="home"] .floating-wechat-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-areas:
    "qr copy"
    "qr actions";
  align-items: start;
  gap: 6px 10px;
  padding: 10px;
}

html[data-page="home"] .floating-wechat-card img {
  grid-area: qr;
  width: 68px;
  height: 68px;
  margin: 0;
  padding: 4px;
}

html[data-page="home"] .floating-wechat-copy {
  grid-area: copy;
  min-width: 0;
  margin-top: 0;
  text-align: left;
}

html[data-page="home"] .floating-wechat-copy strong {
  font-size: 13px;
}

html[data-page="home"] .floating-wechat-copy span {
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
}

html[data-page="home"] .floating-wechat-actions {
  grid-area: actions;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 0;
}

html[data-page="home"] .floating-wechat-actions a,
html[data-page="home"] .floating-wechat-actions button {
  min-height: 30px;
  padding: 0 6px;
  font-size: 11px;
}

html[data-page="home"] .selection-floating-action,
html[data-page="home"] .floating-action.back-top.is-visible {
  width: 100%;
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: 10px;
    left: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 186px;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 8px;
    padding: 8px;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 44px;
    height: 44px;
    padding: 3px;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 12px;
  }

  html[data-page="home"] .floating-wechat-copy span {
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
  }

  html[data-page="home"] .floating-wechat-actions {
    gap: 4px;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 26px;
    padding: 0 5px;
    font-size: 10px;
  }
}

@media (min-width: 721px) {
  html[data-page="home"] .floating-actions {
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  html[data-page="home"] .selection-floating-action {
    min-height: 38px;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: 10px;
    left: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 186px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  html[data-page="home"] .floating-wechat {
    grid-column: 1 / -1;
  }

  html[data-page="home"] .floating-wechat-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 8px;
    align-items: center;
    padding: 8px;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 3px;
  }

  html[data-page="home"] .floating-wechat-copy {
    margin-top: 0;
    text-align: left;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 12px;
  }

  html[data-page="home"] .floating-wechat-copy span {
    font-size: 10px;
    line-height: 1.25;
    white-space: normal;
  }

  html[data-page="home"] .floating-wechat-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 4px;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 26px;
    padding: 0 5px;
    font-size: 10px;
  }

  html[data-page="home"] .selection-floating-action {
    grid-column: 1;
  }

  html[data-page="home"] .floating-action[href^="tel:"] {
    grid-column: 2;
  }

  html[data-page="home"] .floating-action.back-top.is-visible {
    display: none;
  }
}

/* Final floating contact layout fix: keep the QR card readable on desktop. */
@media (min-width: 721px) {
  html[data-page="home"] .floating-actions {
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 240px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  html[data-page="home"] .floating-wechat {
    grid-column: 1 / -1;
  }

  html[data-page="home"] .floating-wechat-card {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 10px;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 68px;
    height: 68px;
    margin: 0;
    padding: 4px;
  }

  html[data-page="home"] .floating-wechat-copy {
    min-width: 0;
    margin-top: 0;
    text-align: center;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 13px;
  }

  html[data-page="home"] .floating-wechat-copy span {
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
  }

  html[data-page="home"] .floating-wechat-actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 2px;
    width: 100%;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  html[data-page="home"] .floating-action {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }

  html[data-page="home"] .selection-floating-action {
    grid-column: 1 / span 2;
  }

  html[data-page="home"] .floating-action[href^="tel:"] {
    grid-column: 3;
  }

html[data-page="home"] .floating-action.back-top.is-visible {
  grid-column: 1 / -1;
}
}

/* Home contact rail final override: keep only the always-visible contact card. */
html[data-page="home"] .floating-actions {
  right: 12px !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  width: 176px !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
}

html[data-page="home"] .selection-floating-action,
html[data-page="home"] .floating-action[href^="tel:"],
html[data-page="home"] .floating-action.back-top {
  display: none !important;
}

html[data-page="home"] .floating-wechat {
  width: 100% !important;
}

html[data-page="home"] .floating-wechat-card {
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  grid-template-areas:
    "qr copy"
    "qr actions" !important;
  align-items: start !important;
  gap: 4px 8px !important;
  padding: 8px !important;
}

html[data-page="home"] .floating-wechat-card img {
  grid-area: qr;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 3px !important;
}

html[data-page="home"] .floating-wechat-copy {
  grid-area: copy;
  margin-top: 0 !important;
  text-align: left !important;
}

html[data-page="home"] .floating-wechat-copy strong {
  font-size: 12px !important;
  line-height: 1.2 !important;
}

html[data-page="home"] .floating-wechat-copy span {
  font-size: 10px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html[data-page="home"] .floating-wechat-label {
  display: block;
  color: var(--muted);
  font-size: 10px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html[data-page="home"] .floating-wechat-number {
  display: block;
  color: var(--ink);
  font-size: 10px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow-wrap: normal;
}

html[data-page="home"] .floating-wechat-actions {
  grid-area: actions;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px !important;
  margin-top: 0 !important;
}

html[data-page="home"] .floating-wechat-actions a,
html[data-page="home"] .floating-wechat-actions button {
  min-height: 26px !important;
  padding: 0 4px !important;
  font-size: 10px !important;
}

@media (min-width: 721px) {
  html[data-page="home"] .floating-actions {
    right: 16px !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    width: 236px !important;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 8px 12px !important;
    padding: 12px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 78px !important;
    height: 78px !important;
    padding: 5px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 15px !important;
  }

  html[data-page="home"] .floating-wechat-copy span {
    font-size: 12px !important;
  }

  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 12px !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 32px !important;
    font-size: 12px !important;
  }
}

@media (min-width: 1181px) {
  html[data-page="home"] .floating-actions {
    right: 18px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    width: 268px !important;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 88px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
    padding: 14px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 88px !important;
    height: 88px !important;
    padding: 5px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 16px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 13px !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 34px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: 10px !important;
    left: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: 168px !important;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: 8px !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    width: min(136px, calc(100vw - 16px)) !important;
  }

  html[data-page="home"] body {
    padding-bottom: 124px;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 2px 5px !important;
    padding: 5px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 30px !important;
    height: 30px !important;
    padding: 2px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 10px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 8.5px !important;
    line-height: 1.1 !important;
  }

  html[data-page="home"] .floating-wechat-actions {
    gap: 2px !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 20px !important;
    padding: 0 2px !important;
    font-size: 8.5px !important;
  }
}

/* Final safeguard: detail pages already have a primary QR/CTA card, so the
   always-floating contact stays as a slim helper and never covers it. */
html[data-page="product"] .floating-actions {
  z-index: 44;
}

@media (min-width: 1181px) and (max-width: 1500px) {
  html[data-page="product"] .floating-actions {
    right: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: 96px !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
  }

  html[data-page="product"] .floating-wechat-card {
    padding: 7px !important;
  }

  html[data-page="product"] .floating-wechat-card img {
    width: 58px !important;
    height: 58px !important;
    padding: 3px !important;
  }

  html[data-page="product"] .floating-wechat-copy {
    gap: 2px !important;
    margin-top: 5px !important;
  }

  html[data-page="product"] .floating-wechat-copy strong {
    font-size: 11px !important;
    line-height: 1.18 !important;
  }

  html[data-page="product"] .floating-wechat-copy span,
  html[data-page="product"] .floating-wechat-label,
  html[data-page="product"] .floating-wechat-number {
    font-size: 9px !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }

  html[data-page="product"] .floating-wechat-actions {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin-top: 5px !important;
  }

  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button,
  html[data-page="product"] .floating-action {
    min-height: 24px !important;
    padding: 0 4px !important;
    font-size: 10px !important;
  }
}

@media (min-width: 1501px) {
  html[data-page="product"] .floating-actions {
    right: 18px !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    width: 128px !important;
  }

  html[data-page="product"] .floating-wechat-card {
    padding: 9px !important;
  }

  html[data-page="product"] .floating-wechat-card img {
    width: 72px !important;
    height: 72px !important;
  }

  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button {
    min-height: 28px !important;
    font-size: 11px !important;
  }
}

/* Secondary-page smoothness guard: keep scroll paint cheap on product lists and
   generated detail pages, where customers spend most of their browsing time. */
html[data-page="products"] .nav-menu,
html[data-page="subpage"] .nav-menu,
html[data-page="product"] .nav-menu,
html[data-page="products"] .modal-backdrop,
html[data-page="subpage"] .modal-backdrop,
html[data-page="product"] .modal-backdrop {
  backdrop-filter: none !important;
}

html[data-page="products"] .product-card,
html[data-page="products"] .category-card,
html[data-page="subpage"] .subpage-panel,
html[data-page="subpage"] .solution-grid article,
html[data-page="product"] .product-hero-card,
html[data-page="product"] .product-hero-image,
html[data-page="product"] .product-hero-metrics article,
html[data-page="product"] .related-card,
html[data-page="product"] .solution-grid article {
  contain: layout paint;
}

/* Homepage desktop contact rail: keep the QR visible without covering the
   first-screen consultation prompt. */
@media (min-width: 721px) {
  html[data-page="home"] .floating-actions {
    right: 16px !important;
    bottom: max(6px, env(safe-area-inset-bottom)) !important;
    width: clamp(96px, calc((100vw - 1200px) / 2 - 18px), 168px) !important;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 4px 7px !important;
    padding: 6px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 40px !important;
    height: 40px !important;
    padding: 3px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 10px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 8.5px !important;
    line-height: 1.15 !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 20px !important;
    padding: 0 3px !important;
    font-size: 8.5px !important;
  }
}

@media (min-width: 1501px) {
  html[data-page="home"] .floating-actions {
    right: 18px !important;
    width: 176px !important;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 5px 8px !important;
    padding: 7px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 52px !important;
    height: 52px !important;
  }
}

/* Always-visible homepage contact card: keep it readable and scannable while
   the separate timed modal continues to appear every 25 seconds. */
html[data-page="home"] .floating-actions {
  right: 18px !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  width: 268px !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

html[data-page="home"] .selection-floating-action,
html[data-page="home"] .floating-action[href^="tel:"],
html[data-page="home"] .floating-action.back-top {
  display: none !important;
}

html[data-page="home"] .floating-wechat-card {
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  grid-template-areas:
    "qr copy"
    "qr actions" !important;
  align-items: center !important;
  gap: 9px 14px !important;
  padding: 12px !important;
}

html[data-page="home"] .floating-wechat-card img {
  grid-area: qr !important;
  width: 92px !important;
  height: 92px !important;
  margin: 0 !important;
  padding: 5px !important;
}

html[data-page="home"] .floating-wechat-copy {
  grid-area: copy !important;
  margin-top: 0 !important;
  text-align: left !important;
}

html[data-page="home"] .floating-wechat-copy strong {
  font-size: 16px !important;
  line-height: 1.25 !important;
}

html[data-page="home"] .floating-wechat-copy span,
html[data-page="home"] .floating-wechat-label,
html[data-page="home"] .floating-wechat-number {
  display: block !important;
  color: #101828 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}

html[data-page="home"] .floating-wechat-label {
  color: #667085 !important;
}

html[data-page="home"] .floating-wechat-actions {
  grid-area: actions !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
  margin-top: 0 !important;
  width: 100% !important;
}

html[data-page="home"] .floating-wechat-actions a,
html[data-page="home"] .floating-wechat-actions button {
  min-height: 32px !important;
  padding: 0 8px !important;
  font-size: 12px !important;
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: min(224px, calc(100vw - 20px)) !important;
  }

  html[data-page="home"] body {
    padding-bottom: 150px;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 70px minmax(0, 1fr) !important;
    gap: 7px 10px !important;
    padding: 9px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 70px !important;
    height: 70px !important;
    padding: 4px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 14px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 28px !important;
    padding: 0 6px !important;
    font-size: 11px !important;
  }
}

/* Responsive contact visibility pass: make the always-on WeChat card more
   noticeable across desktop, tablet and phone without covering product cards. */
html[data-page="home"] .floating-actions {
  right: max(14px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  width: min(300px, calc(100vw - 28px)) !important;
  filter: none !important;
}

html[data-page="home"] .floating-wechat-card {
  position: relative !important;
  grid-template-columns: 102px minmax(0, 1fr) !important;
  gap: 10px 14px !important;
  padding: 12px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border: 2px solid rgba(23, 105, 224, 0.22) !important;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.16),
    0 0 0 5px rgba(23, 105, 224, 0.06) !important;
}

html[data-page="home"] .floating-wechat-card::before {
  display: none !important;
}

html[data-page="home"] .floating-wechat-card img {
  width: 102px !important;
  height: 102px !important;
  padding: 6px !important;
  background: #fff !important;
  border: 1px solid rgba(23, 105, 224, 0.22) !important;
  border-radius: 8px !important;
}

html[data-page="home"] .floating-wechat-copy strong {
  color: #07111f !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

html[data-page="home"] .floating-wechat-copy em {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 20px !important;
  padding: 0 8px !important;
  margin: 3px 0 4px !important;
  color: #fff !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  background: #1769e0 !important;
  border-radius: 999px !important;
}

html[data-page="home"] .floating-wechat-copy span,
html[data-page="home"] .floating-wechat-label,
html[data-page="home"] .floating-wechat-number {
  font-size: 14px !important;
  line-height: 1.42 !important;
}

html[data-page="home"] .floating-wechat-copy .floating-wechat-benefit {
  color: #075f57 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

html[data-page="home"] .floating-wechat-actions a,
html[data-page="home"] .floating-wechat-actions button {
  min-height: 36px !important;
  font-size: 13px !important;
  border-color: rgba(23, 105, 224, 0.22) !important;
}

html[data-page="home"] .floating-wechat-actions button {
  color: #fff !important;
  background: #1769e0 !important;
}

@media (min-width: 721px) and (max-width: 1180px) {
  html[data-page="home"] .floating-actions {
    right: max(14px, env(safe-area-inset-right)) !important;
    width: min(276px, calc(100vw - 28px)) !important;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 88px minmax(0, 1fr) !important;
    gap: 9px 12px !important;
    padding: 11px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 88px !important;
    height: 88px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 16px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 13px !important;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: min(232px, calc(100vw - 20px)) !important;
  }

  html[data-page="home"] body {
    padding-bottom: 154px;
  }

  html[data-page="home"] .floating-wechat-card {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 7px 9px !important;
    padding: 9px !important;
  }

  html[data-page="home"] .floating-wechat-card img {
    width: 72px !important;
    height: 72px !important;
    padding: 4px !important;
  }

  html[data-page="home"] .floating-wechat-copy strong {
    font-size: 15px !important;
  }

  html[data-page="home"] .floating-wechat-copy em {
    min-height: 18px !important;
    padding: 0 7px !important;
    margin: 2px 0 3px !important;
    font-size: 10px !important;
  }

  html[data-page="home"] .floating-wechat-copy span,
  html[data-page="home"] .floating-wechat-label,
  html[data-page="home"] .floating-wechat-number {
    font-size: 11.5px !important;
    line-height: 1.3 !important;
  }

  html[data-page="home"] .floating-wechat-actions a,
  html[data-page="home"] .floating-wechat-actions button {
    min-height: 30px !important;
    padding: 0 6px !important;
    font-size: 11px !important;
  }
}

/* Home carousel sync/display pass: the cards should use the same product order
   as the product library and stay fully visible on narrow mobile screens. */
html[data-page="home"] .product-carousel-shell {
  overflow: visible !important;
}

html[data-page="home"] .product-carousel {
  align-items: stretch !important;
  padding-bottom: 34px !important;
}

html[data-page="home"] .carousel-product {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 0 !important;
}

html[data-page="home"] .carousel-product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

html[data-page="home"] .carousel-product-foot {
  margin-top: auto !important;
}

@media (max-width: 720px) {
  html[data-page="home"] .product-carousel-band {
    padding-bottom: 62px !important;
  }

  html[data-page="home"] .product-carousel {
    gap: 14px !important;
    padding: 4px 12px 48px 0 !important;
  }

  html[data-page="home"] .carousel-product {
    flex: 0 0 min(88vw, 360px) !important;
    max-width: min(88vw, 360px) !important;
    overflow: hidden !important;
  }

  html[data-page="home"] .carousel-product-media {
    aspect-ratio: 16 / 12 !important;
    padding: 12px !important;
  }

  html[data-page="home"] .carousel-product-body {
    padding: 14px 14px 16px !important;
  }

  html[data-page="home"] .carousel-product-body h3 {
    min-height: 0 !important;
    font-size: 16px !important;
    line-height: 1.38 !important;
    -webkit-line-clamp: 3 !important;
  }

  html[data-page="home"] .carousel-product-body p {
    min-height: 0 !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  html[data-page="home"] .carousel-product-foot {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  html[data-page="home"] .carousel-product-foot a {
    grid-column: 1 / -1 !important;
  }

  html[data-page="home"] .carousel-product-foot a,
  html[data-page="home"] .carousel-product-foot button {
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

/* Mobile homepage order: after the two main CTAs, customers should see the
   product carousel first. Keep proof/guide blocks for desktop, but do not let
   them push product discovery down on phones. */
@media (max-width: 720px) {
  html[data-page="home"] .hero {
    min-height: auto !important;
    padding: 42px 0 18px !important;
  }

  html[data-page="home"] .hero-grid {
    display: block !important;
  }

  html[data-page="home"] .hero-copy {
    display: grid !important;
    gap: 14px !important;
  }

  html[data-page="home"] .hero-copy p {
    margin-bottom: 0 !important;
  }

  html[data-page="home"] .hero-actions {
    margin-top: 2px !important;
  }

  html[data-page="home"] .trust-row,
  html[data-page="home"] .hero-proof-row,
  html[data-page="home"] .hero-guide,
  html[data-page="home"] .hero-panel {
    display: none !important;
  }

  html[data-page="home"] .product-carousel-band {
    margin-top: 0 !important;
    padding-top: 22px !important;
  }
}

/* Responsive audit fixes: tablets should follow the same product-first path as
   phones, and persistent contact buttons need comfortable touch targets. */
@media (max-width: 1180px) {
  html[data-page="home"] .hero-process-link {
    display: none !important;
  }

  html[data-page="home"] .hero-mobile-consult {
    display: inline-flex !important;
    color: #fff !important;
    background: linear-gradient(180deg, #1c73f2 0%, #0f5ed0 100%) !important;
    border-color: rgba(15, 94, 208, 0.28) !important;
    box-shadow: 0 12px 24px rgba(15, 104, 232, 0.16) !important;
  }

  html[data-page="home"] .hero {
    min-height: auto !important;
    padding-bottom: 18px !important;
  }

  html[data-page="home"] .hero-grid {
    display: block !important;
  }

  html[data-page="home"] .hero-copy {
    display: grid !important;
    gap: 14px !important;
  }

  html[data-page="home"] .trust-row,
  html[data-page="home"] .hero-proof-row,
  html[data-page="home"] .hero-guide,
  html[data-page="home"] .hero-panel {
    display: none !important;
  }

  html[data-page="home"] .product-carousel-band {
    margin-top: 0 !important;
    padding-top: 24px !important;
  }

  html[data-page="products"] .floating-wechat-actions a,
  html[data-page="products"] .floating-wechat-actions button,
  html[data-page="subpage"] .floating-wechat-actions a,
  html[data-page="subpage"] .floating-wechat-actions button,
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button,
  html[data-page="products"] .floating-action,
  html[data-page="subpage"] .floating-action,
  html[data-page="product"] .floating-action {
    min-height: 32px !important;
    padding: 0 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 720px) {
  html[data-page="products"] .floating-actions,
  html[data-page="subpage"] .floating-actions,
  html[data-page="product"] .floating-actions {
    width: min(112px, calc(100vw - 20px)) !important;
  }

  html[data-page="products"] .floating-wechat-actions a,
  html[data-page="products"] .floating-wechat-actions button,
  html[data-page="subpage"] .floating-wechat-actions a,
  html[data-page="subpage"] .floating-wechat-actions button,
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button,
  html[data-page="products"] .floating-action,
  html[data-page="subpage"] .floating-action,
  html[data-page="product"] .floating-action {
    min-height: 32px !important;
    font-size: 11px !important;
  }
}

@media (min-width: 1181px) {
  html[data-page="product"] .floating-wechat-actions a,
  html[data-page="product"] .floating-wechat-actions button,
  html[data-page="product"] .floating-action {
    min-height: 32px !important;
    font-size: 12px !important;
  }
}

/* Frontend carousel manager. */
.featured-editor-page {
  min-height: 100vh;
  color: #0b1220;
  background: #f3f7fb;
}

.featured-editor-shell {
  width: min(100% - 40px, 1280px);
  padding: 34px 0 48px;
  margin: 0 auto;
}

.featured-editor-header,
.featured-editor-status,
.featured-editor-panel {
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.featured-editor-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}

.featured-editor-header h1 {
  margin: 8px 0 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.featured-editor-header p {
  max-width: 720px;
  margin: 0;
  color: #667587;
  line-height: 1.7;
}

.featured-editor-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-editor-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 170px)) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-top: 16px;
}

.featured-editor-status span {
  display: block;
  color: #667587;
  font-size: 12px;
  font-weight: 800;
}

.featured-editor-status strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.featured-editor-status p {
  margin: 0;
  color: #0b4fb6;
  font-weight: 800;
  line-height: 1.5;
}

.featured-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  margin-top: 16px;
}

.featured-editor-panel {
  min-width: 0;
  padding: 18px;
}

.featured-editor-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.featured-editor-panel-head h2 {
  margin: 3px 0 0;
  font-size: 22px;
}

.featured-editor-label {
  color: #1769e0;
  font-size: 12px;
  font-weight: 900;
}

.featured-editor-panel button,
.featured-editor-header-actions .button {
  min-height: 40px;
  border-radius: 8px;
}

.featured-editor-panel button {
  padding: 0 14px;
  color: #0b4fb6;
  font-weight: 900;
  background: #eef5ff;
  border: 1px solid rgba(21, 94, 239, 0.16);
  cursor: pointer;
}

.featured-editor-panel button:disabled {
  color: #98a2b3;
  cursor: not-allowed;
  background: #f2f4f7;
}

.featured-editor-selected,
.featured-editor-results {
  display: grid;
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

.featured-editor-selected-item,
.featured-editor-result {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
}

.featured-editor-selected-item img,
.featured-editor-result img {
  width: 74px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.74);
  border-radius: 6px;
}

.featured-editor-selected-item strong,
.featured-editor-result strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-editor-selected-item span,
.featured-editor-result span {
  display: block;
  margin-top: 4px;
  color: #667587;
  font-size: 12px;
}

.featured-editor-mini-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.featured-editor-mini-actions button,
.featured-editor-result button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.featured-editor-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.featured-editor-actions button:first-child,
.featured-editor-result button:not(:disabled) {
  color: #fff;
  background: #1769e0;
  border-color: #1769e0;
}

.featured-editor-actions button[data-state="success"] {
  color: #fff;
  background: #0a9b8f;
  border-color: #0a9b8f;
}

.featured-editor-actions button[data-state="error"] {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.featured-editor-actions button[data-state="saving"] {
  color: #fff;
  background: #475467;
  border-color: #475467;
  cursor: wait;
}

.featured-editor-notice {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1200;
  width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  background: #0a9b8f;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.featured-editor-notice[data-type="error"] {
  background: #b42318;
}

.featured-editor-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-editor-advanced {
  margin-top: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
}

.featured-editor-advanced summary {
  color: #667587;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.featured-editor-advanced .featured-editor-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-editor-config {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  color: #172033;
  font: 12px/1.6 Consolas, "Liberation Mono", monospace;
  resize: vertical;
  background: #f8fafc;
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 8px;
}

.featured-editor-search {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  color: #667587;
  font-size: 13px;
  font-weight: 800;
}

.featured-editor-password {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: #667587;
  font-size: 13px;
  font-weight: 800;
}

.featured-editor-local-help {
  margin-top: 12px;
  padding: 14px;
  color: #0f172a;
  background: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 8px;
}

.featured-editor-local-help strong {
  display: block;
  margin-bottom: 6px;
  color: #9a3412;
  font-size: 15px;
}

.featured-editor-local-help p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.is-local-editor .featured-editor-password {
  display: none;
}

.featured-editor-search input,
.featured-editor-password input,
.featured-editor-custom-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #172033;
  background: #fff;
  border: 1px solid rgba(198, 211, 226, 0.92);
  border-radius: 8px;
}

.featured-editor-custom-panel {
  margin-top: 16px;
}

.featured-editor-custom-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
}

.featured-editor-empty {
  padding: 18px;
  color: #667587;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed rgba(198, 211, 226, 0.9);
  border-radius: 8px;
}

.featured-editor-header strong,
.featured-editor-header p,
.featured-editor-status p,
.featured-editor-status strong,
.featured-editor-selected-item,
.featured-editor-result,
.featured-editor-local-help,
.featured-editor-empty {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.featured-editor-panel button,
.featured-editor-header-actions .button {
  white-space: nowrap;
}

.featured-editor-config {
  min-height: 180px;
  overflow: auto;
  white-space: pre;
}

.featured-editor-custom-form button {
  min-width: 108px;
}

@media (max-width: 960px) {
  .featured-editor-header,
  .featured-editor-status,
  .featured-editor-grid,
  .featured-editor-custom-form {
    grid-template-columns: 1fr;
  }

  .featured-editor-header {
    display: grid;
    align-items: start;
  }

  .featured-editor-selected,
  .featured-editor-results {
    max-height: 460px;
  }
}

@media (max-width: 640px) {
  .featured-editor-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 18px;
  }

  .featured-editor-header,
  .featured-editor-panel,
  .featured-editor-status {
    padding: 14px;
  }

  .featured-editor-header-actions,
  .featured-editor-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .featured-editor-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .featured-editor-panel-head > button {
    flex: 0 0 auto;
  }

  .featured-editor-selected-item,
  .featured-editor-result {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .featured-editor-selected-item img,
  .featured-editor-result img {
    width: 58px;
    height: 48px;
  }

  .featured-editor-mini-actions,
  .featured-editor-result button {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .featured-editor-mini-actions button,
  .featured-editor-result button {
    flex: 1 1 0;
  }
}

html[data-page="home"] .product-card.is-pinned,
html[data-page="products"] .product-card.is-pinned {
  border-color: rgba(245, 158, 11, 0.58);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.08),
    0 0 0 3px rgba(245, 158, 11, 0.1);
}

html[data-page="home"] .product-card.is-pinned:hover,
html[data-page="products"] .product-card.is-pinned:hover {
  border-color: rgba(217, 119, 6, 0.72);
}

/* iOS-style public UI pass: calm surfaces, subtle depth and cleaner controls. */
:root {
  --ios-bg: #f5f5f7;
  --ios-surface: rgba(255, 255, 255, 0.86);
  --ios-surface-solid: #ffffff;
  --ios-ink: #1d1d1f;
  --ios-muted: #6e6e73;
  --ios-blue: #007aff;
  --ios-blue-dark: #005ecb;
  --ios-teal: #34c7b3;
  --ios-border: rgba(60, 60, 67, 0.14);
  --ios-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --ios-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.055);
}

body {
  color: var(--ios-ink);
  background:
    linear-gradient(180deg, #fbfbfd 0%, var(--ios-bg) 42%, #f8fafc 100%);
}

.site-header {
  min-height: 72px;
  background: rgba(251, 251, 253, 0.78);
  border-bottom-color: var(--ios-border);
  box-shadow: none;
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
}

.site-header.is-scrolled {
  background: rgba(251, 251, 253, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
}

.brand,
.nav-group > summary,
.desktop-nav a,
.nav-cta,
.button,
.category-card,
.product-card,
.carousel-product,
.product-toolbar,
.product-list-search,
.console-search,
.console-metrics a,
.console-metrics div,
.console-item,
.subpage-panel {
  border-radius: 10px;
}

.brand:hover,
.brand:focus-visible,
.nav-group > summary:hover,
.desktop-nav a:hover {
  background: rgba(0, 122, 255, 0.08);
  box-shadow: none;
}

.nav-cta,
.button.primary,
.console-search-submit,
.product-list-search button,
.card-actions .consult-link,
.carousel-product-foot button:last-child {
  color: #fff;
  background: var(--ios-blue);
  border-color: var(--ios-blue);
  box-shadow: 0 8px 18px rgba(0, 122, 255, 0.22);
}

.nav-cta:hover,
.button.primary:hover,
.console-search-submit:hover,
.product-list-search button:hover,
.card-actions .consult-link:hover {
  background: var(--ios-blue-dark);
}

.button.secondary,
.button.neutral,
.product-clear-button,
.card-actions .detail-link,
.carousel-product-foot a {
  color: var(--ios-blue);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(0, 122, 255, 0.22);
  box-shadow: none;
}

html[data-page="home"] .console-service-button {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  min-height: auto;
  padding: 14px 16px;
  color: var(--ios-blue);
  text-align: left;
  white-space: normal;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 122, 255, 0.24);
  box-shadow: 0 8px 18px rgba(0, 122, 255, 0.08);
}

html[data-page="home"] .console-service-button:hover,
html[data-page="home"] .console-service-button:focus-visible {
  background: rgba(0, 122, 255, 0.08);
  border-color: rgba(0, 122, 255, 0.38);
  box-shadow: 0 12px 26px rgba(0, 122, 255, 0.14);
}

html[data-page="home"] .console-service-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 122, 255, 0.1);
}

html[data-page="home"] .console-service-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

html[data-page="home"] .console-service-copy strong {
  color: var(--ios-blue);
}

html[data-page="home"] .console-service-copy span {
  margin-top: 0;
  color: #334155;
  line-height: 1.7;
}

html[data-page="home"] .console-service-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 32px;
  margin-top: 0;
  padding: 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: var(--ios-blue);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 122, 255, 0.2);
}

html[data-page="home"] .console-service-action::after {
  margin-left: 6px;
  content: ">";
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 520px) {
  html[data-page="home"] .console-service-button {
    align-items: stretch;
    flex-direction: column;
  }

  html[data-page="home"] .console-service-action {
    width: 100%;
  }
}

html[data-page="home"] .hero {
  min-height: auto;
  padding-top: 82px;
  background:
    linear-gradient(180deg, #fbfbfd 0%, #f5f8fc 58%, #eef6f4 100%);
  border-bottom: 1px solid var(--ios-border);
}

html[data-page="home"] .hero::before {
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 245, 247, 0.92) 100%);
}

html[data-page="home"] .hero h1,
html[data-page="products"] .subpage-hero h1,
.section-heading h2,
.carousel-head h2 {
  color: var(--ios-ink);
  letter-spacing: 0;
}

html[data-page="home"] .hero h1 {
  font-size: clamp(48px, 4.8vw, 66px);
  line-height: 1.06;
}

html[data-page="home"] .hero-copy p,
html[data-page="products"] .subpage-hero p,
.section-heading p,
.product-body p {
  color: var(--ios-muted);
}

.eyebrow {
  color: var(--ios-blue);
  background: rgba(0, 122, 255, 0.08);
  border-color: rgba(0, 122, 255, 0.12);
  box-shadow: none;
}

html[data-page="home"] .trust-row span {
  color: #303034;
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--ios-border);
  box-shadow: var(--ios-shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html[data-page="home"] .hero-panel,
html[data-page="products"] .subpage-panel {
  background: var(--ios-surface);
  border-color: var(--ios-border);
  box-shadow: var(--ios-shadow);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  backdrop-filter: saturate(160%) blur(22px);
}

html[data-page="home"] .hero-panel::before {
  height: 3px;
  background: linear-gradient(90deg, var(--ios-blue), var(--ios-teal));
}

.console-search,
.product-list-search {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--ios-border);
  box-shadow: none;
}

.console-search:focus-within,
.product-list-search:focus-within {
  border-color: rgba(0, 122, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.console-metrics a,
.console-metrics div,
.console-item {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--ios-border);
  box-shadow: none;
}

.console-metrics strong {
  color: var(--ios-blue);
}

.category-strip {
  background: rgba(251, 251, 253, 0.92);
  border-block: 1px solid var(--ios-border);
}

.category-card {
  min-height: 88px;
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--ios-border);
  box-shadow: var(--ios-shadow-soft);
}

.category-card.active {
  color: #fff;
  background: var(--ios-blue);
  border-color: var(--ios-blue);
  box-shadow: 0 10px 24px rgba(0, 122, 255, 0.22);
}

.category-card.active span,
.category-card.active .category-count {
  color: rgba(255, 255, 255, 0.78);
}

.products.section,
.product-carousel-band {
  background: linear-gradient(180deg, var(--ios-bg) 0%, #fbfbfd 100%);
}

html[data-page="home"] .product-toolbar,
html[data-page="products"] .product-toolbar {
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ios-border);
  box-shadow: var(--ios-shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.product-count {
  min-height: 42px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ios-border);
  border-radius: 10px;
}

.product-count strong {
  color: var(--ios-blue);
}

html[data-page="home"] .product-card,
html[data-page="products"] .product-card,
html[data-page="home"] .carousel-product {
  background: var(--ios-surface-solid);
  border-color: var(--ios-border);
  border-radius: 10px;
  box-shadow: var(--ios-shadow-soft);
}

html[data-page="home"] .product-card:hover,
html[data-page="products"] .product-card:hover,
html[data-page="home"] .carousel-product:hover {
  border-color: rgba(0, 122, 255, 0.28);
  box-shadow: var(--ios-shadow);
}

.product-media,
html[data-page="home"] .carousel-product-media {
  aspect-ratio: 16 / 10;
  background: #f5f5f7;
  border-bottom: 1px solid var(--ios-border);
}

.product-media img,
html[data-page="home"] .carousel-product-media img {
  padding: 12px;
}

.product-body,
html[data-page="home"] .carousel-product-body {
  padding: 16px;
}

.product-card-meta span,
.product-tag-row span {
  min-height: 26px;
  color: var(--ios-blue);
  background: rgba(0, 122, 255, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.08);
}

.product-card-meta span:nth-child(2) {
  color: #07806f;
  background: rgba(52, 199, 179, 0.12);
  border-color: rgba(52, 199, 179, 0.12);
}

.product-title h3,
.carousel-product-body h3 {
  color: var(--ios-ink);
  font-weight: 800;
}

.card-actions {
  gap: 8px;
}

.card-actions a,
.card-actions button,
.carousel-product-foot a,
.carousel-product-foot button {
  min-height: 40px;
  border-radius: 10px;
}

.card-actions .selection-link,
.carousel-product-foot button:not(.is-selected) {
  color: #07806f;
  background: rgba(52, 199, 179, 0.12);
  border-color: rgba(52, 199, 179, 0.2);
  box-shadow: none;
}

.carousel-title-block {
  flex: 1 1 auto;
  min-width: 0;
}

.carousel-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 12px;
}

.carousel-title-row h2 {
  flex: 0 0 auto;
  margin: 0;
}

.carousel-selection-hint {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 1 440px;
  max-width: 440px;
  min-width: 0;
  min-height: 44px;
  margin-left: 0;
  padding: 6px 8px 6px 16px;
  color: #4d5a6f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(198, 211, 226, 0.72);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.product-selection-hint {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 560px;
  min-height: 46px;
  margin-top: 16px;
  padding: 7px 9px 7px 16px;
  color: #4d5a6f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 211, 226, 0.72);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.product-selection-hint strong {
  color: #07806f;
  font-size: 16px;
}

.carousel-selection-hint strong {
  color: #07806f;
  font-size: 16px;
}

.carousel-selection-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 32px;
  margin-left: 12px;
  padding: 0 13px;
  color: #075f57;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(52, 199, 179, 0.12);
  border: 1px solid rgba(52, 199, 179, 0.22);
  border-radius: 9px;
}

.carousel-selection-button:hover {
  color: #fff;
  background: #07806f;
  border-color: #07806f;
}

html[data-page="products"] .subpage-hero {
  background:
    linear-gradient(180deg, #fbfbfd 0%, #f5f8fc 58%, #eef6f4 100%);
  border-bottom: 1px solid var(--ios-border);
}

html[data-page="home"] .floating-wechat-card {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: var(--ios-border) !important;
  box-shadow: var(--ios-shadow) !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.product-pin-badge,
.product-pin-button.is-pinned {
  background: #ff9f0a;
  border-color: rgba(255, 159, 10, 0.34);
}

@media (max-width: 720px) {
  html[data-page="home"] .hero {
    padding-top: 38px !important;
  }

  .product-toolbar-enhanced,
  .product-discovery-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-list-search {
    width: 100%;
  }

  .product-status {
    text-align: left;
  }

  .carousel-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .carousel-selection-hint {
    flex: 1 1 100%;
    max-width: none;
    margin-left: 0;
  }

  .carousel-controls {
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .carousel-selection-hint {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .carousel-selection-button {
    width: 100%;
    margin-left: 0;
  }

  .product-selection-hint {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 14px;
  }
}

/* Final responsive floating-action guard: keep mobile/tablet content unobstructed. */
@media (max-width: 1180px) {
  html[data-page] .floating-actions {
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    left: max(8px, env(safe-area-inset-left)) !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: auto !important;
    max-width: none !important;
    gap: 8px !important;
  }

  html[data-page] .floating-wechat {
    display: none !important;
  }

  html[data-page] .wechat-floating-action {
    display: inline-flex !important;
    color: #fff !important;
    background: #1769e0 !important;
    border-color: rgba(23, 105, 224, 0.28) !important;
    opacity: 1 !important;
    text-indent: 0 !important;
  }

  html[data-page] .selection-floating-action,
  html[data-page] .floating-action[href^="tel:"] {
    display: inline-flex !important;
    color: #203047 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    opacity: 1 !important;
    text-indent: 0 !important;
  }

  html[data-page] .floating-action {
    box-sizing: border-box !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 0 6px !important;
    overflow: hidden !important;
    font-size: 12px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
  }

  html[data-page] .wechat-floating-action {
    background-color: #1769e0 !important;
  }

  html[data-page] .floating-action.back-top {
    display: none !important;
  }

  .contact-popup .contact-box strong {
    font-size: clamp(30px, 5.2vw, 44px) !important;
    overflow-wrap: anywhere;
  }

  .contact-popup-body {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .contact-popup .modal-info,
  .contact-popup .contact-box,
  .contact-popup .contact-popup-grid,
  .contact-popup .contact-price-card,
  .contact-popup .contact-popup-note,
  .contact-popup .modal-actions {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .contact-popup .contact-box strong {
    display: block;
    max-width: 100%;
    font-size: clamp(26px, 7.6vw, 40px) !important;
    line-height: 1.08 !important;
  }

  .contact-popup {
    max-width: calc(100vw - 20px) !important;
    overflow-x: hidden !important;
  }

  .contact-popup * {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  html[data-page] body {
    padding-bottom: 92px !important;
  }

  html[data-page="subpage"] .subpage-hero-grid,
  html[data-page="subpage"] .contact-consult-grid,
  html[data-page="subpage"] .contact-method-card,
  html[data-page="subpage"] .contact-hero-grid > div,
  html[data-page="subpage"] .section,
  html[data-page="subpage"] .container {
    max-width: 100%;
    min-width: 0;
  }

  html[data-page="subpage"] .subpage-hero h1,
  html[data-page="products"] .subpage-hero h1,
  html[data-page="product"] .product-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 38px) !important;
    line-height: 1.14 !important;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  html[data-page="product"] .product-hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 34px) !important;
  }

  .contact-price-note,
  .hero-guide-note {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[data-page="subpage"] .contact-method-card h2,
  html[data-page="subpage"] .contact-method-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .promise-grid p,
  .solution-grid p,
  .process-list p,
  .faq-grid p,
  .contact-page-card p,
  .subpage-panel p,
  .product-hero-copy p,
  .product-section p,
  .product-info-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html[data-page="subpage"] .promise-grid article,
  html[data-page="subpage"] .solution-grid article,
  html[data-page="subpage"] .process-list li {
    padding-left: 22px;
    padding-right: 22px;
  }

  html[data-page="subpage"] .promise-grid p,
  html[data-page="subpage"] .solution-grid p,
  html[data-page="subpage"] .process-list p {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  html[data-page="subpage"] .subpage-hero p,
  html[data-page="subpage"] .contact-page-card p,
  html[data-page="subpage"] .promise-grid p,
  html[data-page="subpage"] .solution-grid p,
  html[data-page="subpage"] .process-list p,
  html[data-page="subpage"] .materials-grid p,
  html[data-page="subpage"] .materials-note li,
  html[data-page="products"] .subpage-hero p,
  html[data-page="product"] .product-hero-copy p {
    max-width: 100%;
    line-height: 1.82;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  html[data-page="subpage"] .contact-method-card h2 {
    font-size: clamp(26px, 8vw, 32px) !important;
    line-height: 1.18 !important;
  }

  .carousel-selection-hint,
  .product-selection-hint {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: none;
    padding: 14px;
  }

  .carousel-selection-button {
    width: 100%;
    margin-left: 0;
  }

  .product-card-meta span,
  .product-tag-row span,
  .category-card span,
  .category-card strong {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 360px) {
  html[data-page] .container,
  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .hero-copy,
  html[data-page] .subpage-hero-grid > div,
  html[data-page] .product-hero-copy,
  html[data-page] .contact-page-card,
  html[data-page] .product-hero-card {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html[data-page] .subpage-hero,
  html[data-page] .product-hero {
    overflow-x: hidden !important;
  }

  html[data-page="subpage"] .subpage-hero h1,
  html[data-page="products"] .subpage-hero h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(24px, 7.6vw, 28px) !important;
    line-height: 1.16 !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  html[data-page="product"] .product-hero-copy h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(22px, 7vw, 26px) !important;
    line-height: 1.18 !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  html[data-page="subpage"] .subpage-hero p,
  html[data-page="products"] .subpage-hero p,
  html[data-page="product"] .product-hero-copy p,
  .contact-price-note,
  .subpage-panel p,
  .contact-page-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .contact-page-card img,
  .contact-qr-card img,
  .contact-popup-qr img {
    width: min(100%, 172px) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .contact-page-card span,
  .contact-large-number,
  .contact-popup .contact-box strong {
    font-size: clamp(20px, 6.8vw, 25px) !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .contact-page-card,
  .subpage-panel,
  .product-hero-card {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  html[data-page] .button,
  html[data-page] .hero-actions .button,
  html[data-page] .product-hero-actions .button,
  html[data-page] .contact-actions .button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
    white-space: normal !important;
  }
}

@media (max-width: 520px) {
  html[data-page] .container,
  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .hero-copy,
  html[data-page] .subpage-hero-grid > div,
  html[data-page] .product-hero-copy,
  html[data-page] .contact-page-card,
  html[data-page] .product-hero-card {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html[data-page] .subpage-hero,
  html[data-page] .product-hero {
    overflow-x: hidden !important;
  }

  html[data-page="subpage"] .subpage-hero h1,
  html[data-page="products"] .subpage-hero h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(24px, 6.2vw, 30px) !important;
    line-height: 1.16 !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  html[data-page="product"] .product-hero-copy h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(22px, 5.9vw, 29px) !important;
    line-height: 1.18 !important;
    text-wrap: wrap !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  html[data-page="subpage"] .subpage-hero p,
  html[data-page="products"] .subpage-hero p,
  html[data-page="product"] .product-hero-copy p,
  .contact-price-note,
  .subpage-panel p,
  .contact-page-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .contact-page-card img,
  .contact-qr-card img,
  .contact-popup-qr img {
    width: min(100%, 172px) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .contact-page-card span,
  .contact-large-number,
  .contact-popup .contact-box strong {
    font-size: clamp(20px, 5.4vw, 25px) !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  html[data-page] .button,
  html[data-page] .hero-actions .button,
  html[data-page] .product-hero-actions .button,
  html[data-page] .contact-actions .button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-inline: 12px !important;
    white-space: normal !important;
  }
}

/* Final mobile/tablet floating bar guard. Keep after earlier floating rules. */
@media (max-width: 1180px) {
  html[data-page] body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom)) !important;
  }

  html[data-page] .modal-backdrop {
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right))
      max(14px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)) !important;
  }

  html[data-page] .detail-modal {
    max-height: calc(100dvh - 24px) !important;
    overscroll-behavior: contain;
  }

  html[data-page] .contact-popup .modal-actions,
  html[data-page] .selection-modal .modal-actions {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  html[data-page] body:not(.modal-open):not(.nav-open) .floating-actions {
    right: auto !important;
    left: 50% !important;
    width: min(520px, calc(100vw - 16px)) !important;
    max-width: calc(100vw - 16px) !important;
    transform: translateX(-50%) !important;
  }

  html[data-page] body.modal-open .floating-actions,
  html[data-page] body.nav-open .floating-actions,
  body.nav-open .floating-actions,
  body.modal-open .floating-actions {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1180px) and (max-height: 820px) {
  html[data-page] .contact-popup-qr {
    min-height: auto !important;
    padding: 12px !important;
  }

  html[data-page] .contact-popup-qr img {
    width: min(100%, 168px) !important;
  }

  html[data-page] .contact-popup-header p,
  html[data-page] .contact-popup-note {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }
}

/* Softer footer finish: avoid a harsh dark block after light sections. */
html[data-page] .site-footer {
  position: relative;
  color: #334155 !important;
  background:
    linear-gradient(180deg, rgba(238, 246, 252, 0.72) 0%, rgba(246, 249, 252, 0.96) 18%, #f8fafc 100%),
    linear-gradient(90deg, rgba(15, 104, 232, 0.045) 1px, transparent 1px) center / 92px 92px !important;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-page] .site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.18), transparent);
}

html[data-page] .footer-grid p,
html[data-page] .footer-grid a,
html[data-page] .footer-links span,
html[data-page] .footer-contact-block p {
  color: #64748b !important;
}

html[data-page] .footer-nav-column strong,
html[data-page] .footer-contact-block strong {
  color: #0f172a !important;
}

html[data-page] .footer-logo {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

html[data-page] .footer-cert-line span {
  color: #475569;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

html[data-page] .footer-grid-pro .footer-contact-block {
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

/* Final visitor-experience pass: mobile/tablet text, spacing and fixed actions. */
@media (max-width: 1180px) {
  html[data-page] body {
    padding-bottom: calc(136px + env(safe-area-inset-bottom)) !important;
  }

  html[data-page] .site-header,
  html[data-page] .container,
  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .contact-grid,
  html[data-page] .contact-consult-grid,
  html[data-page] .product-detail-layout,
  html[data-page] .footer-grid {
    width: min(100% - 28px, var(--container)) !important;
    max-width: calc(100vw - 28px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  html[data-page] .hero-copy,
  html[data-page] .subpage-hero-grid > *,
  html[data-page] .product-hero-copy,
  html[data-page] .contact-page-card,
  html[data-page] .product-detail-main,
  html[data-page] .product-detail-side {
    min-width: 0 !important;
  }

  html[data-page] .hero h1,
  html[data-page] .subpage-hero h1,
  html[data-page] .product-hero-copy h1,
  html[data-page] .section-head h2,
  html[data-page] .carousel-head h2 {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html[data-page] .hero-copy p,
  html[data-page] .subpage-hero p,
  html[data-page] .product-hero-copy p,
  html[data-page] .contact-price-note,
  html[data-page] .product-card p,
  html[data-page] .carousel-product-body p {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html[data-page] body:not(.modal-open):not(.nav-open) .floating-actions {
    position: fixed !important;
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    left: max(8px, env(safe-area-inset-left)) !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    transform: none !important;
  }

  html[data-page] .floating-action,
  html[data-page] .floating-wechat-actions a,
  html[data-page] .floating-wechat-actions button {
    min-width: 0 !important;
    min-height: 38px !important;
    max-height: 42px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  html[data-page] .product-carousel-band,
  html[data-page] .products.section,
  html[data-page] .product-detail-section,
  html[data-page] .contact-main {
    scroll-margin-bottom: 150px;
  }
}

@media (max-width: 520px) {
  html[data-page] body {
    padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important;
  }

  html[data-page] .site-header,
  html[data-page] .container,
  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .contact-grid,
  html[data-page] .contact-consult-grid,
  html[data-page] .product-detail-layout,
  html[data-page] .footer-grid {
    width: min(100% - 24px, var(--container)) !important;
    max-width: calc(100vw - 24px) !important;
  }

  html[data-page] .hero,
  html[data-page] .subpage-hero,
  html[data-page] .product-hero {
    overflow-x: hidden !important;
  }

  html[data-page] .hero h1,
  html[data-page] .subpage-hero h1,
  html[data-page] .product-hero-copy h1 {
    font-size: clamp(28px, 9.2vw, 38px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
  }

  html[data-page] .floating-action,
  html[data-page] .floating-wechat-actions a,
  html[data-page] .floating-wechat-actions button {
    min-height: 38px !important;
    padding: 0 8px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 430px) {
  html[data-page] .site-header,
  html[data-page] .container,
  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .contact-grid,
  html[data-page] .contact-consult-grid,
  html[data-page] .product-detail-layout,
  html[data-page] .footer-grid {
    width: min(100% - 32px, var(--container)) !important;
    max-width: calc(100vw - 32px) !important;
  }

  html[data-page] .subpage-hero h1,
  html[data-page] .product-hero-copy h1 {
    font-size: clamp(24px, 7.1vw, 30px) !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;
    word-break: break-all !important;
  }

  html[data-page] .hero h1 {
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.14 !important;
  }

  html[data-page] .subpage-hero p,
  html[data-page] .product-hero-copy p,
  html[data-page] .contact-price-note {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  html[data-page] .product-hero-actions,
  html[data-page] .hero-actions,
  html[data-page] .contact-actions {
    gap: 10px !important;
  }

  html[data-page] .subpage-hero p,
  html[data-page] .product-hero-copy p,
  html[data-page] .contact-price-note {
    word-break: break-all !important;
  }
}

@media (max-width: 430px) {
  html[data-page="product"] .product-hero-copy h1 {
    font-size: clamp(21px, 6vw, 24px) !important;
    line-height: 1.32 !important;
    font-weight: 780 !important;
  }
}

/* Final tap-target polish for real browsing on phones and tablets. */
html[data-page] .floating-action,
html[data-page] .carousel-selection-button {
  min-height: 40px;
}

@media (max-width: 1180px) {
  html[data-page] .breadcrumb a,
  html[data-page] .footer-grid a,
  html[data-page] .footer-nav-column a,
  html[data-page] .carousel-selection-button,
  html[data-page] .product-selection-hint a,
  html[data-page] .product-selection-hint button {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 40px !important;
  }

  html[data-page] .breadcrumb {
    gap: 4px 8px !important;
  }

  html[data-page] .footer-nav-column {
    gap: 4px !important;
  }
}

/* Final click-area guard across breakpoints. */
html[data-page] .breadcrumb a,
html[data-page] .hero-guide a,
html[data-page] .hero-guide button,
html[data-page] .carousel-selection-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  min-height: 40px !important;
}

html[data-page] .breadcrumb a {
  padding-inline: 6px !important;
  border-radius: 8px;
}

html[data-page] .modal-actions a,
html[data-page] .modal-actions button,
html[data-page] .contact-popup-grid a,
html[data-page] .contact-popup-grid button {
  min-height: 40px !important;
}

html[data-page] .floating-wechat-actions a,
html[data-page] .floating-wechat-actions button {
  min-height: 40px !important;
}

html[data-page] .floating-actions .floating-action,
html[data-page] .floating-actions a,
html[data-page] .floating-actions button {
  min-height: 40px !important;
}

@media (max-width: 1180px) {
  html[data-page] body:not(.modal-open):not(.nav-open) .floating-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    height: 40px !important;
    max-height: 40px !important;
  }

  html[data-page] .floating-action,
  html[data-page] .floating-wechat-actions a,
  html[data-page] .floating-wechat-actions button {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    overflow: hidden !important;
  }

  html[data-page] .floating-action.back-top {
    display: none !important;
  }

  html[data-page="home"] .product-carousel-band {
    padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }

  html[data-page="home"] body:not(.modal-open):not(.nav-open) .floating-actions {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 430px) {
  html[data-page] .subpage-hero,
  html[data-page] .product-hero {
    padding-inline: 6px !important;
  }

  html[data-page] .subpage-hero h1,
  html[data-page] .product-hero-copy h1,
  html[data-page] .subpage-hero p,
  html[data-page] .product-hero-copy p {
    padding-inline: 4px !important;
  }
}

@media (max-width: 720px) {
  html[data-page] .floating-actions {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Highlight the hero hotline and WeChat ID as primary contact information. */
html[data-page="home"] .hero-contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(640px, 100%);
  margin-top: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

html[data-page="home"] .hero-contact-strip a,
html[data-page="home"] .hero-contact-strip button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 82px;
  padding: 16px 18px 16px 22px;
  overflow: hidden;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 2px solid rgba(11, 91, 216, 0.28);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(11, 79, 182, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

html[data-page="home"] .hero-contact-strip a::before,
html[data-page="home"] .hero-contact-strip button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #0b7cff, #14b8a6);
}

html[data-page="home"] .hero-contact-strip a:hover,
html[data-page="home"] .hero-contact-strip button:hover {
  border-color: rgba(21, 94, 239, 0.36);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

html[data-page="home"] .hero-contact-strip span {
  width: fit-content;
  padding: 4px 9px;
  color: #0647a6;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: rgba(11, 124, 255, 0.1);
  border: 1px solid rgba(11, 124, 255, 0.18);
  border-radius: 999px;
}

html[data-page="home"] .hero-contact-strip strong {
  color: #0b4fb6;
  font-size: clamp(28px, 2.9vw, 38px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

html[data-page="home"] .hero-contact-strip a strong {
  color: #0b4fb6;
}

html[data-page="home"] .hero-contact-strip button strong {
  color: #0b4fb6;
}

@media (max-width: 720px) {
  html[data-page="home"] .hero-contact-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 16px;
    padding: 0;
  }

  html[data-page="home"] .hero-contact-strip a,
  html[data-page="home"] .hero-contact-strip button {
    min-height: 78px;
    padding: 14px 16px 14px 20px;
  }

  html[data-page="home"] .hero-contact-strip strong {
    font-size: clamp(30px, 8.6vw, 38px);
  }
}

/* Final footer repair: keep the public contact information visible and aligned. */
html[data-page] .site-footer {
  padding: 34px 0 32px !important;
  color: #334155 !important;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%) !important;
  border-top: 1px solid rgba(37, 99, 235, 0.14) !important;
  box-shadow: none !important;
}

html[data-page] .site-footer::before {
  display: none !important;
}

html[data-page] .footer-grid-pro {
  display: grid !important;
  grid-template-columns: minmax(260px, 1.25fr) minmax(148px, 0.72fr) minmax(148px, 0.72fr) minmax(290px, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
  min-width: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html[data-page] .footer-brand-block,
html[data-page] .footer-nav-column,
html[data-page] .footer-contact-block {
  align-self: start !important;
  min-width: 0 !important;
}

html[data-page] .footer-logo {
  width: 138px !important;
  max-width: 100% !important;
  margin-bottom: 12px !important;
  background: #fff !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

html[data-page] .footer-brand-block p {
  max-width: 360px !important;
  margin: 0 !important;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

html[data-page] .footer-cert-line {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

html[data-page] .footer-cert-line span {
  color: #0b4fb6 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(37, 99, 235, 0.16) !important;
}

html[data-page] .footer-nav-column {
  display: grid !important;
  gap: 8px !important;
  justify-items: start !important;
  text-align: left !important;
}

html[data-page] .footer-nav-column strong,
html[data-page] .footer-contact-block strong {
  margin-bottom: 2px !important;
  color: #0b4fb6 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

html[data-page] .footer-nav-column a {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  transform: none !important;
}

html[data-page] .footer-nav-column a:hover {
  color: #0b4fb6 !important;
}

html[data-page] .footer-grid-pro .footer-contact-block,
html[data-page] .site-footer .footer-contact-block {
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 14px !important;
  background: #fff !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

html[data-page] .footer-wechat-qr {
  width: 92px !important;
  height: 92px !important;
  padding: 4px !important;
  object-fit: contain !important;
  background: #fff !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

html[data-page] .footer-contact-block p {
  margin: 4px 0 0 !important;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

html[data-page] .footer-contact-block p:nth-of-type(2),
html[data-page] .footer-contact-block p:nth-of-type(3) {
  color: #0b4fb6 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
}

html[data-page] .footer-contact-block p:nth-of-type(1),
html[data-page] .footer-contact-block p:nth-of-type(2) {
  color: #0b4fb6 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

html[data-page] .footer-contact-block p:nth-of-type(3) {
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.contact-action-card-muted {
  color: #64748b !important;
  background: #f8fafc !important;
  border-style: dashed !important;
}

@media (max-width: 980px) {
  html[data-page] .footer-grid-pro {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  html[data-page] .footer-brand-block {
    grid-column: 1 / -1 !important;
  }

  html[data-page] .footer-grid-pro .footer-contact-block,
  html[data-page] .site-footer .footer-contact-block {
    grid-column: 1 / -1 !important;
    max-width: 430px !important;
  }
}

@media (max-width: 640px) {
  html[data-page] .site-footer {
    padding: 28px 0 30px !important;
  }

  html[data-page] .footer-grid-pro {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  html[data-page] .footer-brand-block,
  html[data-page] .footer-nav-column,
  html[data-page] .footer-grid-pro .footer-contact-block,
  html[data-page] .site-footer .footer-contact-block {
    grid-column: auto !important;
  }

  html[data-page] .footer-grid-pro .footer-contact-block,
  html[data-page] .site-footer .footer-contact-block {
    grid-template-columns: 82px minmax(0, 1fr) !important;
    max-width: none !important;
    padding: 12px !important;
  }

  html[data-page] .footer-wechat-qr {
    width: 82px !important;
    height: 82px !important;
  }

  html[data-page] .footer-contact-block p:nth-of-type(2),
  html[data-page] .footer-contact-block p:nth-of-type(3) {
    font-size: 17px !important;
  }
}

html[data-page="home"] .products,
html[data-page="products"] .products {
  content-visibility: auto !important;
  contain-intrinsic-size: 1200px !important;
}

html[data-page="home"] .product-card,
html[data-page="products"] .product-card {
  content-visibility: auto !important;
  contain-intrinsic-size: 390px !important;
  contain: layout paint style !important;
}

/* Homepage cleanup: keep the sales path short, readable, and contact-first. */
html[data-page="home"] .hero {
  min-height: auto !important;
  padding: 72px 0 46px !important;
  overflow: visible !important;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%) !important;
  border-bottom: 1px solid rgba(198, 211, 226, 0.72) !important;
}

html[data-page="home"] .hero::before,
html[data-page="home"] .hero::after {
  display: none !important;
}

html[data-page="home"] .hero-grid {
  display: block !important;
  width: min(100% - 40px, 900px) !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

html[data-page="home"] .hero-copy {
  max-width: 820px !important;
}

html[data-page="home"] .hero h1 {
  max-width: 760px !important;
  margin-top: 14px !important;
  font-size: clamp(40px, 5vw, 60px) !important;
  line-height: 1.12 !important;
}

html[data-page="home"] .hero-copy p {
  max-width: 720px !important;
  margin-top: 18px !important;
  color: #40516a !important;
  font-size: 18px !important;
  line-height: 1.82 !important;
}

html[data-page="home"] .hero-actions {
  margin-top: 26px !important;
  gap: 12px !important;
}

html[data-page="home"] .hero-actions .button {
  display: inline-flex !important;
  min-height: 48px !important;
  padding: 0 22px !important;
}

html[data-page="home"] .hero-mobile-consult {
  display: inline-flex !important;
}

html[data-page="home"] .hero-contact-strip {
  width: min(640px, 100%) !important;
  margin-top: 22px !important;
}

html[data-page="home"] .trust-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  max-width: 720px !important;
  margin-top: 18px !important;
}

html[data-page="home"] .trust-row span {
  min-height: 34px !important;
  padding: 7px 12px !important;
  color: #334155 !important;
  font-size: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(198, 211, 226, 0.82) !important;
  box-shadow: none !important;
}

html[data-page="home"] .category-strip {
  padding: 24px 0 !important;
  background: #ffffff !important;
}

html[data-page="home"] .products.section {
  padding-top: 44px !important;
}

html[data-page="home"] .products .section-heading {
  margin-bottom: 18px !important;
}

html[data-page="home"] .products .section-heading p {
  max-width: 620px !important;
}

html[data-page="home"] .contact {
  padding: 44px 0 52px !important;
  background: #f8fbff !important;
}

@media (max-width: 720px) {
  html[data-page="home"] .hero {
    padding: 42px 0 34px !important;
  }

  html[data-page="home"] .hero-grid {
    width: min(100% - 24px, 900px) !important;
  }

  html[data-page="home"] .hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  html[data-page="home"] .hero-copy p {
    font-size: 16px !important;
  }

  html[data-page="home"] .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  html[data-page="home"] .trust-row span {
    width: 100% !important;
  }
}

/* Homepage pastel backdrop: soft, low-contrast color fields like the reference. */
html[data-page="home"] body {
  background:
    radial-gradient(72vw 72vw at 24% 46%, rgba(196, 246, 224, 0.62) 0%, rgba(219, 249, 238, 0.36) 42%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(68vw 78vw at 66% 76%, rgba(250, 222, 238, 0.62) 0%, rgba(251, 235, 245, 0.34) 44%, rgba(255, 255, 255, 0) 74%),
    radial-gradient(62vw 76vw at 100% 50%, rgba(222, 229, 255, 0.72) 0%, rgba(235, 239, 255, 0.38) 46%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(46vw 54vw at 0% 0%, rgba(220, 242, 255, 0.78) 0%, rgba(236, 248, 255, 0.44) 48%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100% !important;
}

html[data-page="home"] main,
html[data-page="home"] .hero,
html[data-page="home"] .product-carousel-band,
html[data-page="home"] .category-strip,
html[data-page="home"] .products.section,
html[data-page="home"] .contact {
  background: transparent !important;
}

html[data-page="home"] .hero {
  border-bottom-color: rgba(198, 211, 226, 0.46) !important;
}

html[data-page="home"] .category-strip {
  border-top-color: rgba(198, 211, 226, 0.42) !important;
  border-bottom-color: rgba(198, 211, 226, 0.42) !important;
}

html[data-page="home"] .product-carousel-band {
  padding: 34px 0 26px !important;
}

html[data-page="home"] .carousel-head {
  margin-bottom: 16px !important;
}

html[data-page="home"] .carousel-head h2 {
  margin-top: 8px !important;
  font-size: clamp(28px, 3vw, 38px) !important;
}

@media (max-width: 720px) {
  html[data-page="home"] body {
    background:
      radial-gradient(92vw 96vw at 18% 24%, rgba(196, 246, 224, 0.62) 0%, rgba(255, 255, 255, 0) 74%),
      radial-gradient(96vw 102vw at 74% 70%, rgba(250, 222, 238, 0.58) 0%, rgba(255, 255, 255, 0) 76%),
      radial-gradient(88vw 110vw at 100% 38%, rgba(222, 229, 255, 0.66) 0%, rgba(255, 255, 255, 0) 78%),
      linear-gradient(180deg, #fbfdff 0%, #ffffff 100%) !important;
  }
}

/* Texture pass: add fine grain and translucent surfaces so the pastel background has depth. */
html[data-page="home"] body {
  position: relative !important;
  isolation: isolate !important;
  overflow-x: hidden !important;
}

html[data-page="home"] body::before,
html[data-page="home"] body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

html[data-page="home"] body::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.28) 36%, rgba(255, 255, 255, 0.66) 100%),
    radial-gradient(112vw 78vw at 18% 34%, rgba(194, 246, 224, 0.58) 0%, rgba(235, 255, 247, 0.24) 48%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(94vw 74vw at 68% 78%, rgba(252, 220, 239, 0.52) 0%, rgba(255, 246, 251, 0.22) 46%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(78vw 82vw at 102% 42%, rgba(220, 229, 255, 0.64) 0%, rgba(244, 247, 255, 0.26) 52%, rgba(255, 255, 255, 0) 80%);
}

html[data-page="home"] body::after {
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(30, 64, 175, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 118, 110, 0.022) 1px, transparent 1px);
  background-size: 180px 180px, 118px 118px, 118px 118px;
}

html[data-page="home"] main,
html[data-page="home"] .site-footer {
  position: relative;
  z-index: 1;
}

html[data-page="home"] .hero-contact-strip a,
html[data-page="home"] .hero-contact-strip button,
html[data-page="home"] .trust-row span,
html[data-page="home"] .category-card,
html[data-page="home"] .carousel-product,
html[data-page="home"] .product-card,
html[data-page="home"] .contact-grid {
  background: rgba(255, 255, 255, 0.74) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 48px rgba(76, 97, 133, 0.1) !important;
  backdrop-filter: blur(18px) saturate(135%) !important;
}

html[data-page="home"] .category-card.active,
html[data-page="home"] .category-card:hover,
html[data-page="home"] .carousel-product:hover,
html[data-page="home"] .product-card:hover {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(64, 124, 255, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 56px rgba(56, 85, 126, 0.14) !important;
}

html[data-page="home"] .product-toolbar {
  background: rgba(255, 255, 255, 0.68) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 14px 34px rgba(76, 97, 133, 0.08) !important;
  backdrop-filter: blur(16px) saturate(130%) !important;
}

html[data-page="home"] .carousel-product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(238, 246, 255, 0.38) 100%) !important;
}

html[data-page="home"] .carousel-button {
  background: rgba(255, 255, 255, 0.76) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 14px 34px rgba(76, 97, 133, 0.1) !important;
  backdrop-filter: blur(16px) saturate(130%) !important;
}

html[data-page="home"] .site-footer {
  background: rgba(248, 252, 255, 0.78) !important;
  backdrop-filter: blur(18px) saturate(125%) !important;
}

/* Enterprise consultation channel. */
html[data-page="home"] .hero-contact-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(860px, 100%) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact strong {
  font-size: clamp(22px, 2.2vw, 30px) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact {
  min-height: 104px !important;
  padding-bottom: 44px !important;
  cursor: pointer !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::after {
  position: absolute;
  right: 16px;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  content: "点击进入 →";
  background: linear-gradient(180deg, #1769e0 0%, #0b4fb6 100%);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 79, 182, 0.22);
}

html[data-page="home"] .hero-contact-strip .enterprise-contact:hover::after {
  background: linear-gradient(180deg, #0b7cff 0%, #0b4fb6 100%);
  transform: translateY(-1px);
}

.footer-enterprise-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #0b4fb6 !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.footer-enterprise-link:hover {
  color: #1769e0 !important;
  text-decoration: underline;
}

html[data-page] .footer-contact-block p:has(.footer-enterprise-link) {
  margin-top: 2px !important;
  color: #0b4fb6 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

html[data-page] .footer-contact-block p:nth-of-type(3) {
  color: #0b4fb6 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

html[data-page] .footer-contact-block p:nth-of-type(4) {
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

@media (max-width: 980px) {
  html[data-page="home"] .hero-contact-strip {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
}

/* Redesigned floating consultation card. */
html[data-page="home"] .floating-actions {
  left: auto !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  width: min(374px, calc(100vw - 36px)) !important;
  max-width: calc(100vw - 36px) !important;
  height: auto !important;
  max-height: none !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

html[data-page="home"] .qq-floating-action,
html[data-page="home"] .selection-floating-action,
html[data-page="home"] .floating-action.back-top {
  display: none !important;
}

html[data-page="home"] .floating-wechat-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-areas: none !important;
  grid-auto-flow: row !important;
  gap: 14px !important;
  padding: 18px !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.94) 100%) !important;
  border: 1px solid rgba(23, 105, 224, 0.18) !important;
  border-radius: 12px !important;
  box-shadow:
    0 22px 56px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
}

html[data-page="home"] .floating-wechat-head {
  display: flex !important;
  grid-area: auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(203, 213, 225, 0.72) !important;
}

html[data-page="home"] .floating-wechat-head strong {
  color: #07111f !important;
  font-size: 22px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
  flex: 0 0 auto !important;
}

html[data-page="home"] .floating-wechat-head span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 28px !important;
  padding: 0 11px !important;
  color: #0b4fb6 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  background: rgba(23, 105, 224, 0.1) !important;
  border: 1px solid rgba(23, 105, 224, 0.16) !important;
  border-radius: 999px !important;
}

html[data-page="home"] .floating-wechat-main {
  display: grid !important;
  grid-area: auto !important;
  grid-template-columns: 122px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
}

html[data-page="home"] .floating-wechat-main img {
  grid-area: auto !important;
  width: 122px !important;
  height: 122px !important;
  margin: 0 !important;
  padding: 7px !important;
  object-fit: contain !important;
  background: #fff !important;
  border: 1px solid rgba(23, 105, 224, 0.22) !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08) !important;
}

html[data-page="home"] .floating-wechat-copy {
  display: grid !important;
  grid-area: auto !important;
  gap: 9px !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

html[data-page="home"] .floating-wechat-copy .floating-wechat-benefit {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 26px !important;
  padding: 0 10px !important;
  align-items: center !important;
  color: #075f57 !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  background: rgba(20, 184, 166, 0.1) !important;
  border: 1px solid rgba(20, 184, 166, 0.16) !important;
  border-radius: 999px !important;
}

html[data-page="home"] .floating-contact-row {
  display: grid !important;
  gap: 2px !important;
  padding: 8px 10px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(203, 213, 225, 0.58) !important;
  border-radius: 9px !important;
}

html[data-page="home"] .floating-wechat-label {
  color: #667085 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html[data-page="home"] .floating-wechat-number {
  color: #07111f !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html[data-page="home"] .floating-wechat-actions {
  display: grid !important;
  grid-area: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
}

html[data-page="home"] .floating-wechat-actions a,
html[data-page="home"] .floating-wechat-actions button {
  min-height: 42px !important;
  max-height: none !important;
  padding: 0 12px !important;
  color: #0b4fb6 !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
  background: rgba(238, 245, 255, 0.94) !important;
  border: 1px solid rgba(23, 105, 224, 0.2) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

html[data-page="home"] .floating-wechat-actions button {
  color: #fff !important;
  background: linear-gradient(180deg, #1769e0 0%, #0b4fb6 100%) !important;
  border-color: rgba(11, 79, 182, 0.24) !important;
}

html[data-page="home"] .floating-wechat-actions a:hover,
html[data-page="home"] .floating-wechat-actions button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1) !important;
}

@media (max-width: 720px) {
  html[data-page="home"] .floating-actions {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Hero contact strip with official hotline. */
html[data-page="home"] .hero-grid {
  width: min(100% - 40px, 1120px) !important;
  max-width: 1120px !important;
}

html[data-page="home"] .hero-copy {
  max-width: 1040px !important;
}

html[data-page="home"] .hero-contact-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: min(1040px, 100%) !important;
  gap: 14px !important;
}

html[data-page="home"] .hero-contact-strip a,
html[data-page="home"] .hero-contact-strip button {
  min-height: 104px !important;
}

html[data-page="home"] .hero-contact-strip strong {
  font-size: clamp(24px, 2.3vw, 34px) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact strong,
html[data-page="home"] .hero-contact-strip .hotline-contact strong {
  font-size: clamp(22px, 2vw, 28px) !important;
}

html[data-page="home"] .hero-contact-strip .hotline-contact strong {
  letter-spacing: 0 !important;
}

@media (max-width: 1180px) {
  html[data-page="home"] .hero-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  html[data-page="home"] .hero-grid {
    width: min(100% - 24px, 1120px) !important;
  }

  html[data-page="home"] .hero-contact-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Keep active category cards readable on the light glass layout. */
html[data-page="home"] .category-card,
html[data-page="home"] .category-card.active,
html[data-page="products"] .category-card,
html[data-page="products"] .category-card.active {
  color: #0f172a !important;
}

html[data-page="home"] .category-card span,
html[data-page="home"] .category-card.active span,
html[data-page="products"] .category-card span,
html[data-page="products"] .category-card.active span {
  color: #64748b !important;
}

html[data-page="home"] .category-card strong,
html[data-page="home"] .category-card.active strong,
html[data-page="products"] .category-card strong,
html[data-page="products"] .category-card.active strong {
  color: #07111f !important;
}

html[data-page="home"] .category-card .category-count,
html[data-page="home"] .category-card.active .category-count,
html[data-page="products"] .category-card .category-count,
html[data-page="products"] .category-card.active .category-count {
  color: #0b4fb6 !important;
  background: rgba(23, 105, 224, 0.1) !important;
  border: 1px solid rgba(23, 105, 224, 0.14) !important;
}

html[data-page="home"] .category-card.active,
html[data-page="products"] .category-card.active {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(23, 105, 224, 0.36) !important;
  box-shadow:
    inset 0 0 0 2px rgba(23, 105, 224, 0.12),
    0 22px 56px rgba(56, 85, 126, 0.14) !important;
}

/* Homepage hero headline inspired by the new reference block. */
html[data-page="home"] .hero {
  padding-top: 58px !important;
}

html[data-page="home"] .hero-copy {
  margin: 0 auto !important;
  text-align: center !important;
}

html[data-page="home"] .hero-cert-badge {
  justify-content: center !important;
  min-height: 42px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  color: #0570dc !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  background: rgba(224, 244, 255, 0.74) !important;
  border: 1px solid rgba(85, 166, 240, 0.46) !important;
  border-radius: 999px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(21, 94, 239, 0.1) !important;
}

html[data-page="home"] .hero h1 {
  max-width: 1120px !important;
  margin: 34px auto 0 !important;
  color: #15171d !important;
  font-size: clamp(46px, 6.4vw, 82px) !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  text-align: center !important;
  text-wrap: balance !important;
}

html[data-page="home"] .hero-copy p {
  max-width: 800px !important;
  margin: 24px auto 0 !important;
  color: #8a919b !important;
  font-size: clamp(19px, 2vw, 25px) !important;
  line-height: 1.7 !important;
  text-align: center !important;
}

html[data-page="home"] .hero-actions {
  justify-content: center !important;
}

html[data-page="home"] .hero-contact-strip {
  margin-right: auto !important;
  margin-left: auto !important;
}

html[data-page="home"] .trust-row {
  justify-content: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 720px) {
  html[data-page="home"] .hero {
    padding-top: 40px !important;
  }

  html[data-page="home"] .hero-cert-badge {
    min-height: 36px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  html[data-page="home"] .hero h1 {
    margin-top: 24px !important;
    font-size: clamp(34px, 10.4vw, 48px) !important;
    line-height: 1.12 !important;
  }

  html[data-page="home"] .hero-copy p {
    margin-top: 18px !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
  }
}
html[data-page="home"] .hero h1 > span {
  display: block;
  text-align: center;
}

@media (max-width: 430px) {
  html[data-page="products"] .subpage-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  html[data-page="products"] .subpage-hero-grid > div,
  html[data-page="products"] .subpage-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html[data-page="products"] .subpage-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 104px !important;
    gap: 12px !important;
    padding: 16px !important;
    overflow: hidden !important;
  }

  html[data-page="products"] .product-contact-copy {
    min-width: 0 !important;
  }

  html[data-page="products"] .product-contact-qr {
    display: block !important;
    width: 104px !important;
    height: 104px !important;
    max-width: 104px !important;
  }

  html[data-page="products"] .product-contact-copy .enterprise-wechat-button {
    width: auto !important;
    max-width: 100% !important;
    min-height: 38px !important;
    padding: 8px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  html[data-page="products"] .product-contact-note {
    grid-column: 1 / -1 !important;
  }
}

html[data-page] .footer-contact-block .footer-wechat-qr {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html[data-page] .footer-contact-block .footer-enterprise-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  color: #fff !important;
  background: linear-gradient(180deg, #1769e0 0%, #0b4fb6 100%);
  border: 1px solid #0b4fb6;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(11, 79, 182, 0.2);
  text-decoration: none !important;
}

html[data-page] .footer-contact-block .footer-enterprise-link:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #2378ed 0%, #0a459e 100%);
  transform: translateY(-1px);
}

html[data-page] .footer-contact-block a.footer-enterprise-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  color: #fff !important;
  background: linear-gradient(180deg, #1683ff 0%, #075bc9 100%) !important;
  border: 1px solid #075bc9 !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(7, 91, 201, 0.24);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

html[data-page] .footer-contact-block a.footer-enterprise-link:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #0d74ea 0%, #064fae 100%) !important;
  box-shadow: 0 11px 24px rgba(7, 91, 201, 0.3);
  transform: translateY(-2px);
}

html[data-page] .footer-contact-block a.footer-enterprise-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(7, 91, 201, 0.22);
}

html[data-page="products"] .subpage-panel {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px 24px;
  align-items: center;
}

html[data-page="products"] .product-contact-copy {
  display: grid;
  gap: 12px;
}

html[data-page="products"] .product-contact-copy p {
  margin: 0 !important;
}

html[data-page="products"] .product-contact-copy .enterprise-wechat-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  background: #0b5bd3 !important;
  border: 1px solid #084bad;
  border-radius: 8px !important;
  box-shadow: 0 8px 18px rgba(11, 91, 211, 0.22);
  text-decoration: none !important;
}

html[data-page="products"] .product-contact-copy .enterprise-wechat-button:hover {
  color: #fff !important;
  background: #084bad !important;
  transform: translateY(-1px);
}

html[data-page="products"] .product-contact-qr {
  display: block;
  width: 150px;
  height: 150px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
}

html[data-page="products"] .product-contact-note {
  grid-column: 1 / -1;
  margin: 0 !important;
}

@media (max-width: 520px) {
  html[data-page="products"] .subpage-panel {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 16px;
  }

  html[data-page="products"] .product-contact-qr {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 430px) {
  html[data-page="products"] .subpage-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page="products"] .subpage-panel {
    position: relative !important;
    display: block !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    padding: 16px !important;
    padding-right: 132px !important;
    overflow: hidden !important;
  }

  html[data-page="products"] .product-contact-copy {
    min-width: 0 !important;
  }

  html[data-page="products"] .product-contact-qr {
    position: absolute !important;
    top: 44px !important;
    right: 16px !important;
    width: 104px !important;
    height: 104px !important;
    max-width: 104px !important;
    padding: 4px !important;
  }

  html[data-page="products"] .product-contact-copy .enterprise-wechat-button {
    width: auto !important;
    max-width: 100% !important;
    min-height: 38px !important;
    padding: 8px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  html[data-page="products"] .product-contact-note {
    width: calc(100% + 116px) !important;
    margin-top: 16px !important;
  }
}
html[data-page="products"] .product-category-strip {
  margin: 16px 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

html[data-page="products"] #products > .container {
  display: flex;
  flex-direction: column;
}

html[data-page="products"] #products .section-heading {
  order: 1;
}

html[data-page="products"] #products .product-toolbar {
  order: 3;
}

html[data-page="products"] #products .product-category-strip {
  order: 2;
}

html[data-page="products"] #products .product-grid {
  order: 4;
}

html[data-page="products"] #products .load-more-row {
  order: 5;
}

html[data-page="products"] .product-category-strip .category-grid {
  width: 100%;
  max-width: none;
  margin: 0;
}

html[data-page="products"] #products .product-toolbar + .product-category-strip {
  border-top: 0 !important;
}

html[data-page="products"] #products .product-category-strip + .product-grid {
  margin-top: 0 !important;
}
/* Make the primary enterprise WeChat channel unmistakable in the home contact strip. */
html[data-page="home"] .hero-contact-strip .enterprise-contact {
  z-index: 1 !important;
  overflow: visible !important;
  color: #063f32 !important;
  background: linear-gradient(135deg, #eafff7 0%, #c9f8e5 100%) !important;
  border: 3px solid #07a96b !important;
  box-shadow: 0 14px 34px rgba(7, 169, 107, 0.24), 0 0 0 5px rgba(7, 169, 107, 0.1) !important;
  transform: translateY(-5px) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact span {
  color: #06764f !important;
  background: #fff !important;
  border-color: #72dbb2 !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact strong {
  color: #075f45 !important;
  font-weight: 950 !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::before {
  position: absolute;
  top: -17px;
  right: 14px;
  padding: 6px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  content: "推荐咨询入口";
  background: #ff5a45;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(220, 58, 37, 0.28);
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::after {
  right: 14px !important;
  bottom: 11px !important;
  min-height: 34px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  content: "立即进入企业微信 →" !important;
  background: linear-gradient(180deg, #10bd7b 0%, #078457 100%) !important;
  box-shadow: 0 10px 22px rgba(7, 132, 87, 0.3) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact:hover {
  border-color: #058655 !important;
  box-shadow: 0 18px 42px rgba(7, 169, 107, 0.34), 0 0 0 7px rgba(7, 169, 107, 0.13) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

@media (max-width: 640px) {
  html[data-page="home"] .hero-contact-strip .enterprise-contact {
    margin-top: 12px !important;
  }
}

/* Contact popup: present enterprise WeChat as an unmistakable click action. */
html[data-page] .contact-popup-grid .enterprise-grid-action {
  position: relative !important;
  color: #fff !important;
  background: linear-gradient(135deg, #13bd7b 0%, #078657 100%) !important;
  border: 2px solid #05774d !important;
  box-shadow: 0 10px 24px rgba(7, 134, 87, 0.28) !important;
  cursor: pointer !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action span,
html[data-page] .contact-popup-grid .enterprise-grid-action strong {
  color: #fff !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action span {
  font-weight: 800 !important;
  opacity: 0.9;
}

html[data-page] .contact-popup-grid .enterprise-grid-action strong {
  font-size: clamp(17px, 2vw, 21px) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[data-page] .contact-popup-grid .enterprise-grid-action:hover {
  background: linear-gradient(135deg, #0fce83 0%, #056e47 100%) !important;
  box-shadow: 0 14px 30px rgba(7, 134, 87, 0.38) !important;
  transform: translateY(-2px) !important;
}

html[data-page] .contact-popup .modal-actions .enterprise-popup-button {
  min-width: 225px !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  background: linear-gradient(180deg, #12bc79 0%, #078657 100%) !important;
  border: 2px solid #05774d !important;
  box-shadow: 0 9px 20px rgba(7, 134, 87, 0.28) !important;
  cursor: pointer !important;
}

html[data-page] .contact-popup .modal-actions .enterprise-popup-button:hover {
  background: linear-gradient(180deg, #18cf87 0%, #056e47 100%) !important;
  box-shadow: 0 12px 26px rgba(7, 134, 87, 0.38) !important;
  transform: translateY(-2px) !important;
}

html[data-page] .contact-popup .modal-actions .enterprise-popup-button:active,
html[data-page] .contact-popup-grid .enterprise-grid-action:active {
  transform: translateY(1px) scale(0.98) !important;
}

@media (max-width: 640px) {
  html[data-page] .contact-popup .modal-actions .enterprise-popup-button {
    order: -1;
    flex: 1 0 100% !important;
    width: 100% !important;
    min-height: 54px !important;
  }
}

/* Home enterprise entry: align with the site's blue/cyan visual system. */
html[data-page="home"] .hero-contact-strip .enterprise-contact {
  z-index: auto !important;
  overflow: hidden !important;
  color: #0b4fb6 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96)) !important;
  border: 1px solid rgba(23, 105, 224, 0.2) !important;
  border-left: 5px solid #12a9a0 !important;
  box-shadow: 0 12px 30px rgba(50, 91, 146, 0.11) !important;
  transform: none !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::before {
  display: none !important;
  content: none !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact span {
  color: #0b4fb6 !important;
  background: #eaf4ff !important;
  border-color: #b9d9ff !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact strong {
  color: #0b4fb6 !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::after {
  right: 14px !important;
  bottom: 5px !important;
  min-height: 32px !important;
  padding: 0 15px !important;
  color: #fff !important;
  font-size: 14px !important;
  content: "点击进入 →" !important;
  background: linear-gradient(180deg, #1682f3 0%, #0b5dcc 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 7px 16px rgba(11, 93, 204, 0.22) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact:hover {
  background: linear-gradient(135deg, #fff, #e8f5ff) !important;
  border-color: rgba(23, 105, 224, 0.42) !important;
  border-left-color: #0d8f88 !important;
  box-shadow: 0 16px 34px rgba(23, 105, 224, 0.17) !important;
  transform: translateY(-3px) !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact:hover::after {
  background: linear-gradient(180deg, #087cff 0%, #084fac 100%) !important;
}

/* Keep every enterprise-WeChat action inside the contact popup on-brand. */
html[data-page] .contact-popup-grid .enterprise-grid-action {
  color: #0b4fb6 !important;
  background: linear-gradient(135deg, #edf6ff 0%, #dcecff 100%) !important;
  border: 1px solid #9cc9ff !important;
  border-left: 5px solid #1682f3 !important;
  box-shadow: 0 8px 20px rgba(23, 105, 224, 0.14) !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action span {
  color: #527096 !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action strong {
  color: #0b4fb6 !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action:hover {
  background: linear-gradient(135deg, #e5f2ff 0%, #cfe5ff 100%) !important;
  border-color: #6aafff !important;
  border-left-color: #0b5dcc !important;
  box-shadow: 0 11px 24px rgba(23, 105, 224, 0.2) !important;
}

html[data-page] .contact-popup .modal-actions .enterprise-popup-button {
  color: #fff !important;
  background: linear-gradient(180deg, #1682f3 0%, #0b5dcc 100%) !important;
  border: 1px solid #084fac !important;
  box-shadow: 0 8px 18px rgba(11, 93, 204, 0.24) !important;
}

html[data-page] .contact-popup .modal-actions .enterprise-popup-button:hover {
  background: linear-gradient(180deg, #087cff 0%, #084fac 100%) !important;
  border-color: #073f8b !important;
  box-shadow: 0 11px 22px rgba(11, 93, 204, 0.31) !important;
}

/* Rebuilt compact enterprise-WeChat card in the contact dialog. */
html[data-page] .contact-popup-grid .enterprise-grid-action {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-height: 120px !important;
  padding: 20px 18px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  background: linear-gradient(145deg, #147ff0 0%, #0b5fc9 100%) !important;
  border: 1px solid #0957b7 !important;
  border-left: 1px solid #0957b7 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(11, 95, 201, 0.23) !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action::before {
  position: absolute;
  top: -30px;
  right: -24px;
  width: 100px;
  height: 100px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

html[data-page] .contact-popup-grid .enterprise-grid-action span {
  position: relative;
  z-index: 1;
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action strong {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #fff !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action strong b {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

html[data-page] .contact-popup-grid .enterprise-grid-action:hover {
  background: linear-gradient(145deg, #087bf4 0%, #084fae 100%) !important;
  border-color: #084fae !important;
  box-shadow: 0 14px 28px rgba(11, 95, 201, 0.31) !important;
  transform: translateY(-2px) !important;
}

html[data-page] .contact-popup-grid .enterprise-grid-action:hover strong b {
  transform: translateX(3px);
}

@media (max-width: 440px) {
  html[data-page] .contact-popup-grid .enterprise-grid-action {
    min-height: 104px !important;
    padding: 16px !important;
  }

  html[data-page] .contact-popup-grid .enterprise-grid-action strong {
    font-size: 16px !important;
  }
}

html[data-page] .contact-popup-header #wechatTitle {
  margin-top: 12px !important;
  font-size: clamp(30px, 2.45vw, 39px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 640px) {
  html[data-page] .contact-popup-header #wechatTitle {
    font-size: clamp(25px, 7vw, 32px) !important;
    line-height: 1.22 !important;
  }
}

/* The persistent contact widget and the purchase CTA already carry these
   details; keep the footer focused on navigation instead of repeating them. */
html[data-page] .site-footer .footer-contact-block {
  display: none !important;
}

html[data-page] .site-footer .footer-grid-pro {
  grid-template-columns: minmax(320px, 1.7fr) minmax(170px, 0.75fr) minmax(190px, 0.85fr) !important;
  gap: clamp(36px, 6vw, 92px) !important;
}

@media (max-width: 820px) {
  html[data-page] .site-footer .footer-grid-pro {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  html[data-page] .site-footer .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  html[data-page] .site-footer .footer-grid-pro {
    grid-template-columns: 1fr !important;
  }

  html[data-page] .site-footer .footer-brand-block {
    grid-column: auto;
  }
}

/* Final footer density override. */
html[data-page] .site-footer {
  padding: 14px 0 16px !important;
}

html[data-page] .site-footer .footer-grid-pro {
  width: min(1180px, calc(100% - 40px)) !important;
  grid-template-columns: minmax(360px, 1.45fr) minmax(170px, 0.55fr) minmax(180px, 0.6fr) !important;
  align-items: start !important;
  gap: 0 !important;
  min-height: 0 !important;
  padding: 16px 26px !important;
}

html[data-page] .site-footer .footer-brand-block {
  max-width: 460px !important;
  padding: 0 42px 0 0 !important;
}

html[data-page] .site-footer .footer-logo {
  width: 170px !important;
  margin: 0 0 8px !important;
}

html[data-page] .site-footer .footer-brand-block > p {
  margin: 0 0 9px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

html[data-page] .site-footer .footer-cert-line {
  gap: 6px !important;
}

html[data-page] .site-footer .footer-cert-line span {
  padding: 3px 8px !important;
  font-size: 11px !important;
}

html[data-page] .site-footer .footer-nav-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  min-height: 0 !important;
  padding: 0 22px !important;
}

html[data-page] .site-footer .footer-nav-column strong {
  margin: 0 0 6px !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

html[data-page] .site-footer .footer-nav-column a {
  margin: 0 !important;
  padding: 3px 0 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

@media (max-width: 820px) {
  html[data-page] .site-footer .footer-grid-pro {
    grid-template-columns: 1fr 1fr !important;
    padding: 18px 22px !important;
  }

  html[data-page] .site-footer .footer-brand-block {
    grid-column: 1 / -1 !important;
    margin-bottom: 12px !important;
    padding: 0 0 12px !important;
  }
}

@media (max-width: 520px) {
  html[data-page] .site-footer .footer-grid-pro {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    padding: 16px 18px !important;
  }

  html[data-page] .site-footer .footer-nav-column {
    padding: 10px 0 !important;
  }
}

html[data-page] .contact-qr-card a.footer-enterprise-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  color: #fff !important;
  font-weight: 900;
  background: linear-gradient(180deg, #1683ff 0%, #075bc9 100%) !important;
  border: 1px solid #075bc9 !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(7, 91, 201, 0.25);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

html[data-page] .contact-qr-card a.footer-enterprise-link:hover {
  color: #fff !important;
  box-shadow: 0 11px 24px rgba(7, 91, 201, 0.32);
  transform: translateY(-2px);
}

html[data-page] .contact-qr-card a.footer-enterprise-link:active {
  transform: translateY(0);
}

.deployment-material-visual {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 104, 232, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(9, 17, 31, 0.08);
}

.deployment-material-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .deployment-material-visual img {
    height: auto;
  }
}

html[data-page="subpage"] .contact-consult-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

html[data-page="subpage"] .contact-consult .contact-method-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 46px);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 131, 255, 0.09), transparent 38%),
    linear-gradient(145deg, #fff 0%, #f8fbff 100%);
}

.contact-preflight-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 32px;
}

.contact-preflight-steps article {
  display: flex;
  gap: 12px;
  min-height: 126px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 104, 232, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 17, 31, 0.05);
}

.contact-preflight-steps b {
  flex: 0 0 34px;
  color: #0f68e8;
  font-size: 14px;
  line-height: 1.5;
}

.contact-preflight-steps div,
.contact-preflight-steps strong,
.contact-preflight-steps span {
  display: block;
}

.contact-preflight-steps strong {
  margin-bottom: 7px;
  color: #09111f;
  font-size: 16px;
}

.contact-preflight-steps span {
  color: #66758c;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="subpage"] .deployment-material-visual img {
  object-fit: cover;
}

@media (max-width: 900px) {
  html[data-page="subpage"] .contact-consult-grid {
    grid-template-columns: 1fr;
  }
  .contact-preflight-steps {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .contact-preflight-steps article {
    min-height: 0;
  }
  html[data-page="subpage"] .deployment-material-visual img {
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 1100px) {
  html[data-page="subpage"] .contact-consult > .container {
    width: min(1480px, calc(100% - 48px));
    max-width: 1480px;
  }

  html[data-page="subpage"] .contact-consult-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(500px, 0.72fr);
    gap: 36px;
  }

  html[data-page="subpage"] .contact-consult .contact-method-card {
    padding: 48px 52px;
  }

  html[data-page="subpage"] .contact-consult .contact-method-card h2 {
    font-size: clamp(44px, 3.4vw, 58px);
    line-height: 1.12;
  }

  html[data-page="subpage"] .contact-consult .contact-method-card > p {
    font-size: 20px;
    line-height: 1.75;
  }

  html[data-page="subpage"] .contact-consult .contact-checklist span {
    padding: 10px 17px;
    font-size: 17px;
  }

  .contact-preflight-steps article {
    min-height: 150px;
    padding: 22px 20px;
  }

  .contact-preflight-steps b {
    font-size: 17px;
  }

  .contact-preflight-steps strong {
    font-size: 19px;
  }

  .contact-preflight-steps span {
    font-size: 15px;
    line-height: 1.75;
  }

  html[data-page="subpage"] .deployment-material-visual {
    min-width: 500px;
  }
}

/* About mega-menu alignment and overflow fix */
@media (min-width: 961px) {
  .desktop-nav .nav-group-wide .mega-menu {
    width: min(940px, calc(100vw - 40px));
  }

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

  .desktop-nav .nav-card-grid a {
    min-width: 0;
    min-height: 74px;
    padding: 14px;
  }

  .desktop-nav .nav-card-grid span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
}

/* Restrained enterprise UI pass: reduce template-like decoration. */
html[data-page] body {
  color: #172033;
  background: #f6f8fb;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, sans-serif;
}

html[data-page] .site-header,
html[data-page] .site-header-pro {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #e3e8ef !important;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04) !important;
  backdrop-filter: none !important;
}

html[data-page] .desktop-nav a,
html[data-page] .desktop-nav summary {
  border-radius: 6px !important;
  font-weight: 700;
}

html[data-page] .nav-cta,
html[data-page] .button,
html[data-page] button.button,
html[data-page] a.button {
  border-radius: 7px !important;
  box-shadow: none !important;
}

html[data-page] .button.primary,
html[data-page] .nav-cta,
html[data-page] .consult-link {
  background: #0969da !important;
  border-color: #0969da !important;
}

html[data-page] .button:hover,
html[data-page] .nav-cta:hover,
html[data-page] .consult-link:hover {
  transform: none !important;
  box-shadow: none !important;
}

html[data-page] main,
html[data-page] .section-band,
html[data-page] .products,
html[data-page] .product-carousel-band,
html[data-page] .contact,
html[data-page] .contact-consult {
  background-image: none !important;
}

html[data-page] .section,
html[data-page] .section-band {
  border-color: #e6ebf1 !important;
}

html[data-page] h1,
html[data-page] h2,
html[data-page] h3 {
  color: #111827;
  letter-spacing: -0.025em !important;
  text-shadow: none !important;
}

html[data-page="home"] .hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 5vw, 72px) !important;
  line-height: 1.08 !important;
}

html[data-page] .section-heading h2,
html[data-page] .section-title h2 {
  font-size: clamp(30px, 3vw, 44px) !important;
}

html[data-page] .eyebrow {
  padding: 0 !important;
  color: #0969da !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  box-shadow: none !important;
}

html[data-page] .product-card,
html[data-page] .carousel-product,
html[data-page] .category-card,
html[data-page] .contact-page-card,
html[data-page] .contact-method-card,
html[data-page] .subpage-panel,
html[data-page] .credential-card,
html[data-page] .process-card,
html[data-page] .solution-card,
html[data-page] .faq details,
html[data-page] .deployment-material-visual {
  background: #fff !important;
  border: 1px solid #e0e6ed !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05) !important;
}

html[data-page] .product-card:hover,
html[data-page] .carousel-product:hover,
html[data-page] .category-card:hover,
html[data-page] .credential-card:hover,
html[data-page] .solution-card:hover {
  border-color: #b8c7d9 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-2px) !important;
}

html[data-page] .product-media,
html[data-page] .carousel-product-media,
html[data-page] .product-hero-image {
  background: #f3f5f8 !important;
  background-image: none !important;
  border-radius: 9px 9px 0 0 !important;
}

html[data-page] .product-card-meta span,
html[data-page] .product-tag-row span,
html[data-page] .category-count,
html[data-page] .channel-chip,
html[data-page] .contact-checklist span {
  color: #44546a !important;
  background: #f2f5f8 !important;
  border: 1px solid #dfe5ec !important;
  border-radius: 5px !important;
  box-shadow: none !important;
}

html[data-page] .product-card-meta span:first-child,
html[data-page] .category-card.active .category-count {
  color: #075fc8 !important;
  background: #edf5ff !important;
  border-color: #cfe3fb !important;
}

html[data-page] .category-card.active {
  background: #f3f7fc !important;
  border-color: #8eb8e8 !important;
  box-shadow: inset 3px 0 0 #0969da !important;
}

html[data-page] .product-toolbar {
  background: #fff !important;
  border: 1px solid #e0e6ed !important;
  border-radius: 9px !important;
  box-shadow: none !important;
}

html[data-page] input,
html[data-page] textarea,
html[data-page] select {
  border-radius: 6px !important;
  box-shadow: none !important;
}

html[data-page] .contact-preflight-steps article {
  min-height: 0 !important;
  background: #f8fafc !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

html[data-page] .floating-wechat-card,
html[data-page] .detail-modal,
html[data-page] .selection-panel {
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14) !important;
}

html[data-page] .site-footer {
  background: #111827 !important;
  border-top: 1px solid #263244 !important;
}

html[data-page] .site-footer a,
html[data-page] .site-footer p {
  color: #b8c3d1;
}

@media (max-width: 760px) {
  html[data-page="home"] .hero h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }
  html[data-page] .product-card,
  html[data-page] .carousel-product,
  html[data-page] .contact-page-card {
    border-radius: 8px !important;
  }
}

html[data-page="home"] .hero-online-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 14px;
  padding: 7px 13px;
  color: #31445c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

html[data-page="home"] .hero-online-status i {
  width: 8px;
  height: 8px;
  background: #10a37f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 163, 127, 0.12);
}

/* Hero trust badges readability */
html[data-page="home"] .hero-copy .hero-cert-badge,
html[data-page="home"] .hero-copy .hero-online-status {
  min-height: 42px;
  padding: 10px 16px !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  border-radius: 7px !important;
}

html[data-page="home"] .hero-copy .hero-cert-badge {
  color: #075fc8 !important;
  background: #edf5ff !important;
  border: 1px solid #bcd8f8 !important;
}

html[data-page="home"] .hero-copy .hero-online-status {
  gap: 10px;
  margin: 10px 0 16px;
  color: #203247 !important;
  background: #fff !important;
  border-color: #ccd7e4 !important;
}

html[data-page="home"] .hero-online-status i {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
}

@media (max-width: 760px) {
  html[data-page="home"] .hero-copy .hero-cert-badge,
  html[data-page="home"] .hero-copy .hero-online-status {
    min-height: 38px;
    padding: 9px 13px !important;
    font-size: 15px !important;
  }
}

/* Light footer correction */
html[data-page] .site-footer {
  color: #64748b !important;
  background: #f7f9fc !important;
  border-top: 1px solid #dfe6ee !important;
  box-shadow: none !important;
}

html[data-page] .site-footer .container,
html[data-page] .footer-grid,
html[data-page] .footer-grid-pro {
  background: #fff !important;
  border-color: #e0e6ed !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05) !important;
}

html[data-page] .site-footer strong {
  color: #172033 !important;
}

html[data-page] .site-footer a {
  color: #526176 !important;
}

html[data-page] .site-footer a:hover {
  color: #0969da !important;
}

html[data-page] .site-footer p {
  color: #718096 !important;
}

html[data-page] .footer-nav-column,
html[data-page] .footer-contact-block {
  border-color: #e3e8ef !important;
}

/* Final responsive compatibility hardening */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 900px) {
  html[data-page] .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  html[data-page] .site-header,
  html[data-page] .site-header-pro {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 68px !important;
    padding: 8px 14px !important;
  }

  html[data-page] .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  html[data-page] .brand img {
    width: 145px !important;
    max-width: 48vw !important;
    height: 50px !important;
    object-fit: contain;
  }

  html[data-page] .desktop-nav {
    display: none !important;
  }

  html[data-page] .menu-toggle {
    display: inline-flex !important;
    flex: 0 0 46px;
    width: 46px !important;
    height: 46px !important;
    margin-left: auto !important;
    padding: 11px !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #172033 !important;
    background: #fff !important;
    border: 1px solid #d8e1eb !important;
    border-radius: 8px !important;
  }

  html[data-page] .menu-toggle span {
    display: block !important;
    width: 23px !important;
    height: 2px !important;
    background: #172033 !important;
  }

  html[data-page] .mobile-nav {
    position: fixed !important;
    z-index: 90 !important;
    top: 68px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    padding: 12px !important;
    background: #fff !important;
    border: 1px solid #dce4ed !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16) !important;
  }

  html[data-page] .mobile-nav a,
  html[data-page] .mobile-nav summary {
    min-height: 46px;
    padding: 12px 14px !important;
    color: #172033 !important;
    line-height: 1.35;
  }

  html[data-page] .hero-grid,
  html[data-page] .subpage-hero-grid,
  html[data-page] .product-hero-grid,
  html[data-page] .contact-page-grid,
  html[data-page] .contact-consult-grid,
  html[data-page] .split-grid,
  html[data-page] .contact-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page] h1,
  html[data-page] h2,
  html[data-page] h3,
  html[data-page] p,
  html[data-page] a,
  html[data-page] span,
  html[data-page] strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html[data-page="home"] .hero-copy,
  html[data-page="home"] .hero-copy h1,
  html[data-page="home"] .hero-copy h1 span {
    width: 100% !important;
    max-width: 100% !important;
  }

  html[data-page="home"] .hero-copy h1 {
    font-size: clamp(38px, 10.8vw, 58px) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  html[data-page="home"] .hero-copy h1 span {
    display: block !important;
    white-space: normal !important;
  }

  html[data-page="home"] .hero-copy > p {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  html[data-page="home"] .hero-cert-badge,
  html[data-page="home"] .hero-online-status {
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

  html[data-page] .hero-actions,
  html[data-page] .product-hero-actions,
  html[data-page] .modal-actions,
  html[data-page] .contact-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    gap: 10px !important;
  }

  html[data-page] .hero-actions > *,
  html[data-page] .product-hero-actions > *,
  html[data-page] .contact-actions > *,
  html[data-page] .modal-actions > * {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    text-align: center;
  }

  html[data-page] .hero-contact-strip {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page] .hero-contact-strip > * {
    min-width: 0 !important;
    width: 100% !important;
  }

  html[data-page] .subpage-hero h1,
  html[data-page] .product-hero-copy h1,
  html[data-page] .contact-page-hero h1 {
    font-size: clamp(34px, 9vw, 50px) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    word-break: break-word;
  }

  html[data-page="product"] .product-hero-copy h1 {
    font-size: clamp(31px, 8.5vw, 44px) !important;
  }

  html[data-page="products"] .subpage-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 18px !important;
    overflow: hidden;
  }

  html[data-page="products"] .product-contact-copy {
    min-width: 0;
  }

  html[data-page="products"] .product-contact-qr {
    width: 112px !important;
    height: 112px !important;
    max-width: 30vw !important;
    object-fit: contain;
  }

  html[data-page="products"] .product-contact-note {
    grid-column: 1 / -1;
    white-space: normal !important;
  }

  html[data-page] .category-strip {
    width: 100%;
    overflow: visible !important;
  }

  html[data-page] .category-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  html[data-page] .category-card {
    min-width: 0 !important;
    min-height: 92px !important;
    padding: 14px !important;
  }

  html[data-page] .product-toolbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  html[data-page] .product-list-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    width: 100% !important;
  }

  html[data-page] .product-grid,
  html[data-page] .related-grid,
  html[data-page] .solution-grid,
  html[data-page] .process-grid,
  html[data-page] .credential-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page] .product-card,
  html[data-page] .related-card {
    min-width: 0 !important;
    width: 100% !important;
  }

  html[data-page] .contact-price-note,
  html[data-page] .contact-page-hero p,
  html[data-page] .contact-method-card p {
    white-space: normal !important;
  }

  html[data-page] .deployment-material-visual,
  html[data-page] .deployment-material-visual img {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
  }

  html[data-page] .footer-grid,
  html[data-page] .footer-grid-pro {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  html[data-page] .footer-contact-block {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  html[data-page] .floating-contact-panel {
    right: 8px !important;
    bottom: 8px !important;
    max-width: calc(100vw - 16px) !important;
  }

  html[data-page] .floating-wechat-card {
    display: none !important;
  }

  html[data-page] .selection-floating-action,
  html[data-page] .back-top {
    min-height: 48px !important;
  }
}

@media (max-width: 420px) {
  html[data-page] .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  html[data-page="home"] .hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 46px) !important;
  }

  html[data-page] .category-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page="products"] .subpage-panel {
    grid-template-columns: minmax(0, 1fr) 96px !important;
  }

  html[data-page] .product-list-search {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page] .product-list-search button {
    width: 100% !important;
    min-height: 46px !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  html[data-page] .container {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
  }

  html[data-page] .desktop-nav {
    gap: 4px !important;
  }

  html[data-page] .desktop-nav a,
  html[data-page] .desktop-nav summary {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 14px !important;
  }

  html[data-page] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html[data-page] .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  html[data-page] .contact-consult-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr) !important;
  }
}

/* Narrow-screen corrections after visual review */
@media (max-width: 900px) {
  body .site-header button.menu-toggle,
  body .site-header-pro button.menu-toggle {
    position: absolute !important;
    right: 14px !important;
    top: 11px !important;
    z-index: 120 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html[data-page="home"] body .hero-copy h1,
  html[data-page="home"] body .hero-copy h1 span {
    font-size: 36px !important;
    line-height: 1.12 !important;
    letter-spacing: -1.5px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-wrap: balance;
  }

  html[data-page="subpage"] body .contact-page-hero h1,
  html[data-page="subpage"] body .subpage-hero h1,
  html[data-page="product"] body .product-hero-copy h1 {
    font-size: 34px !important;
    line-height: 1.18 !important;
    letter-spacing: -1px !important;
    white-space: normal !important;
    overflow: visible !important;
  }

  html[data-page="products"] .subpage-panel {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page="products"] .product-contact-qr {
    display: none !important;
  }

  html[data-page="products"] .product-contact-copy,
  html[data-page="products"] .product-contact-note {
    width: 100% !important;
  }

  html[data-page] .product-card {
    content-visibility: auto;
    contain-intrinsic-size: 560px;
  }
}

@media (max-width: 560px) {
  html[data-page="home"] body .hero-copy h1,
  html[data-page="home"] body .hero-copy h1 span {
    font-size: 32px !important;
  }

  html[data-page="subpage"] body .contact-page-hero h1,
  html[data-page="subpage"] body .subpage-hero h1,
  html[data-page="product"] body .product-hero-copy h1 {
    font-size: 30px !important;
  }

  html[data-page] .category-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Cross-device finishing fixes */
@media (max-width: 900px) {
  body .site-header button.menu-toggle::before,
  body .site-header-pro button.menu-toggle::before {
    content: "☰";
    display: block;
    color: #172033;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
  }

  body .site-header button.menu-toggle span,
  body .site-header-pro button.menu-toggle span {
    display: none !important;
  }

  html[data-page] table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  html[data-page] pre,
  html[data-page] code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
  }

  html[data-page] iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

  html[data-page] .detail-modal,
  html[data-page] .selection-panel,
  html[data-page] .contact-popup {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    overflow-y: auto !important;
  }

  html[data-page] button,
  html[data-page] .button,
  html[data-page] input[type="button"],
  html[data-page] input[type="submit"] {
    min-height: 44px;
  }

  html[data-page] a:focus-visible,
  html[data-page] button:focus-visible,
  html[data-page] input:focus-visible,
  html[data-page] summary:focus-visible {
    outline: 3px solid rgba(9, 105, 218, 0.35) !important;
    outline-offset: 2px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  html[data-page] .hero-actions,
  html[data-page] .product-hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  html[data-page] .hero-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html[data-page] .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html[data-page] .product-grid,
  html[data-page] .related-grid,
  html[data-page] .solution-grid,
  html[data-page] .process-grid,
  html[data-page] .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html[data-page] .footer-grid,
  html[data-page] .footer-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 599px) {
  html[data-page] body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  html[data-page] .site-header,
  html[data-page] .site-header-pro {
    padding-top: max(8px, env(safe-area-inset-top)) !important;
  }

  html[data-page] .card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  html[data-page] .card-actions .detail-link {
    grid-column: 1 / -1;
  }

  html[data-page] .card-actions > * {
    min-width: 0 !important;
    min-height: 46px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  html[data-page] .footer-contact-block {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[data-page] .footer-contact-block .footer-wechat-qr {
    width: min(180px, 58vw) !important;
    margin: 0 auto !important;
  }
}

/* Home headline sizing for the longer three-line consultation message. */
html[data-page="home"] .hero-copy h1 {
  font-size: clamp(42px, 5vw, 66px) !important;
  line-height: 1.08 !important;
}

@media (max-width: 900px) {
  html[data-page="home"] .hero-copy h1 {
    font-size: clamp(36px, 7.2vw, 50px) !important;
  }
}

@media (max-width: 599px) {
  html[data-page="home"] .hero-copy h1 {
    font-size: clamp(32px, 8.5vw, 38px) !important;
    line-height: 1.12 !important;
  }
}

/* Mobile content and touch-device safety net */
@media (max-width: 599px) {
  html[data-page] main,
  html[data-page] section,
  html[data-page] article,
  html[data-page] aside,
  html[data-page] nav,
  html[data-page] form,
  html[data-page] div {
    min-width: 0;
  }

  html[data-page] main p,
  html[data-page] main li,
  html[data-page] main span,
  html[data-page] main strong,
  html[data-page] main a,
  html[data-page] main button,
  html[data-page] .site-footer p,
  html[data-page] .site-footer a {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[data-page] .section,
  html[data-page] .section-band,
  html[data-page] .products,
  html[data-page] .contact,
  html[data-page] .contact-consult {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  html[data-page] .product-card p,
  html[data-page] .related-card p,
  html[data-page] .solution-card p,
  html[data-page] .process-card p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  html[data-page] .product-media,
  html[data-page] .carousel-product-media {
    min-height: 210px;
    aspect-ratio: 16 / 10 !important;
  }

  html[data-page] .product-media img,
  html[data-page] .carousel-product-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  html[data-page] .floating-contact-panel {
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    right: 8px !important;
    left: auto !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    gap: 6px !important;
  }

  html[data-page] .floating-contact-panel > :not(.selection-floating-action):not(.back-top) {
    display: none !important;
  }

  html[data-page] .selection-floating-action,
  html[data-page] .back-top {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 5px !important;
    overflow: hidden;
    font-size: 11px !important;
    border-radius: 8px !important;
  }

  html[data-page] .load-more-row .button,
  html[data-page] #loadMoreProducts {
    width: 100% !important;
    min-height: 48px !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  html[data-page] .product-card:hover,
  html[data-page] .carousel-product:hover,
  html[data-page] .category-card:hover,
  html[data-page] .solution-card:hover,
  html[data-page] .credential-card:hover {
    transform: none !important;
  }

  html[data-page] a,
  html[data-page] button,
  html[data-page] summary {
    -webkit-tap-highlight-color: rgba(9, 105, 218, 0.14);
    touch-action: manipulation;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-page] *,
  html[data-page] *::before,
  html[data-page] *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Improve hero description readability */
html[data-page="home"] .hero-copy > p {
  color: #4b5d73 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.75 !important;
  text-shadow: none !important;
}

@media (max-width: 900px) {
  html[data-page="home"] .hero-copy > p {
    color: #43546a !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
  }
}

@media (max-width: 599px) {
  html[data-page="home"] .hero-copy > p {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }
}

/* Contact hero eyebrow emphasis */
html[data-page="subpage"] .contact-hero .eyebrow {
  display: inline-flex !important;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px !important;
  color: #075fc8 !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
  background: #edf5ff !important;
  border: 1px solid #c6ddf8 !important;
  border-radius: 7px !important;
}

@media (max-width: 599px) {
  html[data-page="subpage"] .contact-hero .eyebrow {
    min-height: 38px;
    padding: 9px 13px !important;
    font-size: 17px !important;
  }
}

/* Contact hero description emphasis */
html[data-page="subpage"] .contact-hero-grid > div > p:not(.contact-price-note) {
  max-width: 980px;
  margin-top: 22px;
  margin-bottom: 24px;
  padding: 4px 0 4px 18px;
  color: #34465d !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  line-height: 1.8 !important;
  border-left: 4px solid #0969da;
}

@media (max-width: 599px) {
  html[data-page="subpage"] .contact-hero-grid > div > p:not(.contact-price-note) {
    margin-top: 18px;
    margin-bottom: 20px;
    padding-left: 13px;
    color: #314258 !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    border-left-width: 3px;
  }
}

/* Desktop secondary navigation borders */
@media (min-width: 901px) {
  html[data-page] .desktop-nav .nav-direct,
  html[data-page] .desktop-nav .nav-group > summary {
    border: 1px solid #e1e7ef !important;
    background: #fbfcfe !important;
  }

  html[data-page] .desktop-nav .nav-direct:hover,
  html[data-page] .desktop-nav .nav-direct:focus-visible,
  html[data-page] .desktop-nav .nav-group > summary:hover,
  html[data-page] .desktop-nav .nav-group > summary:focus-visible,
  html[data-page] .desktop-nav .nav-group[open] > summary {
    color: #075fc8 !important;
    border-color: #b9d5f5 !important;
    background: #f3f8ff !important;
  }
}

/* Contact strip card borders */
html[data-page="home"] .hero-contact-strip > button,
html[data-page="home"] .hero-contact-strip > a {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid #d9e4f0 !important;
  border-left: 4px solid #1683ff !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06) !important;
}

html[data-page="home"] .hero-contact-strip > button:hover,
html[data-page="home"] .hero-contact-strip > a:hover {
  border-color: #b9d3f0 !important;
  border-left-color: #0969da !important;
  background: #f8fbff !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact {
  border-left-color: #0ea58f !important;
}

/* Global eyebrow label readability */
html[data-page] .subpage-hero .eyebrow,
html[data-page] .product-hero .eyebrow,
html[data-page] .contact-hero .eyebrow {
  display: inline-flex !important;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px !important;
  color: #075fc8 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.03em !important;
  background: #edf5ff !important;
  border: 1px solid #c6ddf8 !important;
  border-radius: 7px !important;
}

html[data-page] main section:not(.subpage-hero):not(.product-hero) .eyebrow {
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

@media (max-width: 599px) {
  html[data-page] .subpage-hero .eyebrow,
  html[data-page] .product-hero .eyebrow,
  html[data-page] .contact-hero .eyebrow {
    min-height: 38px;
    padding: 8px 12px !important;
    font-size: 16px !important;
  }

  html[data-page] main section:not(.subpage-hero):not(.product-hero) .eyebrow {
    font-size: 13px !important;
  }
}

/* Secondary-page home navigation */
@media (min-width: 901px) {
  html[data-page] .desktop-nav .home-nav-link {
    color: #075fc8 !important;
    background: #f3f8ff !important;
    border-color: #bfd8f5 !important;
  }

  html[data-page] .desktop-nav .home-nav-link::before {
    content: "⌂";
    margin-right: 6px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  html[data-page] .mobile-nav .home-nav-link {
    color: #075fc8 !important;
    font-weight: 900 !important;
    background: #edf5ff !important;
    border: 1px solid #c8ddf6 !important;
    border-radius: 7px !important;
  }

  html[data-page] .mobile-nav .home-nav-link::before {
    content: "⌂";
    margin-right: 8px;
  }
}

/* Eyebrows are section labels, not buttons. */
html[data-page] .subpage-hero .eyebrow,
html[data-page] .product-hero .eyebrow,
html[data-page] .contact-hero .eyebrow {
  display: inline-block !important;
  min-height: 0 !important;
  padding: 2px 0 2px 11px !important;
  color: #075fc8 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.03em !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 3px solid #1683ff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: default !important;
}

@media (max-width: 599px) {
  html[data-page] .subpage-hero .eyebrow,
  html[data-page] .product-hero .eyebrow,
  html[data-page] .contact-hero .eyebrow {
    padding-left: 9px !important;
    font-size: 16px !important;
    border-left-width: 3px !important;
  }
}

/* Home link matches the other navigation buttons. */
@media (min-width: 901px) {
  html[data-page] .desktop-nav .home-nav-link {
    color: #172033 !important;
    background: #fbfcfe !important;
    border: 1px solid #e1e7ef !important;
  }

  html[data-page] .desktop-nav .home-nav-link::before {
    content: none !important;
    display: none !important;
  }

  html[data-page] .desktop-nav .home-nav-link:hover,
  html[data-page] .desktop-nav .home-nav-link:focus-visible {
    color: #075fc8 !important;
    background: #f3f8ff !important;
    border-color: #b9d5f5 !important;
  }
}

@media (max-width: 900px) {
  html[data-page] .mobile-nav .home-nav-link::before {
    content: none !important;
    display: none !important;
  }
}

/* Subtle pinned-product marker */
html[data-page] .product-pin-badge,
html[data-page] .product-pin-button.is-pinned {
  min-width: 0 !important;
  min-height: 28px !important;
  padding: 5px 9px !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  background: rgba(248, 250, 252, 0.94) !important;
  border: 1px solid #d9e1ea !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

html[data-page] .product-pin-button.is-pinned:hover,
html[data-page] .product-pin-button.is-pinned:focus-visible {
  color: #33506f !important;
  background: #f1f5f9 !important;
  border-color: #c5d1de !important;
}

/* Use one blue accent for all contact cards. */
html[data-page="home"] .hero-contact-strip > button,
html[data-page="home"] .hero-contact-strip > a,
html[data-page="home"] .hero-contact-strip .enterprise-contact,
html[data-page="home"] .hero-contact-strip .hotline-contact {
  border-left-color: #1683ff !important;
}

/* Remove residual green from contact-card accent strips. */
html[data-page="home"] .hero-contact-strip > button::before,
html[data-page="home"] .hero-contact-strip > a::before {
  background: #1683ff !important;
  background-image: none !important;
}

html[data-page="home"] .hero-contact-strip .enterprise-contact::before {
  display: block !important;
  content: "" !important;
  background: #1683ff !important;
}

/* Remove conflicting contact-card pseudo accent; the border is sufficient. */
html[data-page="home"] .hero-contact-strip > button::before,
html[data-page="home"] .hero-contact-strip > a::before,
html[data-page="home"] .hero-contact-strip .enterprise-contact::before,
html[data-page="home"] .hero-contact-strip .hotline-contact::before {
  display: none !important;
  width: 0 !important;
  content: none !important;
  background: none !important;
}

/* Cross-device layout guard: prevent long Chinese/product text and cards from widening the viewport. */
html[data-page],
html[data-page] body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 900px) {
  html[data-page] .container {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }

  html[data-page] main *,
  html[data-page] .site-footer *,
  html[data-page] .mobile-nav * {
    min-width: 0;
  }

  html[data-page] .subpage-panel,
  html[data-page] .solution-card,
  html[data-page] .process-card,
  html[data-page] .contact-method-card,
  html[data-page] .contact-consult-card,
  html[data-page] .product-detail-main,
  html[data-page] .product-detail-sidebar,
  html[data-page] .product-hero-copy,
  html[data-page] .product-hero-aside {
    width: 100% !important;
    max-width: 100% !important;
  }

  html[data-page] h1,
  html[data-page] h2,
  html[data-page] h3,
  html[data-page] p,
  html[data-page] li,
  html[data-page] strong,
  html[data-page] a {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html[data-page="product"] .product-hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(28px, 6vw, 40px) !important;
    line-height: 1.18 !important;
    word-break: break-all !important;
  }

  html[data-page] .product-detail-image-shell,
  html[data-page] .product-detail-image-shell img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 599px) {
  html[data-page] .container {
    width: auto !important;
    max-width: none !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html[data-page] main > section {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  html[data-page="home"] .hero-copy > p,
  html[data-page] .subpage-hero p,
  html[data-page] .contact-page-hero p,
  html[data-page="product"] .product-hero-copy p {
    width: 100% !important;
    max-width: 100% !important;
  }

  html[data-page] .subpage-hero h1,
  html[data-page] .contact-page-hero h1,
  html[data-page] .contact-hero h1,
  html[data-page="product"] .product-hero-copy h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(28px, 8.4vw, 38px) !important;
    line-height: 1.2 !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
  }

  html[data-page] .floating-contact-panel {
    max-width: 48px !important;
  }
}

/* Final home headline rhythm: readable, spacious and less visually heavy. */
html[data-page="home"] body .hero-copy h1 {
  display: grid !important;
  row-gap: 0.16em !important;
  max-width: 880px !important;
  margin: 0 auto 34px !important;
  font-size: clamp(38px, 4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.035em !important;
}

html[data-page="home"] body .hero-copy h1 span {
  display: block !important;
  line-height: inherit !important;
}

@media (max-width: 900px) {
  html[data-page="home"] body .hero-copy h1 {
    row-gap: 0.18em !important;
    margin-bottom: 30px !important;
    font-size: clamp(33px, 5.4vw, 40px) !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 599px) {
  html[data-page="home"] body .hero-copy h1 {
    row-gap: 0.2em !important;
    max-width: 350px !important;
    margin-bottom: 28px !important;
    font-size: clamp(27px, 7.2vw, 30px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.025em !important;
  }
}
