:root {
  --primary: #d6fd70;
  --primary-soft: #e8f98a;
  --on-primary: #131313;
  --ink: #131313;
  --ink-muted: #737373;
  --canvas: #ffffff;
  --canvas-soft: #f2f2f2;
  --surface-dark: #2f2f2f;
  --surface-black: #151515;
  --surface-black-soft: rgba(19, 19, 19, 0.66);
  --line-light: rgba(19, 19, 19, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue-deep: #1a3a6b;
  --blue-mid: #2d6ab5;
  --blue-sky: #6bb5f0;
  --blue-light: #8fd4f5;
  --green-lime: #c8e84a;
  --green-olive: #4a6b3a;
  --teal: #5bb8b0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    "Plus Jakarta Sans",
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.count-up-number {
  font-variant-numeric: tabular-nums;
}

.home-page {
  width: 100%;
  margin: 0;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: auto;
  padding-bottom: 40px;
  margin: 0 calc(50% - 50vw);
  /* padding: 18px 18px 40px; */
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #1a82cb 0%, #2f9de2 52%, #5ebdf6 100%);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.95;
}

.hero-shell::before {
  left: -2%;
  bottom: -10%;
  width: 38%;
  height: 38%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0) 72%);
}

.hero-shell::after {
  right: -2%;
  bottom: -10%;
  width: 32%;
  height: 30%;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0) 72%);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-nav {
  z-index: 40;
  padding-top: 10px;
  color: #ffffff;
}

.hero-nav.hero-nav-light {
  color: var(--ink);
}

.hero-nav-light .lang-switch {
  background: rgba(19, 19, 19, 0.06);
}

.hero-nav-light .lang-switch-option.is-active {
  background: #131313;
  color: #ffffff;
}

.hero-nav-light .pill-button-secondary {
  background: rgba(19, 19, 19, 0.06);
  color: var(--ink);
  border-color: rgba(19, 19, 19, 0.1);
}

.hero-nav-light .pill-button-secondary:hover,
.hero-nav-light .pill-button-secondary:focus-visible {
  background: rgba(19, 19, 19, 0.1);
  border-color: rgba(19, 19, 19, 0.18);
}

.hero-nav-bar {
  position: relative;
  z-index: 40;
  padding: 18px 18px 0;
}

.floating-nav-shell {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 120;
  width: 100%;
  padding: 0 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.floating-nav-shell.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-nav {
  padding: 14px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow:
    0 18px 40px rgba(12, 19, 28, 0.12),
    0 4px 14px rgba(12, 19, 28, 0.08);
  backdrop-filter: blur(14px);
}

.floating-nav .hero-links > a,
.floating-nav .nav-link-with-panel,
.floating-nav .hero-brand {
  opacity: 1;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.hero-brand img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hero-brand span {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.floating-nav .lang-switch,
.mobile-nav-panel .lang-switch {
  background: rgba(19, 19, 19, 0.06);
}

.lang-switch-option {
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.lang-switch-option.is-active {
  background: #ffffff;
  color: var(--ink);
}

.floating-nav .lang-switch-option.is-active,
.mobile-nav-panel .lang-switch-option.is-active {
  background: #131313;
  color: #ffffff;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-nav-toggle {
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--primary);
  color: var(--ink);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

/* ── Mobile Nav Panel: slide-in multi-level ── */

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  left: 0;
  z-index: 50;
  border-radius: 24px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 24px 44px rgba(12, 19, 28, 0.14);
  overflow: hidden;
}

.mobile-nav-level {
  padding: 20px 18px 18px;
}

.mobile-nav-panel .lang-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 14px;
}

/* Nav links — shared */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 0;
  border: 0;
  background: none;
  color: #111111;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.mobile-nav-link-expand {
  cursor: pointer;
}

.mobile-nav-link-disabled {
  opacity: 0.45;
  cursor: default;
}

.mobile-nav-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link-title {
  line-height: 1.3;
}

.mobile-nav-link-desc {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.6;
}

.mobile-nav-arrow {
  font-size: 1.2rem;
  opacity: 0.4;
}

/* ── Sub-panels ── */

.mobile-nav-sub {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav-sub.is-active {
  transform: translateX(0);
}

.mobile-nav-sub-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  background: none;
  color: #111111;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-back-arrow {
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-nav-section {
  padding: 8px 18px 0;
}

.mobile-nav-section-label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.mobile-nav-section-list {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-section-list .mobile-nav-link {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-sub-cta {
  padding: 16px 18px 18px;
  margin-top: auto;
}

.mobile-nav-cta {
  display: block;
  padding: 14px 16px !important;
  border-radius: 999px;
  background: #131313;
  color: var(--primary) !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-links > a,
.nav-link-with-panel {
  opacity: 0.92;
}

.nav-item {
  position: relative;
}

.nav-link-with-panel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-with-panel::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.8;
  transition: transform 180ms ease;
}

.nav-item-has-panel:hover .nav-link-with-panel::after,
.nav-item-has-panel:focus-within .nav-link-with-panel::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 90;
  width: min(714px, calc(100vw - 48px));
  max-height: 70vh;
  padding: 10px 0 0;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-item-has-panel:hover .mega-menu,
.nav-item-has-panel:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-main {
  display: grid;
  grid-template-columns: minmax(182px, 224px) minmax(0, 1fr);
  gap: 0;
  max-height: calc(70vh - 60px);
  overflow: auto;
  padding: 20px 21px;
  border-radius: 20px 20px 0 0;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(12, 19, 28, 0.18);
}

.mega-menu-compact {
  width: min(360px, calc(100vw - 48px));
}

.mega-menu-compact .mega-menu-main {
  display: block;
}

.mega-menu-column {
  min-width: 0;
}

.mega-menu-sidebar {
  padding-right: 20px;
  border-right: 1px solid rgba(19, 19, 19, 0.08);
}

.mega-menu-featured {
  padding-left: 20px;
}

.mega-menu-label {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-menu-list {
  display: grid;
  gap: 11px;
}

.mega-list-item,
.mega-grid-item,
.mega-menu-banner {
  display: block;
  border-radius: 11px;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mega-list-item {
  padding: 7px 8px;
}

.product-category-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}

.product-category-trigger[href] {
  cursor: pointer;
}

.product-category-trigger.is-active {
  background: #f7f7f8;
}

.mega-grid-item {
  padding: 8px 10px;
}

.mega-list-item:hover,
.mega-list-item:focus-visible,
.mega-grid-item:hover,
.mega-grid-item:focus-visible,
.mega-menu-banner:hover,
.mega-menu-banner:focus-visible {
  background: #f7f7f8;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 13px;
}

.mega-list-item-disabled,
.mega-grid-item-disabled {
  cursor: default;
}

.mega-list-item-disabled:hover,
.mega-grid-item-disabled:hover {
  background: transparent;
}

.product-feature-panels {
  display: block;
}

.product-feature-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 13px;
}

.product-feature-panel.is-active {
  display: grid;
}

.mega-item-title {
  display: block;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.mega-item-description {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.mega-menu-banner {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 21px 17px;
  border-top: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 0 0 20px 20px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(12, 19, 28, 0.18);
}

.mega-menu-banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #8f1720;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.mega-menu-banner-copy {
  display: block;
  min-width: 0;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 140ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  cursor: pointer;
  will-change: transform;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-1px);
}

.pill-button-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 8px 18px rgba(214, 253, 112, 0);
}

.pill-button-primary:hover,
.pill-button-primary:focus-visible {
  background: var(--primary-soft);
  box-shadow: 0 10px 22px rgba(214, 253, 112, 0.2);
}

.pill-button-secondary {
  background: rgba(58, 83, 111, 0.24);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(35, 68, 100, 0);
}

.pill-button-secondary:hover,
.pill-button-secondary:focus-visible {
  background: rgba(58, 83, 111, 0.38);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 18px rgba(35, 68, 100, 0.12);
}

.with-orb {
  padding-right: 6px;
}

.with-orb > span:first-child {
  transition:
    transform 180ms ease,
    letter-spacing 180ms ease,
    opacity 180ms ease;
}

.orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-black);
  color: #ffffff;
  font-size: 0.86rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.pill-button:hover .orb,
.pill-button:focus-visible .orb {
  transform: translateX(2px) scale(1.04);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.with-orb:hover > span:first-child,
.with-orb:focus-visible > span:first-child {
  transform: translateX(-1px);
  letter-spacing: 0.09em;
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 14vh auto 0;
  padding-inline: 18px;
  text-align: center;
  color: #ffffff;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-center h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-center p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 42px auto 0;
}

.hero-showcase-media,
.hero-highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.hero-showcase-media {
  overflow: hidden;
  min-height: 420px;
  background: rgba(17, 28, 39, 0.26);
  box-shadow: 0 24px 50px rgba(10, 26, 42, 0.14);
}

.hero-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase-panels {
  display: grid;
  gap: 14px;
}

.hero-highlight-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(10, 26, 42, 0.12);
}

.hero-highlight-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero-highlight-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-highlight-card p {
  margin: 10px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero-live-stat {
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  gap: 12px;
  margin: 120px auto 0;
  /* transform: translateY(50%); */
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(98, 193, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 48px rgba(10, 26, 42, 0.18);
  backdrop-filter: blur(22px);
}

.hero-live-stat-label {
  font-size: clamp(1.125rem, 1.5vw, 1.24rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.hero-live-stat strong {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.hero-live-stat-number {
  display: block;
}

.count-glass-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.count-glass-digit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.04)),
    rgba(56, 152, 222, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -12px 24px rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(12, 56, 95, 0.14);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.count-glass-digit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  opacity: 0.9;
  pointer-events: none;
}

.count-glass-digit__sheen {
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08));
  filter: blur(1px);
  opacity: 0.95;
}

.count-glass-digit__value {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(10, 26, 42, 0.24);
}

.count-glass-separator {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 14px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 3.65rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(10, 26, 42, 0.18);
}

.count-glass-suffix {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-carousel-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 180px auto 0;
  perspective: 980px;
  perspective-origin: 50% 46%;
}

.hero-card-ribbon {
  position: relative;
  width: 133px;
  height: 200px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: perspective(980px) rotateX(-10deg) rotateY(0deg);
  cursor: grab;
  user-select: none;
}

.floating-card {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(22, 42, 68, 0.16);
  backface-visibility: hidden;
  -webkit-box-reflect: below 12px
    linear-gradient(transparent, transparent 46%, rgba(0, 0, 0, 0.34));
  will-change: transform;
}

.floating-card strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  overflow: hidden;
}

.floating-card small,
.floating-card span {
  display: block;
  font-size: 0.68rem;
  line-height: 1.45;
  overflow: hidden;
}

.floating-card-tall {
  padding: 12px;
  background: linear-gradient(180deg, rgba(225, 255, 243, 0.78), rgba(181, 233, 255, 0.62));
  backdrop-filter: blur(12px);
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
}

.floating-card-copy {
  margin-top: 18px;
}

.floating-card-copy strong {
  font-size: 1.05rem;
}

.floating-card-copy span {
  margin-top: 6px;
  color: rgba(19, 19, 19, 0.66);
}

.floating-card-light {
  background: rgba(255, 255, 255, 0.9);
}

.metric-head,
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.68rem;
  color: rgba(19, 19, 19, 0.62);
}

.floating-card-light strong,
.floating-card-white strong {
  margin-top: 10px;
}

.floating-card-light small,
.floating-card-white small {
  margin-top: 10px;
  color: rgba(19, 19, 19, 0.66);
}

.floating-card-white {
  background: #ffffff;
}

.badge-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.06);
}

.floating-card-blue {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(188, 225, 255, 0.9), rgba(114, 188, 244, 0.88));
  color: #ffffff;
}

.floating-card-blue strong,
.floating-card-blue small {
  color: #ffffff;
}

.floating-card-dark {
  display: flex;
  align-items: flex-end;
  background: rgba(19, 19, 19, 0.88);
  color: #ffffff;
}

.floating-card-dark strong {
  font-size: 1.06rem;
  line-height: 1.22;
}

.floating-card-chart {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.92)),
    linear-gradient(90deg, rgba(114, 188, 244, 0.3), rgba(214, 253, 112, 0.16));
}

.floating-card-chart strong {
  font-size: 1.08rem;
}

.floating-card-chart small {
  margin-top: 8px;
  color: rgba(19, 19, 19, 0.62);
}

.hero-rating {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
}

.stars {
  margin-top: 8px;
  color: var(--primary);
  letter-spacing: 0.16em;
}

.section {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

/* ── CTA Row ── */

.cta-row {
  padding: 80px 0;
}

.cta-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-row-copy {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}

.cta-row-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.cta-row-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
}

.cta-row-body {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.cta-row-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-row-body p {
  max-width: 68ch;
}

.cta-row-action {
  flex-shrink: 0;
}

.cta-row-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.cta-button-arrow {
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.cta-row-button:hover .cta-button-arrow,
.cta-row-button:focus-visible .cta-button-arrow {
  transform: translateX(3px);
}

.cta-row-button:hover,
.cta-row-button:focus-visible {
  background: var(--ink);
  color: var(--canvas);
}

@media (max-width: 768px) {
  .cta-row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cta-row-action {
    width: 100%;
  }

  .cta-row-button {
    width: 100%;
  }
}

/* ── Section Title (公共标题组件) ── */

.section-title-wrap {
  margin: 0 auto 24px;
  text-align: center;
}

.section-title-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-kicker {
  text-align: center;
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.82);
}

.section-copy {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-heading h2,
.section-head h2,
.contact-inner h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.08;
}

/* Small variant — detail pages */
.section-head-small h2 {
  margin: 12px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: normal;
}

.section-head-small {
  margin-bottom: 0;
}

.about-section > .section-kicker {
  text-align: center;
}

.about-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 0.92fr;
  grid-template-rows: minmax(0, 3fr) minmax(0, 2fr);
  gap: 14px;
  margin-top: 44px;
}

.mosaic-card {
  height: 100%;
  border-radius: 24px;
}

.mosaic-photo-card,
.mosaic-note-card {
  grid-row: 1 / span 2;
}

.mosaic-photo-card {
  overflow: hidden;
  background: linear-gradient(180deg, #2b8bca 0%, #5eb6f1 100%);
}

.photo-fill {
  height: 160px;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(180deg, #1d76bc 0%, #57a7e8 100%);
}

.mosaic-bottom {
  margin: -34px 12px 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.mosaic-bottom strong,
.mosaic-note-card strong,
.mosaic-highlight-card strong,
.mosaic-dark-card strong {
  display: block;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.mosaic-bottom span,
.mosaic-note-card span,
.mosaic-highlight-card span,
.mosaic-note-card p,
.mosaic-highlight-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.mosaic-note-card {
  padding: 18px;
  background: var(--canvas-soft);
}

.avatar-row {
  display: flex;
  gap: 0;
  margin-top: 18px;
}

.avatar-row span {
  width: 28px;
  height: 28px;
  margin-right: -6px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(145deg, #c0d7ff, #ffe3d7);
}

.mosaic-note-card p {
  margin: 14px 0 0;
}

.mosaic-highlight-card {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  padding: 18px;
  background: var(--primary);
}

.mosaic-highlight-card p {
  margin: 10px 0 0;
}

.mosaic-dark-card {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  padding: 18px;
  background: var(--surface-black);
  color: #ffffff;
}

.section-head {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-head .section-title-wrap {
  margin: 0;
}

.services-section .section-copy {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
}

.service-grid {
  display: flex;
  gap: 18px;
}

.service-card {
  flex: 1 1 0;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: #ffffff;
  transition:
    flex 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.service-card-expandable:hover,
.service-card-expandable:focus-within {
  flex: 1.45 1 0;
  border-color: rgba(19, 19, 19, 0.14);
  box-shadow: 0 18px 36px rgba(12, 19, 28, 0.08);
  transform: translateY(-2px);
}

.service-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 186px;
}

.service-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.service-media {
  width: 0;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(18px);
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-expandable:hover .service-media,
.service-card-expandable:focus-within .service-media {
  width: 50%;
  opacity: 1;
  transform: translateX(0);
}

.service-media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 18px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--primary);
  font-size: 0.9rem;
}

.service-card h3,
.expert-card h3 {
  margin: 74px 0 0;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-card p,
.expert-card p,
.contact-inner p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.section-head-single {
  justify-content: flex-start;
}

.expertise-section .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.expertise-section .section-copy {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
}

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

.expert-card {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: #ffffff;
}

.expert-card h3 {
  margin-top: 0;
}

.expert-card-dashboard {
  grid-row: span 2;
  background: linear-gradient(145deg, #181818 0%, #2d2d2d 100%);
  color: #ffffff;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-stats {
  margin-top: 18px;
}

.dashboard-stats strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
}

.dashboard-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.dashboard-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.dashboard-lines div {
  display: grid;
  gap: 8px;
}

.dashboard-lines span,
.dashboard-list {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-lines i {
  display: block;
  height: 10px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #fff9af);
  will-change: width;
}

.dashboard-list {
  margin: 22px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.expert-card-dark {
  background: var(--surface-black);
  color: #ffffff;
}

.expert-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expert-stack span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.wide {
  grid-column: span 2;
}

.contact-band {
  width: min(1280px, calc(100vw - 24px));
}

.contact-inner {
  padding: 80px 24px;
  border-radius: 28px;
  background: #4b545f;
  color: #ffffff;
  text-align: center;
}

.contact-inner p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.76);
}

.contact-inner .section-kicker{
  margin-bottom: 12px;
}

.contact-inner .pill-button {
  margin-top: 26px;
}

.exhibition-band {
  width: min(1240px, calc(100vw - 48px));
  padding-top: 88px;
  padding-bottom: 36px;
  color: var(--ink);
}

.exhibition-head {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.exhibition-head h2 {
  margin: 0;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

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

.product-entry-card {
  min-width: 0;
}

.product-entry-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: #ffffff;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-entry-link:hover,
.product-entry-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(19, 19, 19, 0.14);
  box-shadow: 0 18px 34px rgba(12, 19, 28, 0.08);
}

.product-entry-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f9fb 0%, #eaf3f7 100%);
}

.product-entry-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-entry-image-scene img {
  object-position: center;
}

.product-entry-image-component img {
  object-position: center 58%;
}

.product-entry-image-contain {
  padding: 10px;
  background: #f6f9f8;
}

.product-entry-image-contain img {
  object-fit: contain;
}

.product-entry-copy h3,
.solution-feature-copy h3,
.capability-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-entry-copy p,
.solution-feature-copy p,
.capability-card p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.solutions-section,
.capabilities-section,
.certifications-section {
  width: min(1240px, calc(100vw - 48px));
}

.solution-feature-list {
  display: grid;
  gap: 24px;
}

.solution-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: #ffffff;
}

.solution-feature-row.is-reversed .solution-feature-media {
  order: 2;
}

.solution-feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
}

.solution-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-feature-copy {
  max-width: 520px;
}

.related-solution-section {
  padding-top: 96px;
}

.related-solution-card {
  width: min(100%, 960px);
  margin: 44px auto 0;
}

.related-solution-card .solution-feature-media {
  aspect-ratio: 16 / 11;
}

.related-solution-card .solution-feature-copy h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.related-solution-card .solution-feature-copy p {
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  margin-top: 16px;
  border-radius: 999px;
  background: #f0f1f1;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
  background: var(--primary);
  color: #162000;
}

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

.capability-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: #ffffff;
}

.capability-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(200, 255, 69, 0.28);
}

.capability-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.capability-icon svg {
  width: 20px;
  height: 20px;
}

.capabilities-section {
  padding-bottom: 72px;
}

.certifications-section {
  padding-bottom: 30px;
}

/* ── Public Marquee ── */
.marquee {
  overflow: hidden;
  padding: 6px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* ── Full-width marquee (breaks out of .section container) ── */
.marquee-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.certification-marquee {
  margin-bottom: 56px;
}

/* ── Certification Marquee (uses public marquee) ── */

.certification-item {
  display: flex;
  width: 168px;
  flex: 0 0 168px;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: #ffffff;
}

.certification-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  /* background: var(--canvas-soft); */
}

.certification-item-image img {
  display: block;
  max-width: 100%;
  max-height: 72%;
  object-fit: contain;
}

.certification-item-label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink);
}

.exhibition-head p:last-child {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(19, 19, 19, 0.7);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.exhibition-card {
  display: flex;
  flex-direction: column;
  min-height: 288px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(214, 253, 112, 0.12), rgba(214, 253, 112, 0) 86px),
    #ffffff;
  color: var(--ink);
  opacity: 1;
  box-shadow: 0 18px 42px rgba(12, 19, 28, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.exhibition-card:hover,
.exhibition-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 19, 19, 0.12);
  box-shadow: 0 24px 52px rgba(12, 19, 28, 0.09);
}

.exhibition-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(19, 19, 19, 0.54);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.exhibition-date-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(19, 19, 19, 0.12);
  border-radius: 8px;
  background: rgba(214, 253, 112, 0.42);
}

.exhibition-date-icon::before,
.exhibition-date-icon::after {
  content: "";
  position: absolute;
}

.exhibition-date-icon::before {
  top: 6px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: rgba(19, 19, 19, 0.18);
}

.exhibition-date-icon::after {
  top: -3px;
  left: 6px;
  width: 12px;
  height: 4px;
  border-left: 1px solid rgba(19, 19, 19, 0.18);
  border-right: 1px solid rgba(19, 19, 19, 0.18);
}

.exhibition-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.exhibition-card p {
  margin: 14px 0 0;
  color: rgba(19, 19, 19, 0.72);
  font-size: 0.98rem;
  line-height: 1.68;
}

.exhibition-cta,
.exhibition-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.exhibition-cta {
  margin-top: auto;
  padding-top: 24px;
}

.exhibition-all-link {
  margin-top: 18px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(214, 253, 112, 0.4);
}

.exhibition-cta:hover,
.exhibition-cta:focus-visible,
.exhibition-all-link:hover,
.exhibition-all-link:focus-visible {
  color: var(--ink);
}

/* ── Public Process Steps ── */

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step-wrapper {
  display: flex;
  align-items: stretch;
  min-width: 0;
  position: relative;
}

.process-step {
  flex: 1 1 0;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 19, 28, 0.06);
  position: relative;
}

.process-step-arrow {
  position: absolute;
  top: 50%;
  left: calc(100% + 4px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--canvas-soft);
  color: var(--ink);
  opacity: 0.5;
  z-index: 2;
}

.process-step-arrow svg {
  width: 16px;
  height: 16px;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-step-number-circle {
  border-radius: 50%;
}

.process-shape-circle .process-step {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
}

/* .process-shape-circle .process-flow {
  justify-content: center;
  gap: 48px;
} */

section.process-shape-circle {
  width: 1400px;
  max-width: none;
  margin: 0 auto;
  padding: 108px 18px;
}

.process-step h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Asymmetric Card Grid ── */

.asymmetric-card-grid-section {
  padding: 80px 18px;
}

.asymmetric-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 48px;
}

.asymmetric-card {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 19, 28, 0.06);
  padding: 36px 32px;
  overflow: hidden;
  min-height: 260px;
}

.asymmetric-card.tall {
  grid-row: span 2;
  min-height: 544px;
  display: flex;
  flex-direction: column;
}

.asymmetric-card.tall .asymmetric-card-content {
  max-width: 100%;
  flex: 1;
}

.asymmetric-card.tall .asymmetric-card-images {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: 200px;
  margin-top: 24px;
  z-index: 1;
}

.asymmetric-card.tall .floating-image {
  width: 130px;
  height: 130px;
}

.asymmetric-card.tall .floating-image:first-child {
  left: 10%;
  top: 10%;
}

.asymmetric-card.tall .floating-image:last-child {
  right: 10%;
  bottom: 10%;
}

.asymmetric-card-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.asymmetric-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--on-primary);
  margin-bottom: 20px;
}

.asymmetric-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.asymmetric-card.tall h3 {
  font-size: 1.55rem;
}

.asymmetric-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.asymmetric-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--canvas-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, transform 180ms ease;
}

.asymmetric-card-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.asymmetric-card-images {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  z-index: 1;
}

.floating-image {
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 19, 28, 0.12);
  transform: rotate(var(--rotation)) translate(var(--offset-x), var(--offset-y));
  transition: transform 300ms ease;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asymmetric-card:hover .floating-image {
  transform: rotate(var(--rotation)) translate(var(--offset-x), calc(var(--offset-y) - 4px));
}

@media (max-width: 820px) {
  .asymmetric-card-grid {
    grid-template-columns: 1fr;
  }

  .asymmetric-card.tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .asymmetric-card-content {
    max-width: 100%;
  }

  .asymmetric-card-images {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 100px;
    margin-top: 16px;
  }

  .floating-image {
    width: 80px;
    height: 80px;
  }
}

/* ── Factory Capabilities Page ── */

.factory-hero {
  min-height: 70vh;
  padding-bottom: 20px;
}

.factory-hero .hero-center {
  max-width: 1000px;
}

.factory-hero .hero-center h1 {
  line-height: 1.06;
}

.factory-hero .hero-center p {
  max-width: 640px;
  margin-top: 26px;
}

.factory-hero .hero-actions {
  margin-top: 32px;
}

.products-category-hero .hero-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 1240px);
  margin-top: 10vh;
  padding-inline: 24px;
  text-align: left;
}

.products-category-hero .hero-center h1 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.products-category-hero .hero-center p {
  max-width: 350px;
  margin: 22px 0 0;
  font-size: 0.94rem;
  line-height: 1.72;
}

.products-category-hero .hero-actions {
  margin-top: 28px;
  padding-top: 0;
}

.products-category-hero .hero-actions .pill-button {
  min-width: 0;
}

.products-category-hero .hero-bg {
  object-position: 35% center;
}

@media (min-width: 1101px) {
  .factory-hero.products-category-hero {
    min-height: clamp(620px, 78vh, 820px);
  }

  .factory-hero.products-category-hero .hero-center {
    max-width: 1240px;
  }
}

@media (min-width: 1440px) {
  .products-category-hero .hero-center {
    max-width: 1240px;
  }
}

.led-solution-page-main .hero-wide-left .hero-center {
  padding-left: 560px;
  max-width: 1860px;
}

.led-solution-page-main .hero-center h1 {
  max-width: 820px;
}

.led-solution-page-main .hero-center p {
  max-width: 620px;
  margin-top: 28px;
}

.led-solution-page-main .hero-actions {
  margin-top: 34px;
}

/* ── Hero with Background Image ── */
.hero-bg{
  position: absolute;
  inset: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: none;
  opacity: 1;
}
/* ── Home Hero: video background + left-aligned content ── */

.home-hero {
  background: none !important;
}

.home-hero::before,
.home-hero::after {
  display: none;
}

.home-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.28) 50%, transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 40%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: 18px;
}

.home-hero .hero-center {
  margin: 14vh 0 0;
  text-align: left;
  max-width: 620px;
}

.home-hero .hero-center h1 {
  text-align: left;
}

.home-hero .hero-center p {
  margin-left: 0;
  margin-right: 0;
}

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

.home-hero .hero-carousel-shell {
  margin-left: 0;
  margin-top: 100px;
  position: relative;
  left: -190px;
}

.home-hero .hero-live-stat {
  margin-left: 0;
  margin-top: 80px;
  /* width: min(100%, 420px); */
}

.hero-shell-bg {
  background: none !important;
  background-size: cover !important;
  background-position: center 40% !important;
  background-repeat: no-repeat !important;
}

.hero-shell-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  width: auto;
  height: auto;
  left: 0;
  bottom: auto;
  right: auto;
  filter: none;
  opacity: 1;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.52) 0%, rgba(19, 19, 19, 0.68) 100%);
  z-index: 1;
}

.hero-shell-bg.hero-strong-overlay::before {
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.68) 0%, rgba(19, 19, 19, 0.8) 100%);
}

.hero-strong-overlay .hero-center {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

.hero-shell-bg::after {
  display: none;
}

.hero-shell-bg .hero-center {
  color: #ffffff;
}

.hero-shell-bg .hero-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.hero-shell-bg .hero-center p {
  color: rgba(255, 255, 255, 0.84);
}

/* Light theme: dark text on light background image */
.hero-shell-bg.hero-theme-light .hero-center {
  color: var(--ink);
}

.hero-shell-bg.hero-theme-light .hero-kicker {
  color: rgba(19, 19, 19, 0.6);
}

.hero-shell-bg.hero-theme-light .hero-center p {
  color: rgba(19, 19, 19, 0.72);
}

.hero-shell-bg.hero-theme-light.hero-strong-overlay .hero-center {
  text-shadow: 0 2px 22px rgba(255, 255, 255, 0.34);
}

/* Wide-left hero: left-aligned text with wide container */
.hero-wide-left .hero-center {
  padding-left: 490px;
  max-width: 1800px;
}

.hero-shell-bg .hero-center,
.hero-shell-bg .site-nav {
  position: relative;
  z-index: 2;
}

/* ── Image Text Cards (Public) ── */

.image-text-cards-section {
  padding-top: 80px;
}

.image-text-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.image-text-cards-grid-4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-text-cards-grid-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-text-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--line-light);
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-text-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 19, 28, 0.08);
}

.image-text-card-link {
  text-decoration: none;
  color: inherit;
}

.image-text-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  /* background: var(--canvas-soft); */
  flex-shrink: 0;
}

.image-text-card-media svg {
  width: 28px;
  height: 28px;
}

.image-text-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-text-card-body {
  flex: 1;
}

.image-text-card-highlight {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--canvas-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.image-text-card-body h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.image-text-card-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

  .image-text-cards-grid-4col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .image-text-cards-section {
    padding-top: 56px;
  }

  .image-text-cards-grid,
  .image-text-cards-grid-4col {
    grid-template-columns: 1fr;
  }
}

.factory-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.factory-metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--surface-dark);
  color: #ffffff;
  text-align: center;
}

.factory-metric-value {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.factory-metric-suffix {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.factory-metric-label {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.factory-note {
  max-width: 860px;
  margin: 24px 0 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--canvas-soft);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ── Factory Text-Image Cards ── */

.factory-text-image-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}

.factory-text-image-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}



.factory-text-image-copy h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.factory-text-image-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.factory-text-image-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.factory-text-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .factory-text-image-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .factory-text-image-media {
    order: -1;
  }
}


.quick-links-band {
  width: auto;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.quick-links-shell {
  padding: 28px 0 10px;
  border-radius: 0;
  background: #4b545f;
  color: #ffffff;
}

.quick-links-inner {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
}

.home-page > .quick-links-band:last-child {
  margin-bottom: 0;
}

.quick-links-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding-bottom: 16px;
}

.quick-links-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.quick-links-head p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.quick-links-group + .quick-links-group {
  margin-top: 18px;
}

.quick-links-card {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.quick-links-card h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.quick-links-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-links-card li + li {
  margin-top: 2px;
}

.quick-links-card a {
  display: flex;
  /* justify-content: space-between; */
  gap: 12px;
  padding: 4px 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  line-height: 1.35;
  transition:
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.quick-links-card a:hover,
.quick-links-card a:focus-visible {
  color: #ffffff;
  transform: translateX(4px);
}

.quick-links-contact-card {
  background: transparent;
}

.quick-links-contact-name,
.quick-links-contact-subname,
.quick-links-contact-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.quick-links-contact-subname,
.quick-links-contact-address {
  margin-top: 6px;
}

.quick-links-contact-card ul {
  margin-top: 8px;
}

.quick-links-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.quick-links-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s, background-color 0.2s;
}

.quick-links-social a:hover,
.quick-links-social a:focus-visible {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.quick-links-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.quick-links-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quick-links-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.quick-links-legal a:hover,
.quick-links-legal a:focus-visible {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .about-mosaic,
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-mosaic {
    grid-template-rows: auto;
    min-height: 0;
  }

  .mosaic-photo-card,
  .mosaic-note-card,
  .mosaic-highlight-card,
  .mosaic-dark-card {
    grid-column: auto;
    grid-row: auto;
  }

  .service-grid {
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 9px);
  }

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

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

  .hero-carousel-shell {
    width: min(860px, 100%);
    height: 420px;
  }

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

  .exhibition-card:last-child {
    grid-column: span 2;
  }

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

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

  .process-step-wrapper:nth-child(3n) .process-step-arrow {
    display: none;
  }

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

  .quick-links-contact-card {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .hero-nav-bar {
    padding: 12px 12px 0;
  }

  .floating-nav-shell {
    display: none;
  }

  .home-page {
    width: 100%;
  }

  .hero-shell {
    width: auto;
    margin: 0 calc(50% - 50vw);
  }

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

  .site-nav {
    align-items: center;
    flex-wrap: nowrap;
  }

  .hero-links {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-item-has-panel {
    width: auto;
  }

  .nav-link-with-panel::after {
    display: none;
  }

  .floating-nav {
    display: none;
  }

  .hero-nav > .pill-button {
    display: none;
  }

  .hero-nav > .nav-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-brand {
    font-size: 1.5rem;
  }

  .mobile-nav-open .mobile-nav-panel {
    display: block;
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-center {
    margin-top: 12vh;
  }

  .products-category-hero .hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 920px;
    padding-left: 18px;
    text-align: center;
  }

  .products-category-hero .hero-center h1 {
    max-width: 820px;
  }

  .products-category-hero .hero-center p {
    margin-top: 18px;
  }

  .products-category-hero .hero-actions {
    margin-top: 26px;
  }

  .products-category-hero .hero-actions .pill-button {
    min-width: 0;
  }

  .hero-wide-left .hero-center {
    padding-left: 18px;
    max-width: 920px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-content {
    align-items: center;
  }

  .home-hero .hero-center {
    text-align: center;
    max-width: 920px;
    margin: 12vh auto 0;
  }

  .home-hero .hero-center h1 {
    text-align: center;
  }

  .home-hero .hero-center p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .hero-actions {
    justify-content: center;
  }

  .home-hero .hero-carousel-shell {
    margin: 40px auto 0;
  }

  .home-hero .hero-live-stat {
    margin: 40px auto 0;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.24) 60%, transparent 100%);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-showcase-media {
    min-height: 280px;
  }

  .hero-live-stat {
    width: min(100%, 420px);
    margin: 40px auto 0;
    padding: 14px 14px 16px;
  }

  .hero-live-stat-label {
    font-size: 1rem;
  }

  .hero-live-stat strong {
    font-size: 1.8rem;
  }

  .count-glass-track {
    gap: 8px;
  }

  .count-glass-digit {
    width: 42px;
    height: 68px;
    border-radius: 12px;
  }

  .count-glass-digit::before {
    border-radius: 11px;
  }

  .count-glass-digit__sheen {
    top: 7px;
    left: 5px;
    right: 5px;
    height: 18px;
  }

  .count-glass-digit__value {
    font-size: 3rem;
  }

  .count-glass-separator {
    min-width: 10px;
    padding-bottom: 9px;
    font-size: 2.35rem;
  }

  .count-glass-suffix {
    margin-left: 4px;
    padding-bottom: 7px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .about-mosaic,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    flex-direction: column;
  }

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

  .solution-feature-row,
  .solution-feature-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-feature-row.is-reversed .solution-feature-media {
    order: 0;
  }

  .service-card,
  .service-card-expandable:hover,
  .service-card-expandable:focus-within {
    flex: 1 1 auto;
  }

  .service-media,
  .service-card-expandable:hover .service-media,
  .service-card-expandable:focus-within .service-media {
    width: 50%;
    opacity: 1;
    transform: none;
  }

  .service-card-body {
    min-height: 0;
  }

  .hero-carousel-shell {
    display: none;
  }

  .hero-card-ribbon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    height: auto;
    transform: none !important;
    cursor: default;
  }

  .floating-card {
    position: relative;
    min-height: 120px;
    -webkit-box-reflect: unset;
  }

  .section {
    width: calc(100vw - 28px);
    padding: 84px 0;
  }

  .about-heading h2,
  .section-head h2,
  .contact-inner h2,
  .exhibition-head h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .exhibition-band {
    width: calc(100vw - 28px);
    padding-top: 76px;
    padding-bottom: 22px;
  }

  .exhibition-head {
    margin-bottom: 24px;
  }

  .exhibition-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .exhibition-card,
  .exhibition-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 20px 18px;
  }

  .factory-section {
    padding: 60px 14px;
  }

  .factory-hero {
    min-height: 50vh;
  }

  .factory-metric-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-step-arrow {
    top: auto;
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .process-step-wrapper {
    padding-bottom: 12px;
  }

  .certification-item {
    width: 152px;
    flex-basis: 152px;
  }

  .exhibition-card h3 {
    font-size: 1.3rem;
  }

  .exhibition-cta {
    padding-top: 22px;
    font-size: 0.88rem;
  }

  .exhibition-all-link {
    font-size: 0.88rem;
  }

  .quick-links-shell {
    padding: 24px 0 10px;
    border-radius: 0;
  }

  .quick-links-band {
    width: 100%;
  }

  .quick-links-inner {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .quick-links-head {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .quick-links-card:not(.quick-links-contact-card) {
    display: none;
  }

  .quick-links-contact-card {
    grid-column: auto;
  }

  .quick-links-card {
    min-height: 0;
    padding: 0;
  }

  .quick-links-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Card Grid (shared) ── */

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

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

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

.card-grid-item {
  padding: 28px 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(12, 19, 28, 0.06);
}

.card-grid-item-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--on-primary);
}

.card-grid-item-icon svg {
  width: 22px;
  height: 22px;
}

.card-grid-item h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.card-grid-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

/* ── Text Image Pairs (shared) ── */

.text-image-pairs-list {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}

.text-image-pairs-list-2col {
  grid-template-columns: repeat(2, 1fr);
}

.text-image-pairs-list-2col .text-image-pair {
  gap: 20px;
}

.text-image-pairs-list-2col .text-image-pair-copy h3 {
  font-size: 1.15rem;
}

.text-image-pairs-list-2col .text-image-pair-media img {
  aspect-ratio: 1 / 1;
}

.text-image-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.text-image-pair-reverse {
  direction: rtl;
}

.text-image-pair-reverse > * {
  direction: ltr;
}

.text-image-pair-copy h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-image-pair-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.text-image-pair-media {
  border-radius: 20px;
  overflow: hidden;
}

.text-image-pair-media img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.oem-text-image-pair {
  margin-top: 48px;
}

.oem-text-image-pair .text-image-pair-media {
  background: #f6f9f8;
}

.oem-text-image-pair .text-image-pair-media img {
  padding: 24px;
  object-fit: contain;
}

.led-solution-page-main .card-grid-section .section-head h2,
.led-solution-page-main .process-section .section-head h2,
.led-solution-page-main .product-route-section .section-head h2,
.led-solution-page-main .image-text-cards-section .section-head h2,
.led-solution-page-main .oem-section .section-head h2 {
  font-size: clamp(1.72rem, 2.25vw, 2.35rem);
  line-height: 1.14;
  white-space: normal;
}

.led-solution-page-main .cta-row-copy {
  max-width: 860px;
}

.led-solution-page-main .cta-row-copy h2 {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

@media (min-width: 1024px) {
  .led-solution-page-main .cta-row-copy h2 {
    white-space: nowrap;
  }
}

/* ── Product Route Cards (shared) ── */

.product-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-route-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(12, 19, 28, 0.06);
}

.product-route-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-route-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-route-card-body {
  padding: 24px;
}

.product-route-card-body h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-route-card-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.product-route-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.product-route-link:hover {
  color: var(--blue-sky);
}

/* ── FAQ (shared) ── */

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  position: relative;
  padding: 24px 52px 24px 4px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 8px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-sky);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 780px;
  padding: 0 52px 24px 4px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-top: 48px;
  align-items: flex-start;
}

.faq-layout .faq-list {
  flex: 1;
  min-width: 0;
}

.faq-side-image {
  flex-shrink: 0;
  width: 360px;
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.faq-side-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Compliance Logo Grid (公共组件: renderComplianceLogoGrid) ── */

.cert-logo-section {
  padding-top: 80px;
}

.cert-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 64px;
  width: fit-content;
  max-width: 100%;
  margin: 48px auto 0;
}

.cert-logo-item {
  display: flex;
  min-width: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms ease;
}

.cert-logo-item:hover {
  transform: translateY(-4px);
}

.cert-logo-item img {
  width: auto;
  max-width: 180px;
  height: 78px;
  object-fit: contain;
}

.cert-logo-item strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.cert-logo-compact-label strong {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.cert-logo-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 820px) {
  .cert-logo-section {
    padding-top: 56px;
  }
}

/* ── Responsive: Card Grid / Text Image / Product Route ── */

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

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

@media (max-width: 820px) {
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .text-image-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .text-image-pairs-list-2col {
    grid-template-columns: 1fr;
  }

  .text-image-pair-reverse {
    direction: ltr;
  }

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

  .faq-layout {
    flex-direction: column;
  }

  .faq-side-image {
    display: none;
  }
}

/* ── Chat FAB (floating contact button) ── */

.chat-fab {
  border: 0;
  cursor: pointer;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
}

.chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.chat-fab-icon {
  width: 26px;
  height: 26px;
}

@media (max-width: 820px) {
  .chat-fab {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .chat-fab-icon {
    width: 22px;
    height: 22px;
  }
}
