/* SYKAM — CI design system (Google Fonts loaded from layouts/master/view.php — avoids render-blocking @import) */

:root {
  /* CI: main #2a4392, secondary #b01e75 */
  --ci-blue: #2a4392;
  --ci-blue-light: #3d5aa8;
  --ci-blue-soft: #e8ecf6;
  --ci-blue-gradient: linear-gradient(135deg, #2a4392 0%, #3d5aa8 50%, #2a4392 100%);
  --ci-magenta: #b01e75;
  --ci-magenta-light: #c92d8a;
  --ci-magenta-soft: #f8eef4;
  --ci-magenta-gradient: linear-gradient(135deg, #b01e75 0%, #c92d8a 100%);
  --bg: #f7f7f7;
  --bg-subtle: #f8f9fc;
  --bg-card: #f0f3fa;
  --border: rgba(42, 67, 146, 0.12);
  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --radius: 8px;
  --radius-lg: 14px;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 12px 40px -16px rgba(42, 67, 146, 0.18);
  --shadow-soft: 0 4px 20px -4px rgba(42, 67, 146, 0.08);
  --hero-overlay: linear-gradient(
    90deg,
    rgba(42, 67, 146, 0.82) 0%,
    rgba(42, 67, 146, 0.68) 15%,
    rgba(61, 90, 168, 0.76) 30%,
    rgba(42, 67, 146, 0.25) 58%,
    transparent 100%
  );
  /*
   * Breakpoints (canonical px — use these values in @media for consistency).
   * --bp-xs 380 | --bp-sm 520 | --bp-md 640 | --bp-hero 900 | --bp-nav 991 | --bp-lg 1024 | --bp-xl 1100
   * (Media queries cannot use custom properties in all browsers; duplicate values intentionally.)
   */
  --page-gutter: clamp(1rem, 4vw, 2rem);
  --touch-min: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Solutions scroll-scrub video: instant scroll like standalone demo (smooth breaks frame sync) */
html.sykam-solutions-scroll {
  scroll-behavior: auto;
}

body {
  position: relative; /* containing block for sticky notes so they scroll with the page */
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Respect device safe areas (notched phones) without shifting centered max-width layouts */
main {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Layout */
.fullscreen-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header: transparent + white on hero; solid + dark after scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
  padding-right: calc(var(--page-gutter) + env(safe-area-inset-right, 0px));
  padding-bottom: 0.75rem;
  padding-left: calc(var(--page-gutter) + env(safe-area-inset-left, 0px));
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Page builder: compact MENU tab when closed; sheet expands width when open */
.sykam-builder-tools {
  --sykam-pb-tools-z: 160;
  /* Narrow tab that peeks when closed — not full sheet height */
  --sykam-pb-fab: 2.5rem;
  --sykam-pb-tools-w: min(22rem, calc(100vw - var(--sykam-pb-fab) - 1.25rem));
}

.sykam-builder-tools__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--sykam-pb-tools-z);
  background: rgba(15, 23, 42, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sykam-builder-tools.is-open .sykam-builder-tools__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.sykam-builder-tools__panel {
  position: fixed;
  z-index: calc(var(--sykam-pb-tools-z) + 1);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.sykam-builder-tools__drawer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-right: 0.5rem;
  pointer-events: auto;
  background: #fff;
  overflow: hidden;
  will-change: width;
  transition: width 0.38s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease, border-radius 0.3s ease, border-color 0.3s ease;
  /* Closed default: tab width only (sheet is position:absolute so it does not stretch height) */
  width: var(--sykam-pb-fab);
  max-height: none;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(42, 67, 146, 0.38);
  box-shadow: 0 4px 18px -6px rgba(15, 23, 42, 0.22);
}

.sykam-builder-tools.is-open .sykam-builder-tools__drawer {
  width: calc(var(--sykam-pb-fab) + var(--sykam-pb-tools-w));
  max-height: min(88vh, 40rem);
  border-radius: 14px 16px 16px 14px;
  border: none;
  box-shadow: 0 20px 50px -18px rgba(15, 23, 42, 0.35);
}

/* Sheet only participates in layout when open — avoids full-height white strip when closed */
.sykam-builder-tools:not(.is-open) .sykam-builder-tools__sheet {
  position: absolute;
  left: var(--sykam-pb-fab);
  top: 0;
  width: var(--sykam-pb-tools-w);
  max-height: min(88vh, 40rem);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.sykam-builder-tools.is-open .sykam-builder-tools__sheet {
  position: relative;
  left: auto;
  top: auto;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.sykam-builder-tools__fab {
  flex: 0 0 var(--sykam-pb-fab);
  align-self: flex-start;
  width: var(--sykam-pb-fab);
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.45rem 0.2rem;
  margin: 0;
  border: none;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: transparent;
  color: var(--ci-blue, #2a4392);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sykam-builder-tools:not(.is-open) .sykam-builder-tools__fab {
  border-right: none;
}

.sykam-builder-tools__fab:hover {
  background: rgba(42, 67, 146, 0.06);
  color: var(--ci-blue, #2a4392);
}

.sykam-builder-tools.is-open .sykam-builder-tools__fab {
  background: #fff;
  color: #1e293b;
}

.sykam-builder-tools.is-open .sykam-builder-tools__fab:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.sykam-builder-tools__fab:focus-visible {
  outline: 2px solid var(--ci-blue, #2a4392);
  outline-offset: -2px;
}

.sykam-builder-tools__fab i {
  font-size: 1.05rem;
  color: currentColor;
}

.sykam-builder-tools__fab-text {
  max-width: 2.35rem;
  text-align: center;
  word-break: break-word;
  color: currentColor;
}

.sykam-builder-tools.is-open .sykam-builder-tools__fab i {
  color: #0f172a;
}

.sykam-builder-tools.is-open .sykam-builder-tools__fab-text {
  color: #334155;
}

.sykam-builder-tools__sheet {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--sykam-pb-tools-w);
  width: var(--sykam-pb-tools-w);
  max-height: min(88vh, 40rem);
  min-height: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.sykam-builder-tools__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(42, 67, 146, 0.12);
  background: linear-gradient(180deg, #f4f7fd 0%, #eef3fb 100%);
}

.sykam-builder-tools__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ci-blue, #2a4392);
}

.sykam-builder-tools__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.sykam-builder-tools__close:hover {
  background: rgba(176, 30, 117, 0.1);
  color: #b01e75;
}

.phpb-site-header-toolbar {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0.75rem 0.85rem 1rem;
}

.phpb-toolbar-stack__intro {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.phpb-toolbar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phpb-toolbar-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.75rem;
  text-align: left;
  border: 1px solid rgba(42, 67, 146, 0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.phpb-toolbar-card:hover {
  border-color: rgba(42, 67, 146, 0.28);
  background: #f8faff;
  box-shadow: 0 4px 14px -8px rgba(42, 67, 146, 0.35);
}

.phpb-toolbar-card--primary {
  border-color: rgba(31, 157, 87, 0.45);
  background: linear-gradient(180deg, #f3fdf7 0%, #e8f8ef 100%);
}

.phpb-toolbar-card--primary:hover {
  border-color: #1f9d57;
  background: linear-gradient(180deg, #e8f8ef 0%, #dff5e8 100%);
}

.phpb-toolbar-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(42, 67, 146, 0.08);
  color: var(--ci-blue, #2a4392);
  font-size: 1rem;
}

.phpb-toolbar-card--primary .phpb-toolbar-card__icon {
  background: rgba(31, 157, 87, 0.15);
  color: #1f9d57;
}

.phpb-toolbar-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.phpb-toolbar-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.phpb-toolbar-card__desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.phpb-toolbar-stack__footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(42, 67, 146, 0.1);
}

.phpb-toolbar-lang {
  display: block;
}

.phpb-toolbar-lang__select {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(42, 67, 146, 0.18);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #1e293b;
}

.phpb-toolbar-lang .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: color 0.35s ease;
}

.site-header.scrolled .logo {
  color: var(--text-primary);
}

.logo__img {
  height: 30px;
  width: 146px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.logo__img--scrolled {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.site-header.scrolled .logo__img--hero {
  opacity: 0;
}

.site-header.scrolled .logo__img--scrolled {
  opacity: 1;
  pointer-events: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: inherit;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-main > a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.35s ease;
}

.site-header.scrolled .nav-main > a {
  color: var(--text-secondary);
}

.nav-main > a:hover {
  color: #fff;
}

.site-header.scrolled .nav-main > a:hover {
  color: var(--ci-blue);
}

.nav-main .active,
.nav-main > a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.site-header.scrolled .nav-main .active,
.site-header.scrolled .nav-main > a[aria-current="page"] {
  color: var(--ci-blue);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.35s ease;
}

a.nav-trigger {
  text-decoration: none;
  cursor: pointer;
}

.site-header.scrolled .nav-trigger {
  color: var(--text-secondary);
}

.nav-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.is-open .nav-trigger::after,
.nav-item:hover .nav-trigger::after {
  transform: rotate(180deg);
}

.nav-trigger:hover {
  color: #fff;
}

.site-header.scrolled .nav-trigger:hover {
  color: var(--ci-blue);
}

.nav-item.is-open .nav-trigger,
.nav-item.is-active .nav-trigger {
  color: #fff;
}

.site-header.scrolled .nav-item.is-open .nav-trigger,
.site-header.scrolled .nav-item.is-active .nav-trigger {
  color: var(--ci-blue);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  min-width: 220px;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0.28s ease;
  z-index: 200;
}

.nav-item:hover .dropdown-panel,
.nav-item.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-inner {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

/* Shared nav dropdown row rhythm (Solutions column + Products cascade) */
.dropdown-inner--column > a,
.dropdown-level .dropdown-link,
.dropdown-level .dropdown-parent {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Solutions submenu: always vertical list */
.dropdown-inner--column {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
}
.dropdown-inner--column > a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
}
.dropdown-inner--column > a .nav-submenu-icon {
  margin-top: 0.15em;
}

.nav-submenu-icon {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  opacity: 0.92;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  box-sizing: content-box;
  padding-right: 0.35rem;
}

.dropdown-inner--column > a:hover .nav-submenu-icon,
.dropdown-inner--column > a.active .nav-submenu-icon {
  color: var(--ci-blue);
  opacity: 1;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
}

.dropdown-col + .dropdown-col {
  margin-top: 0.75rem;
}

.dropdown-inner > a,
.dropdown-col a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.dropdown-inner > a:hover,
.dropdown-col a:hover {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}

.dropdown-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ci-magenta);
  padding: 0.25rem 1rem 0.5rem;
}

/* Products cascade menu: multi-layer flyout submenus */
.dropdown-panel--cascade {
  min-width: 220px;
  left: 0;
  transform: translateX(0) translateY(-12px);
  padding: 0;
}
.nav-item--products:hover .dropdown-panel--cascade,
.nav-item--products.is-open .dropdown-panel--cascade,
.nav-item--support:hover .dropdown-panel--cascade,
.nav-item--support.is-open .dropdown-panel--cascade {
  transform: translateX(0) translateY(4px);
}
.dropdown-cascade {
  padding: 0;
}
.dropdown-panel--cascade .dropdown-cascade > .dropdown-level {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 220px;
}
.dropdown-level {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 0.5rem 0;
}
.dropdown-level .dropdown-link {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.dropdown-level .dropdown-link .nav-submenu-icon {
  margin-top: 0.15em;
}

.dropdown-level .dropdown-parent {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  gap: 0.5rem;
}
.dropdown-level .dropdown-link:hover,
.dropdown-level .dropdown-link.active,
.dropdown-level .dropdown-parent:hover {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.dropdown-level .dropdown-link:hover .nav-submenu-icon,
.dropdown-level .dropdown-link.active .nav-submenu-icon,
.dropdown-level .dropdown-parent:hover .nav-submenu-icon {
  color: var(--ci-blue);
  opacity: 1;
}
/* Pumps nested flyout: pointer over the model list keeps the parent row in :hover — reset the row when
   this hub is not the current page so it does not look stuck “active”. */
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])),
.dropdown-subpanel .dropdown-parent[data-cascade="detectors"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])),
.dropdown-subpanel .dropdown-parent[data-cascade^="detectors-"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])),
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])),
.dropdown-subpanel .dropdown-parent[data-cascade="detectors"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])),
.dropdown-subpanel .dropdown-parent[data-cascade^="detectors-"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])) {
  background: transparent;
  color: var(--text-secondary);
}
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon,
.dropdown-subpanel .dropdown-parent[data-cascade="detectors"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon,
.dropdown-subpanel .dropdown-parent[data-cascade^="detectors-"]:hover:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon,
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon,
.dropdown-subpanel .dropdown-parent[data-cascade="detectors"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon,
.dropdown-subpanel .dropdown-parent[data-cascade^="detectors-"].is-open:not(:has(.dropdown-parent-label[aria-current="page"])) .nav-submenu-icon {
  color: var(--text-secondary);
  opacity: 0.92;
}
.dropdown-parent {
  position: relative;
  cursor: default;
}
.dropdown-parent-label {
  flex: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
a.dropdown-parent-label {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.dropdown-parent-label .nav-submenu-icon {
  margin-top: 0.15em;
}
.dropdown-parent-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  flex-shrink: 0;
  opacity: 0.7;
  margin-top: 0.28rem;
}
.dropdown-subpanel {
  position: absolute;
  left: calc(100% + 6px);
  top: 0;
  margin-left: 0;
  min-width: 220px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 201;
}
/* Bridge the horizontal gap so pointer can move between columns without closing */
.dropdown-subpanel::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  width: 10px;
  height: 100%;
  min-height: 2.75rem;
}
.dropdown-parent:hover > .dropdown-subpanel,
.dropdown-parent.is-open > .dropdown-subpanel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-subpanel .dropdown-parent {
  cursor: pointer;
}
.dropdown-subpanel .dropdown-link {
  white-space: nowrap;
}
.dropdown-subpanel .dropdown-subpanel {
  top: 0;
  left: calc(100% + 6px);
  margin-left: 0;
  z-index: 202;
}
/* Wider middle column: long overview labels (Components submenu) */
.dropdown-panel--cascade .dropdown-cascade > .dropdown-level > .dropdown-parent > .dropdown-subpanel {
  min-width: 280px;
}
/* Keep first-level panel inner styling */
.dropdown-panel--cascade .dropdown-inner {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.dropdown-panel--cascade .dropdown-level:first-child {
  padding: 0.5rem 0;
}

/* Legacy mega grid (kept for reference; Products now uses cascade above) */
.dropdown-panel--mega {
  min-width: 720px;
  left: 0;
  transform: translateX(0) translateY(-12px);
}
.dropdown-inner--multi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.5rem;
  padding: 1rem 1.25rem 1.25rem;
  max-width: 960px;
}
.dropdown-col { min-width: 0; }
.dropdown-overview { font-weight: 600; margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.dropdown-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-primary); margin: 0.5rem 0 0.35rem; padding: 0 0 0.25rem; }
.dropdown-group { margin-top: 0.5rem; }
.dropdown-group-title { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-secondary); padding: 0.25rem 0 0.15rem; display: block; }
.dropdown-group a { padding-left: 1rem; }

@media (min-width: 769px) {
  .dropdown-inner {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
  /* Simple column dropdowns (Solutions): same shell padding as cascade first panel */
  .dropdown-inner.dropdown-inner--column {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .dropdown-col + .dropdown-col { margin-top: 0; }
}

/* Header actions (Contact + burger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language switcher (header actions) */
.header-actions .nav-item--lang {
  position: relative;
}

.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.site-header.scrolled .lang-switcher-trigger {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border);
}

.lang-switcher-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header.scrolled .lang-switcher-trigger:hover {
  color: var(--ci-blue);
  background: var(--ci-blue-soft);
  border-color: rgba(42, 67, 146, 0.25);
}

.lang-switcher-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.lang-switcher-caret {
  font-size: 0.65rem;
  opacity: 0.85;
  transition: transform 0.25s ease;
}

.nav-item--lang.is-open .lang-switcher-caret {
  transform: rotate(180deg);
}

.dropdown-panel--lang {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-12px);
  min-width: 11rem;
  padding-top: 0.35rem;
}

.nav-item--lang:hover .dropdown-panel--lang,
.nav-item--lang.is-open .dropdown-panel--lang {
  transform: translateX(0) translateY(4px);
}

.dropdown-panel--lang .dropdown-inner--column > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile drawer: language */
.nav-mobile-lang {
  margin: 0.5rem 0 0.25rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--border);
}

.nav-mobile-lang-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.nav-mobile-lang-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-mobile-lang-link {
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0.4rem 0.65rem !important;
  font-weight: 600;
}

.nav-mobile-lang-link.is-active {
  border-color: var(--ci-blue);
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}

@media (max-width: 991px) {
  .header-actions .nav-item--lang {
    display: none;
  }
}

/* Header CTA: transparent over hero, solid blue when scrolled (no white flash) */
.site-header:not(.scrolled) .header-cta.btn-sticky-note {
  color: #fff;
  background: #e85c2a;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.site-header:not(.scrolled) .header-cta.btn-sticky-note:hover {
  background: #f07a4a;
  color: #fff;
}
.site-header:not(.scrolled) .header-cta.btn-primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header:not(.scrolled) .header-cta.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.site-header.scrolled .header-cta.btn-primary {
  color: #fff;
  border: none;
  background: #3a56a5;
  background-color: #3a56a5;
  box-shadow: 0 4px 14px rgba(42, 67, 146, 0.25);
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.site-header.scrolled .header-cta.btn-primary:hover,
.site-header.scrolled .header-cta.btn-primary:active,
.site-header.scrolled .header-cta.btn-primary:focus {
  background: #57aec7;
  background-color: #57aec7;
  color: #fff;
  box-shadow: 0 8px 24px rgba(87, 174, 199, 0.35);
}

/* Mobile: hide desktop nav, show burger; desktop: hide burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-burger:hover { background: var(--ci-blue-soft); }
.nav-burger:focus-visible { outline: 2px solid var(--ci-blue); outline-offset: 2px; }
.nav-burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background 0.35s ease;
}

.site-header.scrolled .nav-burger-bar {
  background: var(--text-primary);
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay — backdrop only when open */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile menu drawer — slide from right, safe-area aware */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw - 2rem);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: env(safe-area-inset-top, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: #fff;
  box-shadow: -4px 0 24px rgba(42, 67, 146, 0.15);
  z-index: 101;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s ease;
  visibility: hidden;
}
.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
}
.nav-mobile-nav {
  display: block;
  height: 100%;
  overflow: hidden;
}
.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: 0.5rem 0.5rem 0 auto;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-mobile-close:hover,
.nav-mobile-close:focus-visible {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.nav-mobile-close:focus-visible { outline: 2px solid var(--ci-blue); outline-offset: 2px; }
.nav-mobile-close-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
}
.nav-mobile-close-icon::before,
.nav-mobile-close-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: currentColor;
  border-radius: 1px;
}
.nav-mobile-close-icon::before { transform: rotate(45deg); }
.nav-mobile-close-icon::after { transform: rotate(-45deg); }
/* Scroll area: explicit height so content is always visible (no flex reliance) */
.nav-mobile-inner {
  display: block;
  height: calc(100vh - 56px);
  height: calc(100dvh - 56px);
  max-height: calc(100% - 56px);
  padding: 0 1rem 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile-inner > * {
  margin-top: 0.25rem;
}
.nav-mobile-inner > *:first-child {
  margin-top: 0;
}
.nav-mobile-sub .nav-mobile-link .nav-submenu-icon {
  color: var(--text-secondary);
  opacity: 0.9;
}
.nav-mobile-sub .nav-mobile-link:hover .nav-submenu-icon,
.nav-mobile-sub .nav-mobile-link:focus-visible .nav-submenu-icon,
.nav-mobile-sub .nav-mobile-link[aria-current="page"] .nav-submenu-icon {
  color: var(--ci-blue);
  opacity: 1;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.nav-mobile-link[aria-current="page"] {
  color: var(--ci-blue);
  font-weight: 600;
}
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}
.nav-mobile-sub > .nav-mobile-sub-inner > .nav-mobile-group {
  gap: 0.35rem;
}
.nav-mobile-products-top {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  gap: 0;
}
.nav-mobile-products-top-link {
  flex: 1;
  min-width: 0;
}
.nav-mobile-trigger--products-expand {
  flex: 0 0 3.25rem;
  min-width: 3.25rem;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.75rem;
}
.nav-mobile-trigger--products-expand::before {
  content: '';
  flex: 1;
  min-width: 0;
}
.nav-mobile-sub .nav-mobile-products-top .nav-mobile-trigger--products-expand {
  align-self: stretch;
  background: rgba(42, 67, 146, 0.02);
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + 2px);
  color: var(--text-secondary);
}
.nav-mobile-sub .nav-mobile-products-top .nav-mobile-trigger--products-expand:hover,
.nav-mobile-sub .nav-mobile-products-top .nav-mobile-trigger--products-expand:focus-visible {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.nav-mobile-sub .nav-mobile-products-top .nav-mobile-trigger--products-expand[aria-expanded="true"] {
  background: rgba(42, 67, 146, 0.08);
  color: var(--ci-blue);
}
.nav-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-mobile-trigger:hover,
.nav-mobile-trigger:focus-visible {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.nav-mobile-trigger:focus-visible { outline: 2px solid var(--ci-blue); outline-offset: 2px; }
.nav-mobile-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nav-mobile-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
/* Accordion: avoid grid 0fr/1fr — WebKit often leaks a few px of nested flex children (peek-through rows). */
.nav-mobile-sub {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  min-height: 0;
  padding: 0;
  border: none;
  transition: max-height 0.35s ease;
}
.nav-mobile-sub.is-open {
  max-height: 5000px;
  margin-top: 0.1rem;
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-sub {
    transition: none;
  }
}
.nav-mobile-sub-inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem 0 0.4rem 0.85rem;
  margin-left: 0.35rem;
  border-left: 1px solid rgba(42, 67, 146, 0.14);
}
.nav-mobile-sub:not(.is-open) > .nav-mobile-sub-inner {
  padding: 0;
  margin-left: 0;
  gap: 0;
  border-left-width: 0;
}
/* Deeper indent for open submenus under Products only. Scoped so we do not override Solutions, and so
   nested .nav-mobile-sub-inner rules cannot fight :not(.is-open) reset (peek-through rows). */
#mobile-products .nav-mobile-group > .nav-mobile-sub.is-open > .nav-mobile-sub-inner,
#mobile-support .nav-mobile-group > .nav-mobile-sub.is-open > .nav-mobile-sub-inner {
  padding-left: 0.85rem;
  margin-left: 0.25rem;
  border-left-color: rgba(42, 67, 146, 0.12);
}
.nav-mobile-sub .nav-mobile-link {
  gap: 0.65rem;
  margin-left: 0.15rem;
  padding-left: 1rem;
  padding-right: 0.9rem;
  font-size: 0.9375rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(42, 67, 146, 0.02);
}
.nav-mobile-sub .nav-mobile-sub .nav-mobile-link {
  margin-left: 0.5rem;
  padding-left: 0.9rem;
  padding-right: 0.85rem;
  min-height: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  box-shadow: inset 0 0 0 1px rgba(42, 67, 146, 0.05);
}
.nav-mobile-sub .nav-mobile-sub .nav-mobile-link:hover,
.nav-mobile-sub .nav-mobile-sub .nav-mobile-link:focus-visible {
  background: rgba(42, 67, 146, 0.08);
  color: var(--ci-blue);
}
.nav-mobile-sub .nav-mobile-sub .nav-mobile-link[aria-current="page"] {
  background: rgba(42, 67, 146, 0.12);
  color: var(--ci-blue);
  font-weight: 600;
}
.nav-mobile-cta {
  margin-top: 1rem;
  min-height: 48px;
  width: 100%;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991px) {
  .nav-main,
  .header-cta {
    display: none !important;
  }
  .nav-burger {
    display: flex;
  }
  .nav-mobile-overlay,
  .nav-mobile {
    display: block;
  }
}

@media (min-width: 992px) {
  .nav-mobile-overlay.is-open,
  .nav-mobile.is-open {
    display: none;
  }
}

@media (max-width: 768px) {
  .dropdown-panel {
    left: 0;
    transform: translateX(0) translateY(-12px);
  }
  .nav-item:hover .dropdown-panel,
  .nav-item.is-open .dropdown-panel {
    transform: translateX(0) translateY(4px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: #3a56a5;
  background-color: #3a56a5;
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 67, 146, 0.25);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: #57aec7;
  background-color: #57aec7;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(87, 174, 199, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ci-blue);
  border: 1px solid rgba(42, 67, 146, 0.35);
}

.btn-outline:hover {
  border-color: var(--ci-blue);
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}

/* Sticky note header button (orange) */
.btn-sticky-note {
  background: #e85c2a;
  background-color: #e85c2a;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(232, 92, 42, 0.3);
}
.btn-sticky-note:hover,
.btn-sticky-note:focus {
  background: #f07a4a;
  background-color: #f07a4a;
  color: #fff;
}
.btn-sticky-note.active {
  background: #c94d1a;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

/* Admin: show/hide all sticky notes on the page */
.sticky-notes-visibility-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.sticky-notes-visibility-toggle:hover,
.sticky-notes-visibility-toggle:focus {
  color: var(--ci-blue);
  border-color: var(--ci-blue);
  background: var(--ci-blue-soft);
}
.site-header:not(.scrolled) .sticky-notes-visibility-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.site-header:not(.scrolled) .sticky-notes-visibility-toggle:hover,
.site-header:not(.scrolled) .sticky-notes-visibility-toggle:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
}
body.sticky-notes-hidden .sticky-note-card {
  display: none !important;
}

.sticky-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.sticky-logout-btn:hover {
  color: var(--ci-blue);
  background: var(--ci-blue-soft);
}
.site-header:not(.scrolled) .sticky-logout-btn {
  color: rgba(255, 255, 255, 0.85);
}
.site-header:not(.scrolled) .sticky-logout-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Sticky note cards on page */
.sticky-note-card {
  position: fixed;
  z-index: 9999;
  display: inline-block;
  width: max-content;
  max-width: min(92vw, 520px);
  min-width: 200px;
  box-sizing: border-box;
  background: #fff6d9;
  border: 1px solid #e0cf8a;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 0.5rem;
}
.sticky-note-card .sticky-note-text {
  display: block;
  width: 260px;
  max-width: min(calc(92vw - 1.5rem), 500px);
  min-width: 160px;
  min-height: 60px;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: transparent;
  resize: both;
  overflow-x: hidden;
  overflow-y: hidden;
  overflow-wrap: break-word;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-primary);
  outline: none;
  box-shadow: none;
  appearance: none;
  transition: border-color 0.15s ease;
}
.sticky-note-card .sticky-note-text:hover {
  border-color: rgba(0, 0, 0, 0.14);
}
.sticky-note-card .sticky-note-text:focus,
.sticky-note-card .sticky-note-text:focus-visible {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: none;
}
.sticky-note-card .sticky-note-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sticky-note-card .sticky-note-actions button {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--text-muted);
}
.sticky-note-card .sticky-note-actions button:hover {
  color: var(--ci-blue);
}

.sticky-note-card .sticky-note-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.sticky-note-done-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.45rem;
  z-index: 2;
  color: #2e7d32;
  font-size: 1.2rem;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.9));
}
.sticky-note-card--done {
  padding-top: 0.55rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-subtle);
}

/* Hero background: <picture> in themes/sykam/pages/home.php for early discovery + fetchpriority */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__media img,
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(6rem + env(safe-area-inset-top, 0px)) var(--page-gutter) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(5rem + env(safe-area-inset-top, 0px)) var(--page-gutter) 3rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
  color: #fff;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero .hero-h2 .highlight {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: #fff;
  max-width: 28ch;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

@media (max-width: 900px) {
  .hero-sub { max-width: none; }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero .hero-cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .hero-cta .btn-outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.hero .hero-cta .btn-primary {
  background: #b01e75;
  background-color: #b01e75;
  box-shadow: 0 4px 14px rgba(176, 30, 117, 0.35);
}

.hero .hero-cta .btn-primary:hover,
.hero .hero-cta .btn-primary:active,
.hero .hero-cta .btn-primary:focus {
  background: var(--ci-magenta-light);
  background-color: var(--ci-magenta-light);
  box-shadow: 0 8px 24px rgba(176, 30, 117, 0.42);
}

@media (max-width: 900px) {
  .hero-cta { justify-content: center; }
}

/* Analytics pin SVG overlay (free-standing for animation) */
.hero-globe-analytics-pin {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-globe-analytics-pin svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats strip */
.stats-strip {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem var(--page-gutter);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.stat-item .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: var(--ci-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-item .label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stat-item--text .value {
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Section headings */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head--left {
  text-align: left;
}

.section-head .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ci-magenta);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 24ch;
  margin: 0 auto 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

@keyframes h2-line-reveal {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  70% {
    transform: translateX(-50%) scaleX(1.08);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 3px;
  background: var(--ci-magenta-gradient);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.section-head.revealed h2::after {
  animation: h2-line-reveal 0.55s ease-out 0.15s both;
}

.section-head p {
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 auto;
}

/* Left-aligned section heads — placed after .section-head h2 / p so these beat margin: auto and centered ::after */
.section-head.section-head--left .eyebrow {
  display: block;
  text-align: left;
  margin-bottom: 0.75rem;
}

.section-head.section-head--left h2 {
  text-align: left;
  margin: 0 0 1.375rem 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-bottom: 0.875rem;
}

.section-head.section-head--left h2::after {
  left: 0;
  right: auto;
  transform: translateX(0) scaleX(0);
  transform-origin: left center;
}

.section-head.section-head--left.revealed h2::after {
  animation: h2-line-reveal-left 0.55s ease-out 0.15s both;
}

.section-head.section-head--left p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.section-head.section-head--left p:last-of-type {
  margin-bottom: 0;
}

/* Public content utilities — keep prose/layout responsive without per-template inline styles */
main :where(img, video) {
  max-width: 100%;
  height: auto;
}

main iframe {
  max-width: 100%;
  width: 100%;
}

main :where(h1, h2, h3, h4, p, li, dt, dd, a, code) {
  overflow-wrap: anywhere;
}

.content-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.content-shell--narrow {
  max-width: 52rem;
}

.content-shell--medium {
  max-width: 58rem;
}

.content-shell--wide {
  max-width: 62rem;
}

.content-shell--center {
  text-align: center;
}

.content-copy {
  color: var(--text-secondary);
  line-height: 1.75;
}

.content-copy > * {
  margin: 0;
}

.content-copy > * + * {
  margin-top: 1rem;
}

.content-copy h2,
.content-copy h3 {
  color: var(--text-primary);
  line-height: 1.3;
}

.content-copy h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
}

.content-copy h3 {
  font-size: clamp(1.0625rem, 2.3vw, 1.125rem);
}

.content-copy strong {
  color: var(--text-primary);
}

.content-copy--compact > * + * {
  margin-top: 0.75rem;
}

.content-copy--center {
  text-align: center;
}

.content-copy--hero {
  font-size: 1rem;
  line-height: 1.7;
}

.content-stack {
  display: grid;
  gap: 1.25rem;
}

.content-stack__item > * {
  margin: 0;
}

.content-stack__item > * + * {
  margin-top: 0.45rem;
}

.content-stack__item h3 {
  color: var(--text-primary);
  line-height: 1.3;
}

.content-card {
  background: linear-gradient(135deg, rgba(42, 67, 146, 0.06) 0%, rgba(76, 175, 80, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.section-cta {
  margin-top: 1.5rem;
}

.eyebrow-link {
  color: var(--ci-magenta);
  text-decoration: none;
}

.eyebrow-link:hover,
.eyebrow-link:focus-visible {
  text-decoration: underline;
}

.hero-cta-spacer {
  margin-top: 1.5rem;
}

.hero-lead-spacing {
  margin-top: 1rem;
}

.product-image-cover {
  object-fit: cover;
}

.zigzag-kicker {
  margin-bottom: 0.5rem;
}

.zigzag-subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.55;
}

.page-legal .content-shell,
.page-static .content-shell {
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.page-legal .content-copy a,
.page-static .content-copy a {
  color: var(--ci-blue);
}

.legal-list {
  margin: 0 0 0 1.25rem;
  padding: 0;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .content-shell {
    padding-inline: 1.25rem;
  }
}

/* Building parallax — scroll-scrub video (replaces static building image) */
html.sykam-home-scroll-video {
  scroll-behavior: auto !important;
}

/*
 * `overflow-x: hidden` on body breaks `position: sticky` (sticky is clipped to that
 * overflow box), which kills the scroll-scrub runway on desktop. `clip` prevents
 * horizontal bleed without creating that scroll container; cascade: hidden first for
 * older engines that do not support `clip`, then `clip` overrides when supported.
 */
html.sykam-home-scroll-video body {
  overflow-x: hidden;
  overflow-x: clip;
}

/* Mobile/tablet: no scroll-scrub runway — smooth scroll is safe and avoids janky feel */
@media (max-width: 1024px) {
  @media (prefers-reduced-motion: no-preference) {
    html.sykam-home-scroll-video {
      scroll-behavior: smooth !important;
    }
  }
}

.building-parallax {
  --building-parallax-header: calc(4rem + 1px + env(safe-area-inset-top, 0px));
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: visible;
  background: #0a0a0f;
  color: #fff;
}

.building-parallax__scroll {
  height: 500vh;
  position: relative;
}

.building-parallax__sticky {
  position: sticky;
  top: var(--building-parallax-header);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--building-parallax-header));
  overflow: hidden;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.building-parallax__video {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
}

/* First frame still; shown on mobile only (see media query below). */
.building-parallax__poster--mobile {
  display: none;
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
  pointer-events: none;
}

.building-parallax__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 50, 0.35) 0%,
    rgba(26, 35, 50, 0.5) 50%,
    rgba(26, 35, 50, 0.42) 100%
  );
  pointer-events: none;
}

.building-parallax__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  pointer-events: none;
}

.building-parallax__logo {
  display: block;
  width: min(250px, 70vw);
  height: auto;
  object-fit: contain;
  /* Layered shadow so the logo reads above the scrubbed video */
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55))
    drop-shadow(0 8px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.06));
}

.building-parallax__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vh, 2.25rem);
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.building-parallax__scroll-hint-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.building-parallax__scroll-hint-play-icon {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.building-parallax__scroll-hint-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.building-parallax__scroll-hint-arrow-icon {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.building-parallax__scroll-hint.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: building-parallax-hint-bounce 2.2s ease-in-out infinite;
}

.building-parallax__scroll-hint:hover .building-parallax__scroll-hint-play {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.building-parallax__scroll-hint:hover .building-parallax__scroll-hint-arrow {
  color: rgba(255, 255, 255, 0.95);
}

.building-parallax__scroll-hint:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes building-parallax-hint-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .building-parallax__scroll-hint.is-visible {
    animation: none;
  }
}

/* Home mobile/tablet (≤1024px): poster-only fallback, no scrub video loading. */
@media (max-width: 1024px) {
  html.sykam-home-scroll-video .building-parallax__scroll {
    height: auto;
    min-height: 0;
  }

  html.sykam-home-scroll-video .building-parallax__sticky {
    position: relative;
    top: auto;
    min-height: calc(100vh - var(--building-parallax-header));
    height: auto;
    will-change: auto;
  }

  html.sykam-home-scroll-video .building-parallax__video {
    display: none;
    visibility: hidden;
  }

  html.sykam-home-scroll-video .building-parallax__poster--mobile {
    display: block;
    z-index: 1;
  }
  html.sykam-home-scroll-video .building-parallax__scroll-hint {
    display: none;
  }
}

/* Product cards — systems row + homepage pillars */
.product-cards-section {
  padding: 5rem var(--page-gutter);
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
}

/* #komplettsysteme: “See all products” below carousel */
#komplettsysteme .komplettsysteme-products-cta {
  margin-top: 2rem;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* #komplettsysteme: horizontal slider (add more cards inside .product-cards--systems-slider) */
.product-cards-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.product-cards-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 0.35rem 0 0.5rem;
  outline: none;
}
.product-cards-scroll:focus-visible {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ci-blue);
  border-radius: var(--radius);
}
#komplettsysteme .product-cards-scroll {
  /* Vertical pan/wheel scrolls the page; only horizontal pan scrolls this strip */
  touch-action: pan-x;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
/* flex-start (not stretch): if we used stretch, one card’s hover height would force every card taller */
#komplettsysteme .product-cards.product-cards--systems-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin: 0;
  max-width: none;
  width: max-content;
  align-items: flex-start;
}
#komplettsysteme .product-cards--systems-slider .product-card {
  flex: 0 0 min(280px, calc(100vw - 5.5rem));
  max-width: 300px;
  padding: 1.25rem 1.25rem 1rem;
  box-sizing: border-box;
  align-self: flex-start;
  touch-action: pan-x;
}
/* Equal resting height on wide screens; hover grows only the hovered card */
@media (min-width: 769px) {
  #komplettsysteme .product-cards-scroll {
    padding-bottom: 1.25rem;
  }
  #komplettsysteme .product-cards--systems-slider .product-card {
    min-height: 27rem;
  }
  #komplettsysteme .product-cards--systems-slider .product-card:hover {
    position: relative;
    z-index: 2;
  }
}
/* Grow description so “Read more” sits on the bottom at rest */
#komplettsysteme .product-cards--systems-slider .product-card-desc {
  flex: 1 1 auto;
  margin-bottom: 1rem;
}
#komplettsysteme .product-cards-scroll .product-card.product-card--glow {
  touch-action: pan-x;
}
.product-cards-slider-nav {
  width: 0;
  height: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: var(--shadow-soft);
  transition: width 0.2s ease, height 0.2s ease, color var(--transition), opacity var(--transition),
    border-color var(--transition), box-shadow var(--transition), border-width 0.2s ease;
}
.product-cards-slider-nav svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.product-cards-slider-nav.is-visible {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0 0.35rem;
  padding: 0;
  border: 1px solid var(--border);
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product-cards-slider-container:hover .product-cards-slider-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
.product-cards-slider-nav:hover:not(.disabled) {
  color: var(--ci-blue);
  border-color: rgba(42, 67, 146, 0.35);
}
.product-cards-slider-nav.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 560px) {
  .product-cards-slider-nav.is-visible {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* #komplettsysteme — mobile: full-width cards, snap scroll, overlay nav, always-visible CTAs */
@media (max-width: 768px) {
  #komplettsysteme.product-cards-section {
    --komplett-inline: max(1rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
    padding-top: 2rem;
    padding-left: var(--komplett-inline);
    padding-right: var(--komplett-inline);
  }
  #komplettsysteme .product-cards-slider-container {
    position: relative;
    display: block;
    max-width: none;
    margin-inline: 0;
  }
  #komplettsysteme .product-cards-scroll {
    width: 100%;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    padding: 0.35rem 0 0.65rem;
    scrollbar-width: none;
  }
  #komplettsysteme .product-cards-scroll::-webkit-scrollbar {
    display: none;
  }
  #komplettsysteme .product-cards.product-cards--systems-slider {
    gap: 0.75rem;
    align-items: stretch;
  }
  #komplettsysteme .product-cards--systems-slider .product-card {
    flex: 0 0 calc(100vw - 2 * var(--komplett-inline));
    max-width: none;
    min-height: min(58vh, 440px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 1.35rem 1.15rem 1.15rem;
    box-sizing: border-box;
    justify-content: space-between;
  }
  #komplettsysteme .product-cards--systems-slider .product-card-image-circle {
    width: min(160px, 42vw);
    height: min(160px, 42vw);
    margin-bottom: 1rem;
  }
  #komplettsysteme .product-cards--systems-slider .product-card-title {
    font-size: 1.1875rem;
  }
  #komplettsysteme .product-cards--systems-slider .product-card-desc {
    font-size: 0.90625rem;
    line-height: 1.52;
    flex: 1 1 auto;
    margin-bottom: 1rem;
  }
  /* Touch devices: “Read more” is always visible (no :hover) */
  #komplettsysteme .product-cards--systems-slider .product-card .product-card-link {
    max-height: 4rem;
    opacity: 1;
    padding: 0.875rem 1.35rem 0.75rem;
    transform: translateY(0);
    margin-top: 0;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  #komplettsysteme .product-cards-scroll .product-card.product-card--glow {
    touch-action: pan-x;
  }
  #komplettsysteme .product-cards-slider-nav.is-visible {
    position: absolute;
    top: 50%;
    margin: 0;
    z-index: 4;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(42, 67, 146, 0.2);
  }
  #komplettsysteme .product-cards-slider-nav.prev.is-visible {
    left: max(0.2rem, env(safe-area-inset-left));
    right: auto;
    transform: translateY(-50%);
  }
  #komplettsysteme .product-cards-slider-nav.next.is-visible {
    right: max(0.2rem, env(safe-area-inset-right));
    left: auto;
    transform: translateY(-50%);
  }
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Products hub (/products): Bento-style grid (shadcn BentoCard-inspired) */
.products-hub-section .products-bento-grid {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(20rem, auto);
}
@media (min-width: 1024px) {
  .products-hub-section .products-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(22rem, auto);
  }
  .products-hub-section .products-bento-card--components {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .products-hub-section .products-bento-card--systems {
    grid-column: 2 / span 2;
    grid-row: 1 / span 2;
  }
  .products-hub-section .products-bento-card--software {
    grid-column: 1;
    grid-row: 3;
  }
  .products-hub-section .products-bento-card--accessories {
    grid-column: 2 / span 2;
    grid-row: 3;
  }
}
.products-hub-section .products-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  min-height: 18rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.products-hub-section .products-bento-card:hover {
  box-shadow:
    0 0 0 1px rgba(42, 67, 146, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(42, 67, 146, 0.08);
}
.products-hub-section .products-bento-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bg),
    0 0 0 4px var(--ci-blue),
    0 12px 24px rgba(0, 0, 0, 0.08);
}
/* Dedicated image band — no overlap with copy */
.products-hub-section .products-bento-card__media {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 9.5rem;
  max-height: 13rem;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1024px) {
  .products-hub-section .products-bento-card--components .products-bento-card__media,
  .products-hub-section .products-bento-card--systems .products-bento-card__media {
    aspect-ratio: 21 / 9;
    min-height: 10.5rem;
    max-height: 15rem;
  }
}
.products-hub-section .products-bento-card__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateZ(0);
  transition: transform 0.4s ease;
}
.products-hub-section .products-bento-card:hover .products-bento-card__media-img,
.products-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
  transform: scale(1.04);
}
.products-hub-section .products-bento-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.products-hub-section .products-bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ci-blue);
  background: color-mix(in srgb, var(--ci-blue) 10%, transparent);
  border-radius: 0.5rem;
  margin-bottom: 0.125rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.products-hub-section .products-bento-card:hover .products-bento-card__icon,
.products-hub-section .products-bento-card:focus-visible .products-bento-card__icon {
  background: color-mix(in srgb, var(--ci-blue) 16%, transparent);
  transform: translateY(-1px);
}
.products-hub-section .products-bento-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}
.products-hub-section .products-bento-card__lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.products-hub-section .products-bento-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1 1 auto;
  opacity: 0.95;
}
.products-hub-section .products-bento-card__cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
  padding: 0.75rem 1.5rem 1.25rem;
}
.products-hub-section .products-bento-card__cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ci-blue);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ci-blue) 8%, transparent);
  transition: background 0.2s ease, color 0.2s ease;
}
.products-hub-section .products-bento-card__cta-arrow {
  flex-shrink: 0;
  opacity: 0.9;
}
.products-hub-section .products-bento-card:hover .products-bento-card__cta-inner,
.products-hub-section .products-bento-card:focus-visible .products-bento-card__cta-inner {
  background: color-mix(in srgb, var(--ci-blue) 14%, transparent);
  color: var(--ci-blue);
}
.products-hub-section .products-bento-card__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  transition: background 0.3s ease;
}
.products-hub-section .products-bento-card:hover .products-bento-card__shine,
.products-hub-section .products-bento-card:focus-visible .products-bento-card__shine {
  background: rgba(0, 0, 0, 0.025);
}
@media (prefers-reduced-motion: reduce) {
  .products-hub-section .products-bento-card,
  .products-hub-section .products-bento-card__cta,
  .products-hub-section .products-bento-card__icon,
  .products-hub-section .products-bento-card__media-img,
  .products-hub-section .products-bento-card__shine {
    transition: none;
  }
  .products-hub-section .products-bento-card:hover .products-bento-card__media-img,
  .products-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
    transform: none;
  }
  .products-hub-section .products-bento-card:hover .products-bento-card__icon,
  .products-hub-section .products-bento-card:focus-visible .products-bento-card__icon {
    transform: none;
  }
}
@media (hover: none) {
  .products-hub-section .products-bento-card__shine {
    display: none;
  }
  .products-hub-section .products-bento-card:hover .products-bento-card__media-img,
  .products-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
    transform: none;
  }
}
.products-hub-footnote {
  max-width: 40rem;
  margin: 2.75rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.products-hub-footnote a {
  font-weight: 600;
  color: var(--ci-blue);
  text-decoration: none;
}
.products-hub-footnote a:hover {
  text-decoration: underline;
}
.page-hero--products .lead {
  max-width: min(68ch, 100%);
  line-height: 1.65;
}
.page-hero .lead.lead--tight {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .page-hero--products .lead {
    max-width: none;
  }
}

/* Solutions hub (/solutions): bento grid — mirrors products hub styling */
.solutions-hub-section .products-bento-grid {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(20rem, auto);
}
@media (min-width: 1024px) {
  .solutions-hub-section .products-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(22rem, auto);
  }
  .solutions-hub-section .products-bento-card--solutions-analytics {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .solutions-hub-section .products-bento-card--solutions-engineering {
    grid-column: 2 / span 2;
    grid-row: 1;
  }
  .solutions-hub-section .products-bento-card--solutions-production {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
  .solutions-hub-section .products-bento-card--solutions-instrumentation {
    grid-column: 1 / span 3;
    grid-row: 3;
  }
}
.solutions-hub-section .products-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  min-height: 18rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.solutions-hub-section .products-bento-card:hover {
  box-shadow:
    0 0 0 1px rgba(42, 67, 146, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(42, 67, 146, 0.08);
}
.solutions-hub-section .products-bento-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bg),
    0 0 0 4px var(--ci-blue),
    0 12px 24px rgba(0, 0, 0, 0.08);
}
.solutions-hub-section .products-bento-card__media {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 9.5rem;
  max-height: 13rem;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1024px) {
  .solutions-hub-section .products-bento-card--solutions-analytics .products-bento-card__media,
  .solutions-hub-section .products-bento-card--solutions-instrumentation .products-bento-card__media {
    aspect-ratio: 21 / 9;
    min-height: 10.5rem;
    max-height: 15rem;
  }
}
.solutions-hub-section .products-bento-card__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateZ(0);
  transition: transform 0.4s ease;
}
.solutions-hub-section .products-bento-card:hover .products-bento-card__media-img,
.solutions-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
  transform: scale(1.04);
}
.solutions-hub-section .products-bento-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.solutions-hub-section .products-bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ci-blue);
  background: color-mix(in srgb, var(--ci-blue) 10%, transparent);
  border-radius: 0.5rem;
  margin-bottom: 0.125rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.solutions-hub-section .products-bento-card:hover .products-bento-card__icon,
.solutions-hub-section .products-bento-card:focus-visible .products-bento-card__icon {
  background: color-mix(in srgb, var(--ci-blue) 16%, transparent);
  transform: translateY(-1px);
}
.solutions-hub-section .products-bento-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}
.solutions-hub-section .products-bento-card__lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.solutions-hub-section .products-bento-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1 1 auto;
  opacity: 0.95;
}
.solutions-hub-section .products-bento-card__cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
  padding: 0.75rem 1.5rem 1.25rem;
}
.solutions-hub-section .products-bento-card__cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ci-blue);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ci-blue) 8%, transparent);
  transition: background 0.2s ease, color 0.2s ease;
}
.solutions-hub-section .products-bento-card__cta-arrow {
  flex-shrink: 0;
  opacity: 0.9;
}
.solutions-hub-section .products-bento-card:hover .products-bento-card__cta-inner,
.solutions-hub-section .products-bento-card:focus-visible .products-bento-card__cta-inner {
  background: color-mix(in srgb, var(--ci-blue) 14%, transparent);
  color: var(--ci-blue);
}
.solutions-hub-section .products-bento-card__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  transition: background 0.3s ease;
}
.solutions-hub-section .products-bento-card:hover .products-bento-card__shine,
.solutions-hub-section .products-bento-card:focus-visible .products-bento-card__shine {
  background: rgba(0, 0, 0, 0.025);
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hub-section .products-bento-card,
  .solutions-hub-section .products-bento-card__cta,
  .solutions-hub-section .products-bento-card__icon,
  .solutions-hub-section .products-bento-card__media-img,
  .solutions-hub-section .products-bento-card__shine {
    transition: none;
  }
  .solutions-hub-section .products-bento-card:hover .products-bento-card__media-img,
  .solutions-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
    transform: none;
  }
  .solutions-hub-section .products-bento-card:hover .products-bento-card__icon,
  .solutions-hub-section .products-bento-card:focus-visible .products-bento-card__icon {
    transform: none;
  }
}
@media (hover: none) {
  .solutions-hub-section .products-bento-card__shine {
    display: none;
  }
  .solutions-hub-section .products-bento-card:hover .products-bento-card__media-img,
  .solutions-hub-section .products-bento-card:focus-visible .products-bento-card__media-img {
    transform: none;
  }
}

/* Solutions page — scroll-scrub video (same structure/classes as standalone demo; scoped under .solutions-scrub) */
.solutions-scrub {
  --solutions-sv-header: calc(4rem + 1px);
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0a0a0f;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 993px) {
  .solutions-scrub {
    --solutions-sv-header: calc(4rem + 1px);
  }
}
.solutions-scrub .scroll-container {
  height: 500vh;
  position: relative;
}
.solutions-scrub .hero-sticky {
  position: sticky;
  top: var(--solutions-sv-header);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--solutions-sv-header));
  overflow: hidden;
  will-change: transform;
}
.solutions-scrub .hero-video {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.solutions-scrub .hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 15, 0.55) 100%),
    linear-gradient(
      to bottom,
      rgba(10, 10, 15, 0.35) 0%,
      transparent 25%,
      transparent 70%,
      rgba(10, 10, 15, 0.65) 100%
    );
}
.solutions-scrub .hero-brand {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.05s linear, transform 0.05s linear;
}
.solutions-scrub .hero-brand__logo-img {
  width: clamp(108px, 21vw, 240px);
  height: auto;
  display: block;
  /* Stronger drop shadow to make it pop against the video */
  filter: brightness(0) invert(1) drop-shadow(0 0 60px rgba(100, 180, 255, 0.6)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85));
}

.solutions-scrub .hero-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions-scrub.is-static .scroll-container {
  height: auto;
  min-height: 0;
}

.solutions-scrub.is-static .hero-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: clamp(20rem, 62vw, 42rem);
  max-height: calc(100vh - 4rem);
  aspect-ratio: 16 / 9;
}

.solutions-scrub.is-static .hero-video {
  display: none;
}

.solutions-scrub.is-static .hero-poster {
  display: block;
}

.solutions-scrub.is-static .hero-brand {
  opacity: 1;
  transform: none;
}

/* Breadcrumb (e.g. Components hub) */
.page-breadcrumb {
  margin-bottom: 1rem;
}
.page-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
.page-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.page-breadcrumb li + li::before {
  content: '/';
  font-weight: 400;
  color: color-mix(in srgb, var(--text-secondary) 55%, var(--border));
  margin-right: 0.15rem;
}
.page-breadcrumb a {
  color: var(--ci-blue);
  text-decoration: none;
}
.page-breadcrumb a:hover {
  text-decoration: underline;
}
.page-breadcrumb [aria-current='page'] {
  color: var(--text-primary);
  font-weight: 600;
}

/* Components hub (/products/components/): uniform card grid (no bento spans) */
.components-hub-section.products-hub-section .products-bento-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(18rem, auto);
}
@media (min-width: 640px) {
  .components-hub-section.products-hub-section .products-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .components-hub-section.products-hub-section .products-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(20rem, auto);
  }
}

/* Pillars row (product cards section): 3 columns, equal-height rows */
#product-slider .product-cards {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* #product-slider: icon / image to the left of label + title */
#product-slider .product-card {
  align-items: stretch;
  text-align: left;
  align-self: stretch;
  height: 100%;
}

#product-slider .product-card-body {
  align-items: stretch;
  text-align: left;
  flex: 1 1 auto;
  min-height: 0;
}

#product-slider .product-card-desc {
  flex: 1 1 auto;
}

#product-slider .product-card-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

#product-slider .product-card-heading-text {
  flex: 1;
  min-width: 0;
}

#product-slider .product-card-heading-text > :last-child {
  margin-bottom: 0.75rem;
}

#product-slider .product-card-label {
  margin-bottom: 0.35rem;
}

#product-slider .product-card-title {
  margin-bottom: 0.4rem;
}

#product-slider .product-card-heading-text .product-card-subtitle {
  margin-top: 0;
}

#product-slider .product-card-image-full {
  align-self: flex-start;
  width: auto;
  min-width: 0;
  aspect-ratio: auto;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  /* Match .product-card-title (1.125rem) so PNG icons can use em */
  font-size: 1.125rem;
  line-height: 1.3;
}

#product-slider .product-card-image-full img {
  width: auto;
  height: 1em;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block;
}

#product-slider .product-card-icon-frame {
  font-size: 1.125rem;
  width: 2.25em;
  height: 2.25em;
  box-sizing: border-box;
}

#product-slider .product-card-icon-frame .product-card-icon {
  font-size: 1em;
}

@media (max-width: 1000px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  #product-slider .product-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .product-cards { grid-template-columns: 1fr; }
  #product-slider .product-cards { grid-template-columns: 1fr; }
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(42, 67, 146, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card-image-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  border: 3px solid var(--ci-blue-soft);
  background: #fff;
  padding: 15px;
}

.product-card-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Systems carousel: placeholder when no <img> (avoids broken-image chrome) */
#komplettsysteme .product-card-image-circle--no-photo {
  padding: 0;
  background: linear-gradient(
    165deg,
    rgba(42, 67, 146, 0.12) 0%,
    rgba(255, 255, 255, 0.98) 48%,
    rgba(42, 67, 146, 0.08) 100%
  );
}

.product-card-image-full {
  align-self: stretch;
  width: 100%;
  aspect-ratio: 1.6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 15px;
  overflow: hidden;
  border-radius: 12px;
}

.product-card-image-full img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}

/* Our Solutions cards: icon in round CI blue frame, hover → CI magenta */
.product-card-icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--ci-blue);
  color: var(--ci-blue);
  transition: border-color 0.35s ease-in-out, color 0.35s ease-in-out;
}

.product-card-icon-frame .product-card-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.product-card:hover .product-card-icon-frame {
  border-color: var(--ci-magenta);
  color: var(--ci-magenta);
}

.product-card-body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
}

.product-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ci-blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-card-subtitle {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 0 1 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--ci-blue-gradient);
  box-shadow: 0 4px 14px rgba(42, 67, 146, 0.25);
  border-radius: var(--radius);
  text-decoration: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: auto;
  flex-shrink: 0;
  transform: translateY(0.5rem);
  transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out,
    background 0.25s ease-in-out, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease-in-out;
}

.product-card:hover .product-card-link {
  max-height: 4rem;
  opacity: 1;
  padding: 1rem 1.5rem 0.875rem;
  transform: translateY(0);
}

.product-card-link:hover {
  background: #6bcfec;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107, 207, 236, 0.3);
}

.product-card:hover .product-card-link:hover {
  transform: translateY(-1px);
}

/* #product-slider: no lift on hover (glow stays on .product-card--glow); CTA always visible */
#product-slider .product-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
}

#product-slider .product-card:focus-visible {
  outline: 2px solid var(--ci-blue);
  outline-offset: 2px;
}

#product-slider .product-card .product-card-link {
  max-height: none;
  opacity: 1;
  padding: 1rem 1.5rem 0.875rem;
  transform: none;
  overflow: visible;
}

#product-slider .product-card .product-card-link:hover {
  transform: translateY(-1px);
}

/* Mouseover glow border — #komplettsysteme product cards */
.product-cards-section .product-card--glow {
  --glow-base: 220;
  --glow-spread: 200;
  --glow-radius: 14;
  --glow-border: 3;
  --glow-backdrop: hsl(0 0% 60% / 0.12);
  --glow-border-size: calc(var(--glow-border) * 1px);
  --glow-spotlight-size: 200px;
  --glow-hue: calc(var(--glow-base) + (var(--xp, 0) * var(--glow-spread)));
  position: relative;
  touch-action: none;
  overflow: visible;
}

.product-cards-section .product-card--glow[data-glow] {
  background-image: radial-gradient(
    var(--glow-spotlight-size) var(--glow-spotlight-size) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--glow-hue) 100% 70% / 0.12), transparent
  );
  background-color: var(--glow-backdrop);
  background-size: calc(100% + (2 * var(--glow-border-size))) calc(100% + (2 * var(--glow-border-size)));
  background-position: 50% 50%;
  background-attachment: scroll;
  border: var(--glow-border-size) solid var(--glow-backdrop);
}

.product-cards-section .product-card--glow[data-glow]::before,
.product-cards-section .product-card--glow[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--glow-border-size) * -1);
  border: var(--glow-border-size) solid transparent;
  border-radius: calc(var(--glow-radius) * 1px);
  background-attachment: scroll;
  background-size: calc(100% + (2 * var(--glow-border-size))) calc(100% + (2 * var(--glow-border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
  opacity: var(--glow-active, 0);
  transition: opacity 0.2s ease;
}

.product-cards-section .product-card--glow[data-glow]::before {
  background-image: radial-gradient(
    calc(var(--glow-spotlight-size) * 0.75) calc(var(--glow-spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--glow-hue) 100% 50% / 1), transparent 100%
  );
  filter: brightness(2);
}

.product-cards-section .product-card--glow[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--glow-spotlight-size) * 0.5) calc(var(--glow-spotlight-size) * 0.5) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(0 100% 100% / 1), transparent 100%
  );
}

.product-cards-section .product-card--glow .product-card-glow-inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: calc(var(--glow-radius) * 1px);
  will-change: filter;
  opacity: 1;
  border: none;
  background: none;
}

.product-cards-section .product-card--glow:hover {
  border-color: var(--glow-backdrop);
}

.product-cards-section .product-card--glow > .product-card-image,
.product-cards-section .product-card--glow > .product-card-body {
  position: relative;
  z-index: 1;
}

/* Content section */
.content-section {
  padding: 5rem var(--page-gutter);
}

.content-section--alt {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-subtle) 100%);
}

/* HTML sitemap (plan-routes + nav anchors) */
.sykam-sitemap {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.sykam-sitemap__toc {
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.sykam-sitemap__toc-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.sykam-sitemap__toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sykam-sitemap__toc-list li {
  margin: 0;
}

.sykam-sitemap__toc-list a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.sykam-sitemap__toc-list a:hover {
  color: var(--ci-magenta);
  border-color: rgba(192, 38, 112, 0.35);
  background: var(--bg-card);
}

.sykam-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

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

@media (max-width: 640px) {
  .sykam-sitemap__grid {
    grid-template-columns: 1fr;
  }
}

.sykam-sitemap__card {
  scroll-margin-top: 6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.sykam-sitemap__ordered {
  margin: 0;
  padding: 0 0 0 1.25rem;
  list-style: decimal;
  color: var(--text-primary);
}

.sykam-sitemap__ordered > li {
  margin: 0.4rem 0;
  padding-left: 0.35rem;
  line-height: 1.5;
}

.sykam-sitemap__ordered > li::marker {
  color: var(--text-secondary);
  font-weight: 600;
}

.sykam-sitemap__ordered a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sykam-sitemap__ordered a:hover {
  color: var(--ci-magenta);
  border-bottom-color: rgba(192, 38, 112, 0.45);
}

.sykam-sitemap__ordered--systems {
  margin-bottom: 1.25rem;
}

.sykam-sitemap__column .sykam-sitemap__subhead:first-of-type {
  margin-top: 0;
}

.sykam-sitemap__card--wide {
  grid-column: 1 / -1;
}

.sykam-sitemap__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.sykam-sitemap__heading .fas {
  color: var(--ci-magenta);
  font-size: 1rem;
  opacity: 0.95;
}

.sykam-sitemap__subhead {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.25rem 0 0.65rem;
  color: var(--text-secondary);
}

.sykam-sitemap__subhead:first-child {
  margin-top: 0;
}

.sykam-sitemap__subhead a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.sykam-sitemap__subhead a:hover {
  color: var(--ci-magenta);
  border-bottom-color: rgba(192, 38, 112, 0.35);
}

.sykam-sitemap__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .sykam-sitemap__columns {
    grid-template-columns: 1fr;
  }
}

.sykam-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sykam-sitemap__list li {
  margin: 0.35rem 0;
  line-height: 1.45;
}

.sykam-sitemap__list a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sykam-sitemap__list a:hover {
  color: var(--ci-magenta);
  border-bottom-color: rgba(192, 38, 112, 0.45);
}

.sykam-sitemap__list--nested {
  margin: 0.35rem 0 0.5rem 0.85rem;
  padding-left: 0.65rem;
  border-left: 2px solid rgba(192, 38, 112, 0.2);
}

.sykam-sitemap__list--anchors {
  margin-top: 0.35rem;
  margin-left: 0.75rem;
  font-size: 0.875rem;
}

.sykam-sitemap__list--downloads {
  margin-top: 0.5rem;
}

.sykam-sitemap__list--anchors a {
  border-bottom-style: dashed;
  border-bottom-color: rgba(148, 163, 184, 0.28);
}

.sykam-sitemap__hint {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted, var(--text-secondary));
}

.sykam-sitemap__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.sykam-sitemap__current {
  color: var(--ci-magenta);
  font-weight: 600;
}

/* Contact — split map + glass card | form (home + company) */
.contact-section--reach {
  padding: 0;
  overflow: hidden;
  background: var(--bg);
}

.contact-section--reach .contact-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-subtle) 100%);
}

.contact-section--reach .contact-section__head .eyebrow {
  margin-bottom: 0.5rem;
}

.contact-section--reach .contact-section__head h2 {
  margin: 0;
  letter-spacing: -0.02em;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  min-height: min(640px, 92vh);
  align-items: stretch;
}

.contact-split__map {
  position: relative;
  min-height: 22rem;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  background: #070d1a;
  box-shadow: inset 0 0 120px rgba(4, 8, 20, 0.65);
}

/* Mapbox GL: container + controls (basemap styled in JS from dark-v11 + Sykam CI palette) */
.contact-split__map-gl {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
  min-width: 200px;
  background: #070d1a;
}

.contact-split__map-gl.mapboxgl-map {
  font-family: inherit;
}

.contact-split__map-gl .mapboxgl-canvas {
  outline: none;
}

.contact-split__map .mapboxgl-ctrl-group {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(16, 24, 44, 0.92);
}

.contact-split__map .mapboxgl-ctrl-group button {
  background: rgba(16, 24, 44, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-split__map .mapboxgl-ctrl-group button:hover {
  background: rgba(28, 40, 72, 0.95);
}

.contact-split__map .mapboxgl-ctrl-attrib {
  background: rgba(8, 12, 24, 0.82) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.625rem !important;
  max-width: calc(100% - 12px);
  border-radius: 4px 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
}

.contact-split__map .mapboxgl-ctrl-attrib a {
  color: rgba(158, 182, 255, 0.9) !important;
}

.contact-split__map .mapboxgl-ctrl-logo {
  opacity: 0.85;
}

.contact-split__mapbox-marker {
  z-index: 2;
}

.contact-split__map-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: linear-gradient(160deg, #070d1a 0%, #101b2e 55%, #0a1020 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  line-height: 1.55;
}

.contact-split__map-fallback strong {
  font-weight: 700;
  color: #fff;
}

.contact-split__map-fallback-hint {
  margin-top: 0.85rem;
  max-width: 28rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-split__map-fallback code {
  font-size: 0.75rem;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(42, 67, 146, 0.25);
  color: var(--ci-blue-light, #9eb6ff);
}

.contact-split__map-fallback a {
  color: var(--ci-blue-light, #9eb6ff);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.contact-split__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

.contact-split__pin--map {
  position: relative;
}

.contact-split__pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.45);
}

.contact-split__pin-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 22, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.contact-split__glass {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  left: 1.25rem;
  right: auto;
  bottom: auto;
  max-width: 22rem;
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(165deg, rgba(18, 28, 48, 0.55) 0%, rgba(10, 16, 32, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.55),
    0 1px 0 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(28px) saturate(1.15);
  -webkit-backdrop-filter: blur(28px) saturate(1.15);
}

.contact-split__glass-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.contact-split__glass-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-split__glass-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.contact-split__glass-ico {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-split__glass-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.contact-split__glass-list a:hover {
  color: var(--ci-blue-light);
  text-decoration-color: rgba(158, 182, 255, 0.85);
}

.contact-split__map-link {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
}

.contact-split__map-link a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-split__map-link a:hover {
  color: #fff;
}

.contact-split__form-wrap {
  background: #eceef2;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(26, 35, 50, 0.06);
}

.contact-split__form-stack {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Success replaces the form: full-area overlay in the same column as the form */
.contact-success-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(236, 238, 242, 0.97) 42%,
    rgba(228, 232, 242, 0.98) 100%
  );
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 24px 56px -20px rgba(42, 67, 146, 0.22);
}

.contact-success-overlay[hidden] {
  display: none !important;
}

.contact-success-overlay__panel {
  max-width: 26rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  outline: none;
}

.contact-success-overlay__dismiss {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border-color: rgba(42, 67, 146, 0.35);
  color: var(--ci-blue);
}

.contact-success-overlay__dismiss:hover,
.contact-success-overlay__dismiss:focus {
  border-color: var(--ci-blue);
  color: var(--ci-blue);
  background: rgba(42, 67, 146, 0.06);
}

.contact-form-message--split {
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}

.contact-form-message--split.contact-form-message--ok {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(240, 253, 244, 0.95);
}

.contact-form-message--split.contact-form-message--err {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(254, 242, 242, 0.95);
}

/* Success modal content (icon, title, copy — shared with overlay panel) */
.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 1rem 0.25rem;
}

.contact-form-success__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.15rem;
  filter: drop-shadow(0 4px 8px rgba(42, 67, 146, 0.15));
}

.contact-form-success__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #166534;
  letter-spacing: -0.01em;
}

.contact-form-success__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #14532d;
  max-width: 36ch;
}

.contact-form.contact-form--split {
  padding: 0;
}

.contact-form__title--split {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.contact-form__lead--support-ts {
  margin: -0.5rem 0 1.25rem 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 52ch;
}

.contact-form.contact-form--split label {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-form.contact-form--split input:not([type="checkbox"]),
.contact-form.contact-form--split textarea {
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 999px;
  padding: 0.65rem 1rem 0.7rem;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.contact-form.contact-form--split textarea {
  border-radius: 1.25rem;
  min-height: 8rem;
}

.contact-form.contact-form--split input:not([type="checkbox"]):hover,
.contact-form.contact-form--split textarea:hover {
  border-color: rgba(42, 67, 146, 0.28);
  box-shadow: none;
}

.contact-form.contact-form--split input:not([type="checkbox"]):focus,
.contact-form.contact-form--split textarea:focus {
  border-color: var(--ci-blue);
  box-shadow: 0 0 0 3px rgba(42, 67, 146, 0.12);
}

.contact-form.contact-form--split .contact-form__field--invalid label {
  color: #b91c1c;
}

.contact-form.contact-form--split .contact-form__field--invalid input:not([type="checkbox"]),
.contact-form.contact-form--split .contact-form__field--invalid textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.contact-form.contact-form--split .contact-form__field--invalid input:not([type="checkbox"]):focus,
.contact-form.contact-form--split .contact-form__field--invalid textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.22);
}

.contact-form label.contact-form__privacy-check--invalid {
  color: #b91c1c;
}

.contact-form label.contact-form__privacy-check--invalid input[type="checkbox"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}

.contact-form__submit--split {
  width: auto;
  min-width: 11rem;
  margin-top: 0;
  padding: 0.85rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.65rem;
  box-shadow: 0 8px 24px -6px rgba(42, 67, 146, 0.55);
}

.contact-form__submit--split:hover,
.contact-form__submit--split:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(42, 67, 146, 0.5);
}

.contact-form label.contact-form__privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-secondary);
  cursor: pointer;
  max-width: 22rem;
}

.contact-form label.contact-form__privacy-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  max-width: none;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--ci-blue);
  cursor: pointer;
  /* Reset .contact-form input underline styles; split form pill input must not apply here */
  padding: 0;
  border: 1px solid rgba(26, 35, 50, 0.35);
  border-radius: 0.2rem;
  background: #fff;
  box-shadow: none;
  appearance: auto;
  -webkit-appearance: auto;
}

.contact-form label.contact-form__privacy-check input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--ci-blue);
  box-shadow: 0 0 0 2px rgba(42, 67, 146, 0.2);
}

.contact-form label.contact-form__privacy-check a {
  color: var(--ci-blue);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.contact-form__privacy--note {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  max-width: none;
}

@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-split__form-wrap {
    border-left: none;
    border-top: 1px solid rgba(26, 35, 50, 0.06);
  }
}

@media (max-width: 520px) {
  .contact-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__submit--split {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form__submit--split:hover,
  .contact-form__submit--split:focus {
    transform: none;
  }
}

/* Legacy grid (unused by new markup; kept for older cached pages) */
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Support page: glass form column + technical copy */
.support-page-wrap {
  position: relative;
  isolation: isolate;
}

.support-page__parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/assets/img/support.webp') center / cover no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.support-page-wrap > .support-page {
  position: relative;
  z-index: 1;
  padding-block: calc(5rem + 30px);
  padding-inline: calc(2rem + 30px);
}

.support-page .section-head.section-head--left {
  margin-bottom: 1.5rem;
}

.support-page--glass {
  background: transparent;
}

/* Support copy column: white on photo + CI pink eyebrows & title rule */
.support-page__info--glass .section-head h2 {
  color: #fff;
}

.support-page__info--glass .eyebrow {
  color: var(--ci-magenta-light);
}

.support-page__info--glass .section-head.section-head--left .eyebrow {
  color: var(--ci-magenta-light);
}

.support-page__info--glass .section-head.section-head--left h2::after {
  background: var(--ci-magenta-gradient);
}

.support-page__glass-grid {
  align-items: stretch;
}

@media (min-width: 961px) {
  .support-page__glass-grid {
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .support-page__info--glass {
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
}

.support-page__info--glass .support-page__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.support-page__info--glass .support-page__gdpr {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.support-page__contact-label {
  margin-bottom: 0.75rem;
}

.support-page__details {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.support-page__info--glass .support-page__details dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.25rem;
}

.support-page__info--glass .support-page__details dd {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

.support-page__info--glass .support-page__details a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.support-page__info--glass .support-page__details a:hover {
  color: var(--ci-blue-light);
  text-decoration-color: rgba(158, 182, 255, 0.85);
}

/* Form column shell (static; page uses team photo in .support-page-wrap) */
.support-page__form-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(26, 35, 50, 0.2);
  background: transparent;
}

.support-page__form-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-form-message {
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
}

.support-form-message--ok {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(22, 101, 52, 0.25);
}

.support-form-message--err {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(127, 29, 29, 0.28);
}

.support-form--glass {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius-lg) + 4px);
  /* Dark tint + frosted blur visible through panel; top highlight reads as glass edge */
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.03) 38%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      165deg,
      rgba(24, 32, 52, 0.72) 0%,
      rgba(12, 18, 34, 0.78) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 28px 56px -16px rgba(0, 0, 0, 0.5),
    0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
    0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
}

.support-form__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.support-form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.35rem;
  border: none;
  padding: 0;
}

.support-form__subtitle {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.support-form__req {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-left: 0.15em;
}

.support-float-field {
  position: relative;
  margin-bottom: 1.35rem;
}

.support-float-field--textarea {
  margin-bottom: 1.5rem;
}

.support-float-field input,
.support-float-field textarea,
.support-float-field select {
  width: 100%;
  padding: 0.65rem 0 0.5rem;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-float-field textarea {
  display: block;
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.55;
}

.support-float-field select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) calc(50% - 0.15rem), calc(100% - 0.72rem) calc(50% - 0.15rem);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.support-float-field--select select:invalid {
  color: transparent;
}

.support-float-field--select select:focus:invalid {
  color: transparent;
}

.support-float-field select option {
  color: #1a2332;
  background: #fff;
}

.support-float-field label {
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.25s ease, color 0.25s ease, font-size 0.25s ease;
}

.support-float-field input:focus + label,
.support-float-field input:not(:placeholder-shown) + label,
.support-float-field textarea:focus + label,
.support-float-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.35rem) scale(0.82);
  color: rgba(158, 182, 255, 0.95);
}

.support-float-field--select:focus-within label,
.support-float-field--select.is-filled label {
  transform: translateY(-1.35rem) scale(0.82);
  color: rgba(158, 182, 255, 0.95);
}

.support-float-field input:hover,
.support-float-field textarea:hover,
.support-float-field select:hover {
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

.support-float-field input:focus,
.support-float-field textarea:focus,
.support-float-field select:focus {
  outline: none;
  border-bottom-color: var(--ci-blue-light);
  box-shadow: 0 1px 0 0 var(--ci-blue-light);
}

.support-form--glass .contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-form__submit-gl {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--ci-blue);
  box-shadow: 0 4px 20px rgba(42, 67, 146, 0.45);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.support-form__submit-gl:hover,
.support-form__submit-gl:focus {
  background: var(--ci-blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(42, 67, 146, 0.5);
}

.support-form__submit-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.support-form__submit-gl:hover .support-form__submit-icon,
.support-form__submit-gl:focus .support-form__submit-icon {
  transform: translateX(4px);
}

.support-form__privacy {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
  max-width: none;
}

.support-form--glass .support-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

@media (max-width: 600px) {
  .support-form--glass .support-form__row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-page__form-shell {
    background: transparent;
  }

  .support-page__parallax-bg {
    background-attachment: scroll;
  }
}

/* Support — product information PDFs */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.support-page__downloads-link {
  margin: 0 0 1.25rem;
}
.support-page__downloads-link-a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.125em;
  transition: color 0.2s, border-color 0.2s;
}
.support-page__downloads-link-a:hover,
.support-page__downloads-link-a:focus-visible {
  color: var(--ci-magenta-light);
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
.support-page__downloads-link-a .fa-file-pdf {
  color: var(--ci-magenta-light);
}

.support-pi-section {
  padding: 2rem var(--page-gutter) 5rem;
}

.support-pi-scroll-hint {
  display: none;
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Table scroll mode: hint whenever the downloads grid scrolls horizontally */
@media (max-width: 900px) {
  .support-pi-scroll-hint {
    display: block;
  }
}

.support-pi-table-wrap {
  max-width: 100%;
}

.support-pi-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.support-pi-toolbar--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.25rem;
  align-items: end;
}

.support-pi-toolbar-left {
  min-width: 0;
  max-width: 28rem;
}

.support-pi-toolbar--split .support-pi-search-label {
  display: block;
  margin-bottom: 0.35rem;
}

.support-pi-toolbar--split .support-pi-search {
  max-width: none;
}

.support-pi-toolbar--split .support-pi-search-status {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.support-pi-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 900px) {
  .support-pi-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    gap: 0.5rem;
    padding: 0.15rem 0 0.35rem;
    margin: 0 -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    scrollbar-width: thin;
  }
}

.support-pi-tab {
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: var(--touch-min, 44px);
  align-items: center;
  display: inline-flex;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.support-pi-tab:hover {
  border-color: rgba(0, 102, 178, 0.45);
  color: var(--ci-blue);
}

.support-pi-tab[aria-selected='true'] {
  background: var(--ci-blue);
  border-color: var(--ci-blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 102, 178, 0.25);
}

.support-pi-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.28);
}

.support-pi-search-label {
  flex: 1 1 100%;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0;
}

.support-pi-search {
  position: relative;
  flex: 1 1 16rem;
  max-width: 28rem;
}

.support-pi-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  opacity: 0.75;
  font-size: 0.9rem;
  pointer-events: none;
}

.support-pi-search__input {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.9rem 0.65rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.support-pi-search__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.75;
}
.support-pi-search__input:hover {
  border-color: rgba(0, 102, 178, 0.35);
}
.support-pi-search__input:focus {
  outline: none;
  border-color: var(--ci-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.15);
}

.support-pi-search-status {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  min-height: 1.25em;
}

.support-pi-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.support-pi-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.support-pi-table thead th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: rgba(0, 102, 178, 0.06);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.support-pi-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.support-pi-table tbody tr:last-child {
  border-bottom: none;
}
.support-pi-table tbody tr:hover {
  background: rgba(0, 102, 178, 0.04);
}

.support-pi-table td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  color: var(--text-primary);
}

.support-pi-table__doc {
  font-weight: 600;
  line-height: 1.4;
}
.support-pi-table__doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  color: var(--ci-blue);
  font-size: 1rem;
  vertical-align: -0.1em;
}
.support-pi-table__doc-title {
  vertical-align: middle;
}

.support-pi-table__category {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.support-pi-table__file code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  word-break: break-all;
}

.support-pi-table__size {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--text-secondary);
}

.support-pi-table__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.support-pi-table__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.support-pi-empty {
  margin: 1rem 0 0;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  background: rgba(212, 0, 122, 0.06);
  border: 1px dashed var(--border);
  border-radius: 10px;
  text-align: center;
}

.support-pi-help {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0, 102, 178, 0.06) 0%, rgba(212, 0, 122, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.support-pi-help__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--ci-blue);
  font-size: 1.35rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.support-pi-help__text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}
.support-pi-help__text p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.support-pi-help__mail {
  margin: 0 !important;
}
.support-pi-help__mail .btn {
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .support-pi-toolbar--split {
    grid-template-columns: 1fr;
  }
  .support-pi-toolbar-left {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .support-pi-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .support-pi-search {
    max-width: none;
  }
  .support-pi-help {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Table scroll mode (641px–900px): touch-friendly buttons; no fixed % width (avoids “Downl/oad” wrap) */
@media (min-width: 641px) and (max-width: 900px) {
  .support-pi-table__btn {
    min-height: var(--touch-min, 44px);
  }
}

/* Narrow phones: keep a real table; swipe horizontally (no stacked cards) */
@media (max-width: 640px) {
  .support-pi-section {
    padding: 1.5rem 1.25rem 3rem;
  }
  .support-pi-search__input {
    font-size: 16px; /* iOS: avoid automatic zoom on focus */
  }
  .support-pi-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  }
  .support-pi-table__btn {
    min-height: var(--touch-min, 44px);
    box-sizing: border-box;
  }
}

.contact-section__lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.contact-section__details {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-section__details dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-section__details dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-section__details a {
  color: var(--ci-blue);
  text-decoration: none;
}

.contact-section__details a:hover {
  text-decoration: underline;
}

.contact-section__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(42, 67, 146, 0.22);
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: linear-gradient(160deg, #d8dee8 0%, #e4e8f0 45%, #dbe2ee 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.contact-section__map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* OSM transport layer + CSS: blue-forward map on a light grey field (tiles stay inside iframe) */
  filter: grayscale(0.1) sepia(0.14) hue-rotate(192deg) saturate(0.58) brightness(1.05) contrast(0.92);
}

/* Contact form column: light grey card on main contact block */
.contact-section__right {
  background: #e8eaef;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 35, 50, 0.09);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

@media (max-width: 960px) {
  .contact-section__right {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

.contact-section__map-note {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
}

.contact-section__map-note a {
  color: var(--ci-blue);
  text-decoration: none;
}

.contact-section__map-note a:hover {
  text-decoration: underline;
}

.contact-form-message {
  padding: 0.85rem 0;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.contact-form-message--ok {
  color: var(--text-primary);
  border-bottom-color: rgba(34, 197, 94, 0.45);
}

.contact-form-message--err {
  color: var(--text-primary);
  border-bottom-color: rgba(239, 68, 68, 0.45);
}

.contact-form {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.25rem 0 0;
  box-shadow: none;
}

.contact-form__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  line-height: 1.2;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.contact-form__field {
  margin-bottom: 1.65rem;
}

.contact-form__field--message {
  margin-bottom: 1.75rem;
}

.contact-form label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.contact-form__req {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.15em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.5rem 0 0.65rem;
  border: none;
  border-bottom: 1px solid rgba(26, 35, 50, 0.18);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  box-sizing: border-box;
  background: transparent;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% - 0.2rem), calc(100% - 0.75rem) calc(50% - 0.2rem);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.contact-form select:hover {
  border-bottom-color: rgba(42, 67, 146, 0.35);
}

.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--ci-blue);
  box-shadow: 0 1px 0 0 var(--ci-blue);
}

.contact-form textarea {
  display: block;
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-bottom-color: rgba(42, 67, 146, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ci-blue);
  box-shadow: 0 1px 0 0 var(--ci-blue);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.35rem;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  box-shadow: none;
}

.contact-form__submit:hover,
.contact-form__submit:active,
.contact-form__submit:focus {
  transform: none;
  box-shadow: none;
}

.contact-form__privacy {
  margin: 1.35rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  max-width: 36rem;
}

.support-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
@media (max-width: 600px) {
  .support-form__row {
    grid-template-columns: 1fr;
  }
}

/* Feature grid (benefits) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  border-color: rgba(42, 67, 146, 0.2);
  box-shadow: var(--shadow);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ci-blue-soft);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--ci-blue);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Two-column content */
.two-col {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .two-col { gap: 1.75rem; }
}

.two-col h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.two-col p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Scroll-in without transform (transform breaks position:sticky for descendants) */
.reveal-fade-only {
  opacity: 0;
  transition: opacity 0.65s ease-out;
}
.reveal-fade-only.revealed {
  opacity: 1;
}

.uber-uns-section {
  overflow: visible;
}

.competence-single-source-section,
.production-under-one-roof-section {
  overflow: visible;
}

.competence-single-source-section .section-head.section-head--left,
.production-under-one-roof-section .section-head.section-head--left {
  margin-bottom: 0;
  max-width: 42ch;
}

.competence-single-source-section .section-head.section-head--left .eyebrow,
.production-under-one-roof-section .section-head.section-head--left .eyebrow {
  margin-bottom: 0.625rem;
  letter-spacing: 0.14em;
}

.competence-single-source-section .section-head.section-head--left h2,
.production-under-one-roof-section .section-head.section-head--left h2 {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.competence-single-source-section .section-head.section-head--left p,
.production-under-one-roof-section .section-head.section-head--left p {
  max-width: 42ch;
  margin-bottom: 1.125rem;
  line-height: 1.68;
}

.competence-single-source-section .section-head.section-head--left p:last-of-type,
.production-under-one-roof-section .section-head.section-head--left p:last-of-type {
  margin-bottom: 0;
}

.competence-single-source-section .competence-single-source-cta {
  margin-top: 1.75rem;
  text-align: left;
}

.production-under-one-roof-section .production-under-one-roof-cta {
  margin-top: 1.75rem;
  text-align: left;
}

.uber-uns-kompetenz-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.uber-uns-kompetenz-intro p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Glass stack cards (engineering + Über uns Kompetenz) */
.glass-stack-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.25rem) 0;
  overflow: visible;
}
.glass-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.glass-stack-left {
  position: sticky;
  top: 150px;
  height: fit-content;
}
.glass-stack-right {
  position: relative;
  padding-bottom: 20vh;
}
.glass-cards-stack {
  position: relative;
}
.glass-card-wrapper {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
  width: 100%;
}
.uber-uns-section .glass-cards-stack .glass-card-wrapper,
.competence-single-source-section .glass-cards-stack .glass-card-wrapper,
.production-under-one-roof-section .glass-cards-stack .glass-card-wrapper {
  height: 58vh;
}
.uber-uns-section .glass-cards-stack,
.competence-single-source-section .glass-cards-stack,
.production-under-one-roof-section .glass-cards-stack {
  padding-bottom: 18vh;
}
.glass-card {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  isolation: isolate;
  transform-origin: center top;
  /* No transform transition: GSAP ScrollTrigger scrubs scale; CSS transition fights scrub and jerks on reverse scroll */
}
.glass-card.CI-blue {
  --card-color-rgb: 42, 67, 146;
  --card-accent: var(--ci-blue);
  --card-accent-soft: var(--ci-blue-soft);
}
.glass-card.CI-magenta {
  --card-color-rgb: 176, 30, 117;
  --card-accent: var(--ci-magenta);
  --card-accent-soft: var(--ci-magenta-soft);
}
.glass-card.CI-blue.glass-card--solid .electric-border {
  display: none;
}
.glass-card.CI-blue.glass-card--solid .card-glass-content {
  background: var(--ci-blue);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px -8px rgba(42, 67, 146, 0.45);
}
.glass-card.CI-blue.glass-card--solid .card-body .icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.glass-card.CI-blue.glass-card--solid .card-body h3 {
  color: #fff;
}
.glass-card.CI-blue.glass-card--solid .card-body p {
  color: rgba(255, 255, 255, 0.9);
}
.glass-card.CI-blue.glass-card--solid .card-body li {
  color: rgba(255, 255, 255, 0.88);
}
.glass-card.CI-magenta.glass-card--solid .electric-border {
  display: none;
}
.glass-card.CI-magenta.glass-card--solid .card-glass-content {
  background: #b01e75;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px -8px rgba(176, 30, 117, 0.45);
}
.glass-card.CI-magenta.glass-card--solid .card-body .icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.glass-card.CI-magenta.glass-card--solid .card-body h3 {
  color: #fff;
}
.glass-card.CI-magenta.glass-card--solid .card-body p {
  color: rgba(255, 255, 255, 0.9);
}
.glass-card.CI-magenta.glass-card--solid .card-body li {
  color: rgba(255, 255, 255, 0.88);
}
.electric-border {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: rgba(var(--card-color-rgb), 0.15);
  z-index: -1;
  transition: background 0.3s ease;
}
.card-glass-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 24px -1px rgba(0, 0, 0, 0.05),
    0 1px 2px -1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: 3rem;
  /* Not `all`: scroll-scrub sets background every frame; transitioning background stacks badly when scrolling up */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-reflection,
.glass-shine,
.glass-texture {
  display: none;
}
.glass-card .card-body {
  position: relative;
  z-index: 2;
}
.glass-card .card-body .icon {
  width: 56px;
  height: 56px;
  background: var(--card-accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--card-color-rgb), 0.1);
}
.glass-card .card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.glass-card .card-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .glass-stack-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .glass-stack-left {
    position: static;
    text-align: center;
  }
  .glass-stack-left .section-head.section-head--left {
    text-align: center;
    max-width: none;
  }
  .glass-stack-left .section-head.section-head--left .eyebrow {
    text-align: center;
  }
  .glass-stack-left .section-head.section-head--left h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 24ch;
  }
  .glass-stack-left .section-head.section-head--left h2::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .glass-stack-left .section-head.section-head--left.revealed h2::after {
    animation: h2-line-reveal 0.55s ease-out 0.15s both;
  }
  .glass-stack-left .section-head.section-head--left p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 42ch;
  }
  .glass-stack-left .competence-single-source-cta,
  .glass-stack-left .production-under-one-roof-cta {
    text-align: center;
  }
  .glass-card {
    height: 320px;
  }
  /* Home: Competence — avoid clipping long card copy on tablet/narrow layouts */
  .competence-single-source-section .glass-card {
    height: auto;
    min-height: 280px;
    max-height: min(72vh, 560px);
  }
  .competence-single-source-section .card-glass-content {
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1.75rem;
  }
  .competence-single-source-section .glass-card .card-body p {
    font-size: 0.98rem;
    line-height: 1.58;
  }
  .production-under-one-roof-section .glass-card {
    height: auto;
    min-height: 300px;
    max-height: min(75vh, 560px);
  }
  .glass-card .card-body h3 {
    font-size: 1.5rem;
  }
}

/* Home: Competence cards — sticky stack + scroll scrub (same as desktop); tuned for small screens */
@media (max-width: 768px) {
  /* Tighten gap before #komplettsysteme: .content-section + .product-cards-section each used 5rem vertical padding */
  .competence-single-source-section.content-section {
    padding-bottom: 1.5rem;
  }
  .competence-single-source-section .glass-stack-grid {
    gap: 1.5rem;
  }
  /* Scroll range for GSAP ScrollTrigger (start/end on wrapper); slightly less than desktop vh */
  .competence-single-source-section .glass-stack-right {
    padding-bottom: 14vh;
  }
  .competence-single-source-section .glass-cards-stack {
    padding-bottom: 12vh;
  }
  .competence-single-source-section .glass-cards-stack .glass-card-wrapper {
    position: sticky;
    top: max(4.5rem, calc(env(safe-area-inset-top, 0px) + 3.25rem));
    height: auto;
    min-height: max(48vh, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .competence-single-source-section .glass-card {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .competence-single-source-section .card-glass-content {
    justify-content: flex-start;
    overflow: visible;
    padding: 1.35rem max(1.1rem, env(safe-area-inset-right)) 1.35rem
      max(1.1rem, env(safe-area-inset-left));
    border-radius: 20px;
  }
  .competence-single-source-section .glass-card .card-body .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .competence-single-source-section .glass-card .card-body .icon svg {
    width: 22px;
    height: 22px;
  }
  .competence-single-source-section .glass-card .card-body h3 {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    line-height: 1.25;
    margin-bottom: 0.6rem;
  }
  .competence-single-source-section .glass-card .card-body p {
    font-size: 0.9375rem;
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .competence-single-source-section .glass-card .card-body .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 380px) {
  .competence-single-source-section .card-glass-content {
    padding: 1.15rem max(0.85rem, env(safe-area-inset-right)) 1.15rem
      max(0.85rem, env(safe-area-inset-left));
  }
  .competence-single-source-section .glass-card .card-body p {
    font-size: 0.9rem;
  }
}

.about-image-frame {
  margin: 0;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Systems overview — zigzag product photos */
.page-systems-overview .about-image-frame {
  background: #fff;
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.zigzag-image-frame {
  overflow: hidden;
  aspect-ratio: 4/3;
  padding: 0;
  min-height: 0;
}
.zigzag-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Production page — zigzag/overview photos keep natural aspect (no forced 4:3 crop) */
.page-production-zigzag-images .zigzag-image-frame {
  aspect-ratio: unset;
}
.page-production-zigzag-images .zigzag-image-frame img {
  height: auto;
  object-fit: contain;
}

/* S 4120 column oven (accessory components) — contained image, white card */
.about-image-frame.zigzag-image-frame.zigzag-image-frame--fit-white {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.about-image-frame.zigzag-image-frame.zigzag-image-frame--fit-white img {
  object-fit: contain;
  object-position: center;
}

/* Systems hub & similar — full photo visible inside 4:3 frame (no cover crop) */
.about-image-frame.zigzag-image-frame.zigzag-image-frame--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.about-image-frame.zigzag-image-frame.zigzag-image-frame--contain img {
  object-fit: contain;
  object-position: center;
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 5rem var(--page-gutter);
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
}

.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cta-block p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

/* Footer — CI blue background, white text and links */
.site-footer {
  padding: 3rem calc(2rem + env(safe-area-inset-right, 0px)) calc(2rem + env(safe-area-inset-bottom, 0px)) calc(2rem + env(safe-area-inset-left, 0px));
  border-top: none;
  background: #3a56a5;
  color: #fff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--admin {
    grid-column: 1 / -1;
  }
}

/* Single column on narrow phones (canonical --bp-md 640px) */
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .logo img {
  height: 36px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col:not(.footer-col--admin) > ul > li {
  margin-bottom: 0.35rem;
}

.footer-col:not(.footer-col--admin) > ul > li:last-child {
  margin-bottom: 0;
}

.footer-col a {
  font-size: 0.9375rem;
  color: #fff;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

.footer-col a:hover {
  color: #fff;
  opacity: 0.85;
}

.footer-admin-links li {
  margin-bottom: 0.35rem;
}

.footer-col--admin {
  min-width: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

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

/* Footer buttons and icons — white on CI blue */
.site-footer .btn,
.site-footer button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}
.site-footer .btn:hover,
.site-footer button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
}
.site-footer svg,
.site-footer [class*="icon"] {
  color: #fff;
  fill: currentColor;
}

/* ---------- HPLC product page ---------- */
.page-hero {
  padding: 8rem var(--page-gutter) 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page-hero .container { grid-template-columns: 1fr; text-align: center; }
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ci-magenta);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-hero .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42ch;
}

@media (max-width: 900px) {
  .page-hero .lead { max-width: none; }
}

/* Page hero — h1 with same CI underline as section-head h2 (left-aligned; centered on narrow viewports) */
.page-hero .section-head.section-head--left {
  text-align: left;
  margin-bottom: 1rem;
}
.page-hero .section-head.section-head--left .eyebrow {
  text-align: left;
}
.page-hero .section-head.section-head--left h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text-primary);
  max-width: none;
  text-align: left;
  position: relative;
  padding-bottom: 0.875rem;
}
.page-hero .section-head.section-head--left h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--ci-magenta-gradient);
  border-radius: 2px;
  transform: translateX(0) scaleX(0);
  transform-origin: left center;
}
.page-hero .section-head.section-head--left.revealed h1::after {
  animation: h2-line-reveal-left 0.55s ease-out 0.15s both;
}
@media (max-width: 900px) {
  .page-hero .section-head.section-head--left,
  .page-hero .section-head.section-head--left .eyebrow,
  .page-hero .section-head.section-head--left h1 {
    text-align: center;
  }
  .page-hero .section-head.section-head--left h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .page-hero .section-head.section-head--left.revealed h1::after {
    animation: h2-line-reveal 0.55s ease-out 0.15s both;
  }
}

.zigzag-block .section-head.section-head--left {
  margin-bottom: 1.25rem;
}

.page-hero .product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero .product-image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.page-hero .product-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Config options */
.config-section {
  padding: 5rem 2rem;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 2rem auto 0;
}

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

.config-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.config-card:hover {
  border-color: rgba(42, 67, 146, 0.2);
  box-shadow: var(--shadow);
}

.config-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ci-blue);
}

.config-card ul {
  list-style: none;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.config-card li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.config-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  background: var(--ci-magenta);
  border-radius: 50%;
}

/* Application areas */
.app-areas {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-subtle) 100%);
}

.app-areas .section-head {
  margin-bottom: 2rem;
}

.app-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .app-list { grid-template-columns: 1fr; }
}

.app-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(42, 67, 146, 0.04);
}

.app-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ci-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Product CTA */
.product-cta {
  padding: 4rem 2rem;
  text-align: center;
}

.product-cta .btn {
  margin-top: 0.5rem;
}

/* ---------- Plan: global animations & utilities ---------- */
.fadeUp {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadeUp.revealed {
  opacity: 1;
  transform: translateY(0);
}
.fadeUp.delay-1 { transition-delay: 0.1s; }
.fadeUp.delay-2 { transition-delay: 0.2s; }
.fadeUp.delay-3 { transition-delay: 0.3s; }
.fadeUp.delay-4 { transition-delay: 0.4s; }

/* Typewriter cycling line */
.hero-typewriter-wrap {
  display: block;
  min-height: 1.4em;
  margin-top: 0.25rem;
}
.hero-typewriter-wrap .typed {
  color: var(--ci-blue);
  font-weight: 700;
}
.hero-typewriter-wrap .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--ci-magenta);
  margin-left: 2px;
  vertical-align: -0.15em;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Card hover lift (plan) */
.bento-card,
.plan-card,
.service-pillar-card,
.stepper-card,
.zigzag-block {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bento-card:hover,
.plan-card:hover,
.service-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(42, 67, 146, 0.25);
}
.bento-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px -16px rgba(42, 67, 146, 0.25);
}

/* Number ticker (stats) */
.ticker-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--ci-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Industries ticker scroll */
.industries-ticker {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-ticker-inner {
  display: flex;
  gap: 1rem;
  animation: ticker-scroll 40s linear infinite;
}
.industries-ticker-inner span {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 999px;
  border: 1px solid var(--border);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bento grid (4 buckets) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ci-blue-gradient);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.bento-card:hover::before {
  opacity: 0.06;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ci-blue);
  margin-bottom: 0.75rem;
}
.bento-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Vertical stepper (Analytics) */
.stepper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--ci-blue-soft);
}
.stepper--wide {
  max-width: none;
  margin: 0;
}
.stepper-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.stepper-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.stepper-title-row h3 {
  margin-bottom: 0;
}
.stepper-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ci-magenta);
  flex-shrink: 0;
}
.stepper-icon svg {
  width: 22px;
  height: 22px;
}
.stepper-card:last-child { margin-bottom: 0; }
.stepper-card::before {
  content: '';
  position: absolute;
  left: calc(-2.2rem + 1px);
  transform: translateX(-50%);
  top: 2.35rem; /* Aligned with icon/title row center */
  width: 14px;
  height: 14px;
  background: var(--ci-blue);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--ci-blue);
  animation: radar-pulse 3.5s ease-out infinite;
}

@keyframes radar-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--ci-blue); }
  50% { box-shadow: 0 0 0 4px var(--ci-blue); }
}
.stepper-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ci-blue);
  margin-bottom: 0.5rem;
}
.stepper-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Discovery Process Sticky Section */
.discovery-section {
  position: relative;
  overflow: visible;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.discovery-left {
  position: sticky;
  top: 8rem;
  height: fit-content;
}

.discovery-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4/5;
}

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

.discovery-right {
  padding-bottom: 4rem;
}

.discovery-right .section-head h2::after {
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.discovery-right .section-head.revealed h2::after {
  animation: h2-line-reveal-left 0.55s ease-out 0.15s both;
}

@keyframes h2-line-reveal-left {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .discovery-left {
    position: static;
    top: 0;
  }
  .discovery-image-frame {
    aspect-ratio: 16/9;
  }
  .discovery-right .section-head {
    text-align: center !important;
  }
  .discovery-right .section-head h2 {
    margin: 0 auto 1rem !important;
  }
  .discovery-right .section-head h2::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .discovery-right .section-head.revealed h2::after {
    animation: h2-line-reveal 0.55s ease-out 0.15s both;
  }
}

/* Zig-zag blocks */
.zigzag-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.zigzag-block[id] {
  scroll-margin-top: 5.5rem;
}
@media (max-width: 900px) {
  .zigzag-block[id] {
    scroll-margin-top: 7.5rem;
  }
}
.zigzag-block:nth-child(even) .zigzag-content { order: 2; }
.zigzag-block:nth-child(even) .zigzag-visual { order: 1; }
@media (max-width: 900px) {
  .zigzag-block { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .zigzag-block:nth-child(even) .zigzag-content,
  .zigzag-block:nth-child(even) .zigzag-visual { order: unset; }
}
.zigzag-block .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ci-magenta);
  margin-bottom: 0.75rem;
  text-align: left;
}
.zigzag-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.zigzag-block p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Systems overview: framed applications + spec lists (match .product-card border / surface — Engineering Excellence row) */
.zigzag-info-frame {
  margin: 1.25rem 0 0 0;
  padding: 1.125rem 1.25rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.zigzag-info-frame:first-child {
  margin-top: 0;
}
.zigzag-info-frame__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ci-magenta);
  margin: 0 0 0.5rem 0;
}
.zigzag-info-frame--spec .zigzag-info-frame__label {
  color: var(--ci-blue);
}
.zigzag-info-frame__body {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
}
.zigzag-info-frame__body:last-child {
  margin-bottom: 0;
}
.zigzag-info-frame dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.9375rem;
}
.zigzag-info-frame dl dt {
  font-weight: 600;
  color: var(--text-primary);
}
.zigzag-info-frame dl dd {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: break-word;
}
@media (max-width: 520px) {
  .zigzag-info-frame dl {
    grid-template-columns: 1fr;
  }
  .zigzag-info-frame dl dt {
    margin-top: 0.35rem;
  }
  .zigzag-info-frame dl dt:first-child {
    margin-top: 0;
  }
}

/* Systems overview: primary CTA + compact PDF brochure card */
.zigzag-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 520px) {
  .zigzag-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .zigzag-cta-row .brochure-card-btn {
    width: 100%;
    min-height: var(--touch-min, 44px);
    justify-content: center;
    box-sizing: border-box;
  }
}
.brochure-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.9rem 0.45rem 0.45rem;
  max-width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.brochure-card-btn:hover {
  border-color: rgba(42, 67, 146, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  color: var(--text-primary);
}
.brochure-card-btn:focus-visible {
  outline: 2px solid var(--ci-blue);
  outline-offset: 2px;
}
.brochure-card-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius);
  background: var(--ci-blue-soft);
  color: var(--ci-magenta);
  font-size: 1.05rem;
}
.brochure-card-btn__text {
  padding-right: 0.15rem;
  text-align: left;
}

/* Accessories overview — two-up images in one zigzag visual */
.zigzag-visual--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}
@media (max-width: 900px) {
  .zigzag-visual--dual {
    grid-template-columns: 1fr;
  }
}

/* Tabs / accordion — minimalist underline row */
.tabs-header {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.tabs-header button {
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tabs-header button:hover {
  color: var(--text-primary);
  background: var(--bg-subtle);
}
.tabs-header button.active {
  color: var(--ci-blue);
  font-weight: 600;
  border-bottom-color: var(--ci-blue);
}
.tabs-header:not(.tabs-header--pill):not(.tabs-header--instr-minimal) > button + button {
  border-left: 1px solid var(--border);
}

/* Pill / slider tabs — segmented control, hairline borders */
.tabs-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tabs-header-scroll {
  flex: 1;
  min-width: 0; /* allow scroll area to shrink so overflow triggers slider */
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-behavior: smooth;
  border-radius: 6px;
}
.tabs-header-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.tabs-header--pill {
  display: inline-flex;
  gap: 0;
  padding: 0;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: nowrap;
  min-width: 100%;
  overflow: hidden;
}

/* Overview tabs (analytics / engineering): compact row tabs (icon + title) + panel */
.tabs-wrap--overview {
  display: grid;
  grid-template-columns: minmax(11.5rem, clamp(12rem, 10rem + 6vw, 17.5rem)) minmax(0, 1fr);
  gap: clamp(0.65rem, 0.5rem + 0.5vw, 1rem) clamp(0.75rem, 0.5rem + 0.75vw, 1.15rem);
  align-items: start;
}
.tabs-wrap--overview .tabs-slider-container {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  margin-bottom: 0;
  gap: clamp(0.35rem, 0.2rem + 0.4vw, 0.5rem);
  width: 100%;
  max-width: min(100%, clamp(12rem, 10rem + 6vw, 17.5rem));
  align-self: stretch;
  align-items: flex-start;
}
.tabs-wrap--overview .tabs-slider-nav {
  display: none !important;
}
.tabs-wrap--overview .tabs-header-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: min(400px, 62vh);
  width: 100%;
  touch-action: pan-y;
  scroll-padding-block: 0.35rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 0;
}
.tabs-header--overview {
  display: flex;
  flex-direction: column;
  gap: clamp(0.28rem, 0.22rem + 0.28vw, 0.42rem);
  width: 100%;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}
.tabs-wrap--overview .tabs-header--overview > button {
  width: 100%;
  min-width: 0;
  min-height: clamp(2.35rem, 2.1rem + 0.5vw, 2.65rem);
  padding: clamp(0.28rem, 0.22rem + 0.2vw, 0.4rem) clamp(0.4rem, 0.3rem + 0.35vw, 0.55rem);
  border: 1px solid var(--border);
  border-radius: clamp(10px, 8px + 0.35vw, 14px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 10px 28px -24px rgba(15, 23, 42, 0.28);
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.4rem, 0.3rem + 0.25vw, 0.55rem);
  transform: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tabs-wrap--overview .tabs-header--overview > button:hover {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-subtle) 100%);
  border-color: rgba(42, 67, 146, 0.18);
  transform: none;
}
.tabs-wrap--overview .tabs-header--overview > button.active {
  background: linear-gradient(180deg, rgba(42, 67, 146, 0.10) 0%, rgba(42, 67, 146, 0.04) 100%);
  border-color: rgba(42, 67, 146, 0.28);
  box-shadow: 0 16px 32px -26px rgba(42, 67, 146, 0.55);
  transform: none;
}
.tabs-wrap--overview .tabs-header--overview > button.active::after {
  display: none;
}
.tabs-wrap--overview .tabs-header--overview > button .tab-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.55rem, 1.4rem + 0.45vw, 1.85rem);
  height: clamp(1.55rem, 1.4rem + 0.45vw, 1.85rem);
  border-radius: 999px;
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
  flex-shrink: 0;
}
.tabs-wrap--overview .tabs-header--overview > button .tab-card__icon svg {
  width: clamp(15px, 14px + 0.25vw, 17px);
  height: clamp(15px, 14px + 0.25vw, 17px);
  opacity: 0.9;
  margin: 0;
}
.tabs-wrap--overview .tabs-header--overview > button.active svg {
  opacity: 1;
}
.tabs-wrap--overview .tabs-header--overview > button .tab-card__body {
  display: block;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
}
.tabs-wrap--overview .tabs-header--overview > button .tab-card__label {
  font-size: clamp(0.65rem, 0.58rem + 0.28vw, 0.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
  word-break: normal;
  hyphens: none;
}
.tabs-wrap--overview .tabs-header--overview > button .tab-card__summary {
  display: none !important;
}
.tabs-wrap--overview .tab-panel {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: clamp(0.85rem, 0.55rem + 0.9vw, 1.35rem) clamp(0.75rem, 0.45rem + 0.85vw, 1.35rem) clamp(0.95rem, 0.65rem + 0.9vw, 1.45rem);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: clamp(16px, 14px + 0.5vw, 20px);
  box-shadow: 0 16px 36px -30px rgba(15, 23, 42, 0.45);
}
.tabs-wrap--overview .tab-panel > *:first-child {
  margin-top: 0;
}
.tabs-wrap--overview .tab-panel > *:last-child {
  margin-bottom: 0;
}
.tabs-wrap--overview .tab-panel .tab-panel-title {
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.5rem);
  margin-bottom: clamp(0.65rem, 0.45rem + 0.5vw, 1rem);
  line-height: 1.25;
}
/* Tab bar constrained to left column (50%) so slider is used when needed */
.discovery-grid--analytics-tabs {
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 4rem);
}
.discovery-grid--analytics-tabs .analytics-tabs-col {
  min-width: 0; /* allow column to shrink so scroll area gets limited width */
  max-width: 100%;
}
.discovery-grid--analytics-tabs .tabs-slider-nav {
  margin-top: 0;
  align-self: center;
}
/* Must override .discovery-grid--analytics-tabs — otherwise two columns persist below 900px and crush tabs + image */
@media (max-width: 900px) {
  .discovery-grid--analytics-tabs {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Analytics: [vertical tab rail + content] fused card | image (rail flush with content, no gutter) */
.analytics-tabs-integrated {
  width: 100%;
  min-width: 0;
}
.tabs-wrap--analytics-threecol.tabs-wrap--overview {
  grid-template-columns: minmax(0, 1fr) minmax(11rem, min(34vw, 24rem));
  grid-template-rows: auto;
  gap: clamp(0.75rem, 0.5rem + 0.85vw, 1.25rem);
  align-items: stretch;
  width: 100%;
}
.tabs-wrap--analytics-threecol .analytics-tabs-card {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: clamp(16px, 14px + 0.5vw, 20px);
  overflow: hidden;
  background: var(--bg-subtle);
  box-shadow: 0 16px 36px -30px rgba(15, 23, 42, 0.45);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail {
  flex: 0 0 clamp(10.25rem, 8.5rem + 4vw, 13.5rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--bg-subtle);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: min(28rem, 70vh);
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.tabs-wrap--analytics-threecol .tabs-header--overview.tabs-header--analytics-rail {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(0.2rem, 0.12rem + 0.25vw, 0.35rem);
  width: 100%;
  padding: clamp(0.45rem, 0.3rem + 0.4vw, 0.65rem);
  box-sizing: border-box;
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button {
  width: 100%;
  min-width: 0;
  margin: 0;
  justify-content: flex-start;
  text-align: left;
  border-radius: clamp(8px, 6px + 0.35vw, 11px);
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 0;
  padding: clamp(0.32rem, 0.22rem + 0.28vw, 0.45rem) clamp(0.4rem, 0.28rem + 0.35vw, 0.55rem);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button:hover {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(42, 67, 146, 0.12);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button.active {
  z-index: 2;
  background: var(--bg);
  border-color: transparent;
  box-shadow: none;
  margin-right: -1px;
  padding-right: calc(clamp(0.4rem, 0.28rem + 0.35vw, 0.55rem) + 1px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 2px;
  background: var(--ci-blue);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__label {
  font-size: clamp(0.62rem, 0.55rem + 0.25vw, 0.74rem);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.25;
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__icon {
  width: clamp(1.35rem, 1.2rem + 0.45vw, 1.6rem);
  height: clamp(1.35rem, 1.2rem + 0.45vw, 1.6rem);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__body {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__body .tab-panel {
  flex: 1 1 auto;
  min-height: 100%;
  margin: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: clamp(0.85rem, 0.55rem + 0.9vw, 1.35rem) clamp(0.85rem, 0.55rem + 0.95vw, 1.4rem) clamp(0.95rem, 0.65rem + 0.9vw, 1.45rem);
}
.tabs-wrap--analytics-threecol .analytics-tabs-card__body .tab-panel .tab-panel-title {
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.5rem);
}
.tabs-wrap--analytics-threecol .analytics-tab-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  min-height: min(22rem, 52vh);
  border-radius: clamp(14px, 12px + 0.45vw, 18px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  box-shadow: 0 16px 36px -30px rgba(15, 23, 42, 0.45);
}
.tabs-wrap--analytics-threecol .analytics-tab-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.tabs-wrap--analytics-threecol .analytics-tab-visual__img.active {
  opacity: 1;
  z-index: 1;
}
/* Mobile / small tablet: no hero image — fused card only, vertical rail + content */
@media (max-width: 960px) {
  .analytics-tabs-integrated {
    overflow-x: clip;
    max-width: 100%;
  }
  .tabs-wrap--analytics-threecol.tabs-wrap--overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .tabs-wrap--analytics-threecol .analytics-tab-visual {
    display: none !important;
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: clamp(12px, 10px + 0.55vw, 18px);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail {
    flex: 0 0 clamp(4.25rem, 12vw, 5.25rem);
    max-width: clamp(4.25rem, 12vw, 5.25rem);
    width: auto;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header-scroll {
    max-height: min(65vh, 26rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  .tabs-wrap--analytics-threecol .tabs-header--overview.tabs-header--analytics-rail {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    padding: clamp(0.35rem, 0.25rem + 0.35vw, 0.55rem);
    gap: clamp(0.35rem, 0.22rem + 0.4vw, 0.5rem);
  }
  /* Icon-only tabs: text stays available to screen readers */
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__body {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button {
    width: 100%;
    min-width: 0;
    min-height: 3.5rem;
    padding: clamp(0.45rem, 0.3rem + 0.45vw, 0.65rem);
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__icon {
    width: clamp(2.35rem, 2rem + 1.1vw, 2.85rem);
    height: clamp(2.35rem, 2rem + 1.1vw, 2.85rem);
    flex-shrink: 0;
    margin: 0;
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__icon svg {
    width: clamp(1.35rem, 1.15rem + 0.85vw, 1.65rem);
    height: clamp(1.35rem, 1.15rem + 0.85vw, 1.65rem);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__body .tab-panel {
    padding: clamp(0.65rem, 0.42rem + 0.75vw, 1.05rem) clamp(0.55rem, 0.38rem + 0.65vw, 0.95rem) clamp(0.75rem, 0.5rem + 0.75vw, 1.1rem);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__body .tab-panel .tab-panel-title {
    font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.25rem);
    margin-bottom: clamp(0.45rem, 0.3rem + 0.45vw, 0.65rem);
  }
}
@media (max-width: 380px) {
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail {
    flex-basis: clamp(3.85rem, 20vw, 4.5rem);
    max-width: clamp(3.85rem, 20vw, 4.5rem);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button {
    min-height: 3.25rem;
    padding: clamp(0.35rem, 0.22rem + 0.4vw, 0.5rem);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__icon {
    width: clamp(2.1rem, 1.85rem + 0.9vw, 2.5rem);
    height: clamp(2.1rem, 1.85rem + 0.9vw, 2.5rem);
  }
  .tabs-wrap--analytics-threecol .analytics-tabs-card__rail .tabs-header--overview > button .tab-card__icon svg {
    width: clamp(1.2rem, 1.05rem + 0.65vw, 1.45rem);
    height: clamp(1.2rem, 1.05rem + 0.65vw, 1.45rem);
  }
}

.tabs-slider-nav {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
}
.tabs-slider-nav:hover:not(.disabled) {
  color: var(--ci-blue);
  background: var(--bg-subtle);
  border-color: rgba(42, 67, 146, 0.25);
}
.tabs-slider-nav svg {
  width: 18px;
  height: 18px;
}
.tabs-slider-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
.tabs-slider-container:hover .tabs-slider-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
.tabs-slider-nav.disabled {
  opacity: 0.25 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.tabs-header--pill button {
  position: relative;
  margin-bottom: 0;
  padding: 0.55rem 1.05rem;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  color: var(--text-secondary);
  background: transparent;
}
.tabs-header--pill button:last-child {
  border-right: none;
}
.tabs-header--pill button:hover {
  color: var(--text-primary);
  background: var(--bg-subtle);
}
.tabs-header--pill button.active {
  color: var(--ci-blue);
  font-weight: 600;
  background: var(--bg-subtle);
  box-shadow: none;
}
.tabs-header--pill button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ci-blue);
}

/* Tab Icon Styling */
.tabs-header button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tabs-header button svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.55;
  stroke-width: 2;
}
.tabs-header button:hover svg {
  opacity: 0.85;
}
.tabs-header button.active svg {
  opacity: 1;
  color: var(--ci-blue);
}
.tabs-header--pill button.active svg {
  color: var(--ci-blue);
}

/* Instrumentation — tab row layout (rail above card; see .instr-tabbed-card) */
.tabs-header--instr-minimal {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0.3rem;
  min-width: 100%;
  margin-bottom: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.tabs-header--instr-minimal button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tab-panel {
  display: none;
  padding: 1.5rem 0;
  animation: tabFade 0.3s ease-out;
}
.tab-panel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ci-blue);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.tab-panel-copy {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
.tab-panel-copy:not(:last-child) {
  margin-bottom: 1rem;
}
.tab-panel.active {
  display: block;
}

/* Fade & Slide Animation */
.tabs-wrap--slide .tab-panel.active {
  animation: tabFadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@keyframes tabFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tabFadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* OEM Modules tabbed product slider (engineering page) */
.discovery-grid--oem-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}
.oem-content-col {
  max-width: 720px;
}
.oem-spec-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.oem-slider-col {
  min-width: 0;
}
.tabs-wrap--oem .tabs-slider-nav {
  margin-top: 0;
  align-self: center;
}

/* OEM product cards: horizontal strip + side arrows (also advances tabs at ends) */
.oem-products-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  min-width: 0;
}
.oem-products-slider-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  outline: none;
}
.oem-products-slider-scroll:focus-visible {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ci-blue);
  border-radius: var(--radius);
}
.oem-products-slider-scroll::-webkit-scrollbar {
  height: 6px;
}
.oem-products-slider-scroll::-webkit-scrollbar-track {
  background: var(--bg-subtle);
  border-radius: 3px;
}
.oem-products-slider-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.oem-products-slider {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: min-content;
}

.oem-products-slider-nav {
  width: 0;
  height: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: var(--shadow-soft);
  transition: width 0.2s ease, height 0.2s ease, color var(--transition), opacity var(--transition),
    border-color var(--transition), box-shadow var(--transition);
}
.oem-products-slider-nav svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.oem-products-slider-nav.is-visible {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0 0.35rem;
  padding: 0;
  border: 1px solid var(--border);
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.oem-products-slider-container:hover .oem-products-slider-nav.is-visible {
  opacity: 1;
  visibility: visible;
}
.oem-products-slider-nav:hover:not(.disabled) {
  color: var(--ci-blue);
  border-color: rgba(42, 67, 146, 0.35);
}
.oem-products-slider-nav.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 560px) {
  .oem-products-slider-nav.is-visible {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

.oem-product-card {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.oem-product-card:hover {
  border-color: rgba(42, 67, 146, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.oem-product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  padding: 15px;
  margin-bottom: 0.75rem;
}
.oem-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-product-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.oem-product-card:hover .oem-product-card-title {
  color: var(--ci-blue);
}

@media (max-width: 900px) {
  .discovery-grid--oem-tabs {
    grid-template-columns: 1fr;
  }
  .oem-content-col {
    max-width: none;
  }
  .oem-product-card {
    flex: 0 0 160px;
  }
}

/* Sticky sidebar layout */
.sidebar-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
  min-width: 0;
  width: 100%;
}
/* Grid items default to min-width: auto — wide tab rows / cards would expand the track past the viewport */
.sidebar-layout > * {
  min-width: 0;
}
.sidebar-nav {
  position: sticky;
  top: 6rem;
}
.sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.sidebar-nav a:hover {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
}
.sidebar-nav a.active {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
  font-weight: 600;
}

@media (max-width: 900px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 2rem;
    gap: 1.5rem;
  }
  /* Horizontal section jump links — edge-to-edge scroll strip under the fixed header */
  .sidebar-nav {
    top: 4.75rem;
    z-index: 25;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: thin;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0.5rem 1rem 0.6rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px -14px rgba(42, 67, 146, 0.2);
  }
  .sidebar-nav::-webkit-scrollbar {
    height: 4px;
  }
  .sidebar-nav::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
  }
  .sidebar-nav a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.45rem 0.8rem;
    font-size: 0.8125rem;
    line-height: 1.2;
    border-radius: 999px;
  }
}

.instr-section {
  margin-bottom: 3rem;
  scroll-margin-top: 5.5rem;
}
@media (max-width: 900px) {
  .instr-section {
    scroll-margin-top: 7.5rem;
  }
}

#downloads,
#support-contact {
  scroll-margin-top: 5.5rem;
}
@media (max-width: 900px) {
  #downloads,
  #support-contact {
    scroll-margin-top: 7.5rem;
  }
}
.instr-section__intro {
  color: var(--text-secondary);
  margin: 0 0 1.25rem 0;
  line-height: 1.65;
  max-width: 72ch;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.instr-section--tabs {
  padding-bottom: 0.5rem;
  overflow-x: hidden;
  max-width: 100%;
}
.instr-tabs {
  margin-top: 0.25rem;
  min-width: 0;
  max-width: 100%;
}
.instr-tabs .instr-tabbed-card {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.instr-tabbed-card__tabs {
  max-width: 100%;
  min-width: 0;
}

/* Instrumentation — tab rail sits above the card (not inside the border) */
.instr-tabbed-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.instr-tabbed-card__tabs {
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
.instr-tabbed-card__tabs .tabs-slider-container {
  margin-bottom: 0 !important;
  padding: 0 0.35rem 0 0;
  align-items: flex-end;
  gap: 0.3rem;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
/* Hidden prev/next still reserved 32px each in flex — collapse when not scrollable */
.instr-tabbed-card .tabs-slider-nav:not(.is-visible) {
  display: none;
}
.instr-tabbed-card .tabs-slider-nav.is-visible {
  display: flex;
}
.instr-tabbed-card .tabs-header-scroll {
  border-radius: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
/* Folder tabs on page background; active tab merges into card below */
.instr-tabbed-card .tabs-header--instr-minimal button {
  position: relative;
  z-index: 0;
  margin-bottom: 0;
  padding: 0.48rem 0.95rem 0.52rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg-subtle);
  background: color-mix(in srgb, var(--bg-card) 55%, var(--bg-subtle));
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.instr-tabbed-card .tabs-header--instr-minimal button:hover {
  color: var(--text-primary);
  background: var(--bg-card);
  background: color-mix(in srgb, var(--bg-card) 78%, var(--bg-subtle));
}
.instr-tabbed-card .tabs-header--instr-minimal button.active {
  z-index: 2;
  margin-bottom: -1px;
  padding-bottom: calc(0.52rem + 1px);
  color: var(--ci-blue);
  font-weight: 600;
  background: var(--bg-card);
  border-color: var(--border);
  border-bottom: 1px solid var(--bg-card);
}
.instr-tabbed-card .tabs-slider-nav {
  width: 28px;
  height: 28px;
  align-self: center;
  margin-bottom: 0.35rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-secondary);
}
.instr-tabbed-card .tabs-slider-nav:hover:not(.disabled) {
  color: var(--ci-blue);
  background: var(--ci-blue-soft);
  border-color: transparent;
}

/* Instrumentation — tablet / phone: touch-friendly tabs, no horizontal page overflow */
@media (max-width: 900px) {
  .instr-section h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  }
  .instr-section__intro {
    font-size: 0.9375rem;
    max-width: none;
  }
  .instr-tabbed-card__tabs .tabs-slider-container {
    gap: 0.2rem;
    padding: 0 0.1rem 0 0;
  }
  .instr-tabbed-card .tabs-header-scroll {
    scroll-padding-inline: 0.75rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    /* Hint that tabs scroll horizontally (base rule hides scrollbars) */
    scrollbar-width: thin;
  }
  .instr-tabbed-card .tabs-header-scroll::-webkit-scrollbar {
    display: block;
    height: 5px;
  }
  .instr-tabbed-card .tabs-header-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
  }
  .instr-tabbed-card .tabs-slider-nav {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-bottom: 0;
  }
  .instr-tabbed-card .tabs-header--instr-minimal button {
    min-height: 44px;
    padding: 0.45rem 0.85rem 0.5rem;
    font-size: 0.8125rem;
  }
  .instr-tabbed-card .tabs-header--instr-minimal button.active {
    padding-bottom: calc(0.5rem + 1px);
  }
  .tabs-wrap--instr .instr-product-showcase__content h3 {
    font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  }
}

@media (max-width: 640px) {
  .tabs-wrap--instr {
    border-radius: var(--radius-lg);
  }
  .instr-tabbed-card .tabs-header--instr-minimal button:first-child {
    margin-left: 0.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabs-wrap--instr.tabs-wrap--slide .tab-panel.active {
    animation: tabFade 0.2s ease-out;
  }
}

/* Card frame — panels only */
.tabs-wrap--instr {
  position: relative;
  z-index: 0;
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  box-shadow: 0 1px 2px rgba(42, 67, 146, 0.04);
  overflow: hidden;
  background: var(--bg-card);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.tabs-wrap--instr .tab-panel {
  padding: 0;
}
.tabs-wrap--instr .instr-product-showcase {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1rem, 2vw, 1.35rem) clamp(1.25rem, 2.5vw, 1.65rem);
}
.tabs-wrap--instr .instr-product-showcase__visual {
  border-color: rgba(42, 67, 146, 0.1);
  box-shadow: none;
}
.tabs-wrap--instr .instr-product-showcase__content h3 {
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.instr-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.instr-product-showcase__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  padding: 15px;
  aspect-ratio: 4 / 3;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.instr-product-showcase__visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.instr-product-showcase__content {
  min-width: 0;
  max-width: 100%;
}
.instr-product-showcase__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--ci-blue);
  margin: 0 0 0.65rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.instr-product-showcase__content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 768px) {
  .instr-product-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0.9rem 1.2rem;
  }
  .instr-product-showcase__visual {
    max-height: min(52vw, 240px);
    aspect-ratio: 16 / 10;
    padding: 12px;
  }
  .instr-product-showcase__content p {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  .tabs-wrap--instr .instr-product-showcase {
    padding: 1rem 0.85rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .instr-product-showcase__visual {
    max-height: min(56vw, 220px);
    aspect-ratio: 4 / 3;
  }
  .instr-tabbed-card .tabs-header--instr-minimal button {
    font-size: 0.8125rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
}
.instr-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ci-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ci-blue-soft);
}
.instr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.instr-card:hover {
  border-color: rgba(42, 67, 146, 0.2);
  box-shadow: var(--shadow-soft);
}
.instr-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.instr-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Services grid */
.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .service-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .service-pillars { grid-template-columns: 1fr; }
}
.service-pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.service-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ci-blue);
  margin-bottom: 0.75rem;
}
.service-pillar-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Applications filter */
.app-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.app-filters button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.app-filters button:hover,
.app-filters button.active {
  background: var(--ci-blue-soft);
  color: var(--ci-blue);
  border-color: var(--ci-blue);
}
.app-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.app-card:hover {
  border-color: rgba(42, 67, 146, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.app-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ci-blue);
  margin-bottom: 0.5rem;
}
.app-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer dark — home page grid layout (colors inherited from .site-footer) */
.site-footer.footer-dark {
  background: #3a56a5;
}
.site-footer.footer-dark .footer-inner {
  grid-template-columns: 2fr minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.1fr);
}
.site-footer.footer-dark .footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .site-footer.footer-dark .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer.footer-dark .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Callout / quote block */
.callout-block {
  background: var(--ci-blue-soft);
  border-left: 4px solid var(--ci-blue);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.callout-block p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}
.why-different-block {
  background: var(--ci-magenta-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  border: 1px solid rgba(176, 30, 117, 0.15);
}
.why-different-block p {
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

/* Production page — Under One Roof: taller scrollable glass cards, dense copy */
.production-under-one-roof-section .glass-card {
  height: auto;
  min-height: 380px;
  max-height: min(68vh, 600px);
}
.production-under-one-roof-section .card-glass-content {
  justify-content: flex-start;
  padding: 2rem 2.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.production-under-one-roof-section .glass-card .card-body h3 {
  font-size: 1.35rem;
}
.production-under-one-roof-section .glass-card .card-body p,
.production-under-one-roof-section .glass-card .card-body li {
  font-size: 0.9375rem;
  line-height: 1.55;
}
.production-under-one-roof-section .glass-card:not(.glass-card--solid) .card-body ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}
.production-under-one-roof-section .glass-card:not(.glass-card--solid) .card-body li {
  margin-bottom: 0.4rem;
}
.production-under-one-roof-section .glass-card--solid .card-body ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}
.production-under-one-roof-section .glass-card--solid .card-body li {
  margin-bottom: 0.4rem;
}
.production-under-one-roof-section .glass-card .card-body ul + p {
  margin-top: 0.75rem;
}
.production-under-one-roof-section .glass-card .card-body p + p {
  margin-top: 0.65rem;
}
.zigzag-block .production-zigzag-subhead {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.35rem 0 0.65rem;
}
.zigzag-block .production-zigzag-subhead:first-of-type {
  margin-top: 0.65rem;
}

/* Blog (public list + post + sidebar) */
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ci-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}
.blog-back:hover {
  text-decoration: underline;
}
.blog-post-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.blog-post-back-wrap {
  margin: 0 0 0.65rem;
}
.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}
.blog-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.blog-date--article {
  margin-top: 0.65rem;
  margin-bottom: 0;
}
.blog-date--card {
  margin-top: 0;
  margin-bottom: 0.35rem;
}
.blog-layout {
  padding: 2.5rem 0 4rem;
  background: var(--bg-subtle);
}
/* Clear fixed .site-header (logo ~40px + vertical padding) */
.blog-layout--list,
.blog-layout--post {
  padding-top: calc(5.25rem + env(safe-area-inset-top, 0px));
}
@media (min-width: 993px) {
  .blog-layout--list,
  .blog-layout--post {
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
  }
}
.blog-layout-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2.75rem;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-layout-inner {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    order: 2;
  }
  .blog-main {
    order: 1;
  }
}
.blog-main {
  min-width: 0;
}
.blog-narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.blog-empty {
  color: var(--text-secondary);
  margin: 0;
}
.blog-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-index--cards {
  gap: 2rem;
}
.blog-index-item {
  margin: 0;
}
/* Blog index: full-bleed image card with overlay copy + read more */
.blog-card--cover {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.blog-card--cover:hover {
  border-color: rgba(42, 67, 146, 0.28);
  box-shadow: var(--shadow);
}
.blog-card-link--cover {
  position: relative;
  display: block;
  min-height: min(52vw, 400px);
  text-decoration: none;
  color: inherit;
}
@media (min-width: 993px) {
  .blog-card-link--cover {
    min-height: 380px;
  }
}
.blog-card-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog-card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}
.blog-card-link--cover:hover .blog-card-cover-img {
  transform: scale(1.06);
}
.blog-card-cover-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #2a4392 0%, #1e2f66 40%, rgba(76, 175, 80, 0.35) 100%);
}
.blog-card-cover-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 28, 0.92) 0%,
    rgba(10, 14, 28, 0.55) 38%,
    rgba(10, 14, 28, 0.2) 62%,
    rgba(10, 14, 28, 0.05) 100%
  );
  pointer-events: none;
}
.blog-card-cover-content {
  position: relative;
  z-index: 2;
  min-height: min(52vw, 400px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 2rem;
  max-width: 44rem;
}
@media (min-width: 993px) {
  .blog-card-cover-content {
    min-height: 380px;
    padding: 2rem 2.25rem 2.25rem;
  }
}
.blog-card-cover-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}
.blog-card-cover-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.65rem;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}
.blog-card-cover-excerpt {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-cover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  pointer-events: none;
}
.blog-card-link--cover:hover .blog-card-cover-btn {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fff;
  color: var(--ci-blue);
  transform: translateY(-1px);
}
.blog-sidebar-block {
  margin-bottom: 2rem;
}
.blog-sidebar-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}
.blog-sidebar-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.blog-sidebar-featured:hover {
  border-color: rgba(42, 67, 146, 0.22);
  box-shadow: var(--shadow);
}
.blog-sidebar-featured-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-subtle);
  overflow: hidden;
}
.blog-sidebar-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-sidebar-featured:hover .blog-sidebar-featured-media img {
  transform: scale(1.04);
}
.blog-sidebar-featured-media--empty {
  min-height: 140px;
  background: linear-gradient(135deg, var(--ci-blue-soft) 0%, rgba(76, 175, 80, 0.1) 100%);
}
.blog-sidebar-featured-body {
  display: block;
  padding: 1rem 1.15rem 1.2rem;
}
.blog-sidebar-featured-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.blog-sidebar-featured:hover .blog-sidebar-featured-title {
  color: var(--ci-blue);
}
.blog-sidebar-featured-excerpt {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.blog-sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.blog-sidebar-recent li {
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.blog-sidebar-recent-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 0.65rem 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.blog-sidebar-recent-link:hover {
  color: var(--ci-blue);
  padding-left: 0.2rem;
}
.blog-sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}
.blog-sidebar-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.blog-sidebar-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
.blog-sidebar-text:last-child {
  margin-bottom: 0;
}
.blog-sidebar-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.blog-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
.blog-sidebar-links li {
  margin-bottom: 0.45rem;
}
.blog-sidebar-links a {
  color: var(--ci-blue);
  text-decoration: none;
}
.blog-sidebar-links a:hover {
  text-decoration: underline;
}
.blog-article {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem 2.5rem;
  box-shadow: var(--shadow-soft);
}
.blog-featured {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-featured img {
  width: 100%;
  display: block;
  vertical-align: middle;
  max-height: 420px;
  object-fit: cover;
}
.blog-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}
.rte-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
}
.rte-content h1,
.rte-content h2,
.rte-content h3 {
  font-family: var(--font-display);
  margin: 1.5rem 0 0.65rem;
  line-height: 1.25;
}
.rte-content h1:first-child,
.rte-content h2:first-child,
.rte-content h3:first-child {
  margin-top: 0;
}
.rte-content p {
  margin: 0 0 1rem;
}
.rte-content ul,
.rte-content ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.rte-content blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--ci-blue-soft);
  background: var(--bg-subtle);
  color: var(--text-secondary);
}
.rte-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
}
.rte-content pre {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rte-content pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  word-break: normal;
}
.rte-content a {
  color: var(--ci-blue);
}

/* Blog: category filter, block output */
.blog-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  row-gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.blog-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}
.blog-cat-pill:hover {
  border-color: var(--ci-blue);
  color: var(--ci-blue);
}
.blog-cat-pill.is-active {
  background: var(--ci-blue);
  border-color: var(--ci-blue);
  color: #fff;
}
.blog-meta-terms {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.blog-meta-label {
  display: inline-block;
  font-weight: 600;
  margin-right: 0.35rem;
  color: var(--text-muted);
}
.blog-meta-list {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-meta-list li {
  display: inline;
}
.blog-meta-list li:not(:last-child)::after {
  content: ', ';
}
.blog-meta-list a {
  color: var(--ci-blue);
  text-decoration: none;
}
.blog-meta-list a:hover {
  text-decoration: underline;
}
.blog-meta-list--tags li:not(:last-child)::after {
  content: ' · ';
}
.blog-body-blocks .blog-block-image {
  margin: 1.25rem 0;
}
.blog-body-blocks .blog-block-image figcaption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.blog-block-warning {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 152, 0, 0.45);
  background: rgba(255, 152, 0, 0.08);
}
.blog-block-warning .blog-warning-title {
  display: block;
  margin-bottom: 0.35rem;
}
.blog-embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  margin: 1rem 0;
}
.blog-embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.blog-embed-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.35rem 0 1rem;
}

/* —— PDF viewer modal (brochure-card-btn + .sykam-pdf-modal links) —— */
.sykam-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  font-family: var(--font-body);
}

.sykam-pdf-modal.is-open {
  display: flex;
}

.sykam-pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sykam-pdf-modal__sheet {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1120px, 100%);
  height: 80vh;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 28px 80px -24px rgba(42, 67, 146, 0.35), var(--shadow-soft);
  overflow: hidden;
}

.sykam-pdf-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}

.sykam-pdf-modal__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ci-blue);
  font-family: var(--font-display);
}

.sykam-pdf-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  max-width: min(52ch, 70vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sykam-pdf-modal__head-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sykam-pdf-modal__head-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--ci-blue);
  background: var(--ci-blue-soft);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.sykam-pdf-modal__head-btn--ghost {
  background: var(--bg-subtle);
  border-color: var(--border);
  color: var(--text-primary);
}

.sykam-pdf-modal__head-btn--ghost:hover {
  background: var(--ci-blue-soft);
  border-color: rgba(42, 67, 146, 0.22);
  color: var(--ci-blue);
}

.sykam-pdf-modal__head-btn--close {
  min-width: 2.5rem;
  padding: 0;
  background: var(--bg-subtle);
  border-color: var(--border);
  color: var(--text-secondary);
}

.sykam-pdf-modal__head-btn--close:hover {
  background: var(--ci-magenta-soft);
  border-color: rgba(176, 30, 117, 0.25);
  color: var(--ci-magenta);
}

.sykam-pdf-modal__head-btn-label {
  display: none;
}

@media (min-width: 520px) {
  .sykam-pdf-modal__head-btn-label {
    display: inline;
  }
}

.sykam-pdf-modal__body {
  display: flex;
  flex: 1;
  min-height: 0;
  background: #fff;
}

.sykam-pdf-modal__sidebar {
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: #fafbfe;
  min-height: 0;
}

.sykam-pdf-modal__sidebar-label {
  margin: 0;
  padding: 0.65rem 0.75rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.sykam-pdf-modal__thumbs {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(42, 67, 146, 0.35) transparent;
}

.sykam-pdf-modal__thumbs::-webkit-scrollbar {
  width: 6px;
}

.sykam-pdf-modal__thumbs::-webkit-scrollbar-thumb {
  background: rgba(42, 67, 146, 0.28);
  border-radius: 99px;
}

.sykam-pdf-modal__thumb {
  position: relative;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px -4px rgba(42, 67, 146, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sykam-pdf-modal__thumb:hover {
  border-color: rgba(42, 67, 146, 0.35);
}

.sykam-pdf-modal__thumb.is-active {
  border-color: var(--ci-blue);
  box-shadow: 0 4px 14px -4px rgba(42, 67, 146, 0.35);
}

.sykam-pdf-modal__thumb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  border-radius: calc(var(--radius) - 2px);
  background: #f1f4fb;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  overflow: hidden;
}

.sykam-pdf-modal__thumb-canvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.sykam-pdf-modal__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: #fff;
}

.sykam-pdf-modal__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}

.sykam-pdf-modal__tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ci-blue);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.sykam-pdf-modal__tool:hover:not(:disabled) {
  background: var(--ci-blue-soft);
  border-color: rgba(42, 67, 146, 0.28);
}

.sykam-pdf-modal__tool:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sykam-pdf-modal__tool--fit {
  width: auto;
  padding: 0 0.65rem;
  gap: 0.35rem;
}

.sykam-pdf-modal__page-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sykam-pdf-modal__page-input {
  width: 2.75rem;
  padding: 0.35rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: #fff;
}

.sykam-pdf-modal__page-input:focus {
  outline: none;
  border-color: var(--ci-blue);
  box-shadow: 0 0 0 3px rgba(42, 67, 146, 0.15);
}

.sykam-pdf-modal__page-of {
  color: var(--text-muted);
  font-weight: 500;
}

.sykam-pdf-modal__zoom {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.sykam-pdf-modal__canvas-outer {
  position: relative;
  flex: 1;
  min-height: 200px;
  background: #f4f6fb;
}

.sykam-pdf-modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: #fff;
}

.sykam-pdf-modal__loading[hidden] {
  display: none !important;
}

.sykam-pdf-modal__spinner {
  width: 2.25rem;
  height: 2.25rem;
  border: 3px solid var(--ci-blue-soft);
  border-top-color: var(--ci-blue);
  border-radius: 50%;
  animation: sykam-pdf-spin 0.75s linear infinite;
}

@keyframes sykam-pdf-spin {
  to {
    transform: rotate(360deg);
  }
}

.sykam-pdf-modal__error {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  background: #fff;
}

.sykam-pdf-modal__error[hidden] {
  display: none !important;
}

.sykam-pdf-modal__error-text {
  margin: 0;
  color: var(--text-secondary);
  max-width: 28ch;
}

.sykam-pdf-modal__error-btn {
  text-decoration: none;
}

.sykam-pdf-modal__canvas-wrap {
  position: absolute;
  inset: 0;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 1.1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.sykam-pdf-modal__canvas-wrap.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.sykam-pdf-modal__canvas {
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.25);
  border-radius: 2px;
  background: #fff;
}

@media (max-width: 640px) {
  .sykam-pdf-modal__body {
    flex-direction: column;
  }

  .sykam-pdf-modal__sidebar {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: stretch;
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: 118px;
  }

  .sykam-pdf-modal__sidebar-label {
    display: none;
  }

  .sykam-pdf-modal__thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0.65rem;
    gap: 0.45rem;
    -webkit-overflow-scrolling: touch;
  }

  .sykam-pdf-modal__thumb {
    flex: 0 0 88px;
    width: 88px;
  }

  .sykam-pdf-modal__thumb-inner {
    min-height: 112px;
  }

  .sykam-pdf-modal__zoom {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sykam-pdf-modal__spinner {
    animation: none;
    border-top-color: var(--ci-blue-soft);
  }
}

/* —— Support page: password gate for PDF downloads —— */
.sykam-support-pdf-gate {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) calc(1rem + env(safe-area-inset-right, 0px)) calc(1rem + env(safe-area-inset-bottom, 0px)) calc(1rem + env(safe-area-inset-left, 0px));
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sykam-support-pdf-gate.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.sykam-support-pdf-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.sykam-support-pdf-gate__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  max-height: min(90vh, 32rem);
  overflow: auto;
  background: var(--surface, #fff);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sykam-support-pdf-gate__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sykam-support-pdf-gate__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text, #0f172a);
}

.sykam-support-pdf-gate__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min, 44px);
  height: var(--touch-min, 44px);
  min-width: var(--touch-min, 44px);
  min-height: var(--touch-min, 44px);
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted, #64748b);
  cursor: pointer;
}

.sykam-support-pdf-gate__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text, #0f172a);
}

.sykam-support-pdf-gate__body {
  padding: 1rem 1.25rem 1.25rem;
}

.sykam-support-pdf-gate__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text, #334155);
}

.sykam-support-pdf-gate__text a {
  color: var(--ci-blue, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sykam-support-pdf-gate__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sykam-support-pdf-gate__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text, #334155);
}

.sykam-support-pdf-gate__input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--surface, #fff);
}

.sykam-support-pdf-gate__input:focus {
  outline: 2px solid var(--ci-blue-soft, #93c5fd);
  outline-offset: 1px;
  border-color: var(--ci-blue, #2563eb);
}

.sykam-support-pdf-gate__error {
  margin: 0;
  font-size: 0.875rem;
  color: #b91c1c;
}

.sykam-support-pdf-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

/* Applications page — product links with rich hover cards (Sykam CI) */
.sykam-product-tip {
  position: relative;
  display: inline;
  vertical-align: baseline;
}

.sykam-product-tip__link {
  color: var(--ci-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(42, 67, 146, 0.35);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.sykam-product-tip__link:hover,
.sykam-product-tip__link:focus {
  color: var(--ci-magenta);
  text-decoration-color: rgba(176, 30, 117, 0.45);
  outline: none;
}

.sykam-product-tip__panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  width: min(340px, 92vw);
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -20px rgba(42, 67, 146, 0.35), var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 300;
  text-align: left;
}

.sykam-product-tip__panel::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sykam-product-tip:hover .sykam-product-tip__panel,
.sykam-product-tip:focus-within .sykam-product-tip__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sykam-product-tip__media {
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(145deg, var(--ci-blue-soft) 0%, rgba(176, 30, 117, 0.06) 100%);
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
}

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

.sykam-product-tip__desc {
  display: block;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

.sykam-product-tip__desc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ci-blue);
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .sykam-product-tip__panel {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
    width: min(300px, 85vw);
  }

  .sykam-product-tip:hover .sykam-product-tip__panel,
  .sykam-product-tip:focus-within .sykam-product-tip__panel {
    transform: translateX(0) translateY(0);
  }

  .sykam-product-tip__panel::after {
    left: auto;
    right: 1.25rem;
    transform: rotate(45deg);
  }
}


/* =====================================================================
   RESPONSIVE ENHANCEMENTS — 2026 comprehensive pass
   Breakpoints: 320 | 480 | 560 | 640 | 768 | 900 | 991 | 1024 | 1280 | 1440+
   ===================================================================== */

/* ── Page-hero: reduce vertical padding & min-height on small screens ── */
@media (max-width: 640px) {
  .page-hero {
    padding-top: clamp(5rem, 20vw, 8rem);
    padding-bottom: clamp(2rem, 6vw, 4rem);
    min-height: 60vh;
  }
}

/* ── Stats strip: single-column on phones narrower than 480px ── */
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ── Section heads: tight spacing on tiny phones ── */
@media (max-width: 480px) {
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: clamp(1.5rem, 7vw, 1.875rem); }
}

/* ── Blog article: fluid inner padding on small phones ── */
@media (max-width: 560px) {
  .blog-article {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* ── Content section vertical padding: reduce on phones ── */
@media (max-width: 640px) {
  .content-section {
    padding-top: clamp(2.5rem, 8vw, 5rem);
    padding-bottom: clamp(2.5rem, 8vw, 5rem);
  }
  .cta-block {
    padding-top: clamp(2.5rem, 8vw, 5rem);
    padding-bottom: clamp(2.5rem, 8vw, 5rem);
  }
}

/* ── Product cards section: reduce padding on phones ── */
@media (max-width: 640px) {
  .product-cards-section {
    padding-top: clamp(2.5rem, 8vw, 5rem);
    padding-bottom: clamp(2.5rem, 8vw, 5rem);
  }
}

/* ── Hero CTA buttons: full-width stacked on very small phones ── */
@media (max-width: 380px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 18rem;
    justify-content: center;
  }
}

/* ── Page hero image: constrain on mobile ── */
@media (max-width: 900px) {
  .page-hero .product-image-frame {
    max-width: min(480px, 100%);
    margin: 0 auto;
  }
  .page-hero--no-mobile-hero-image .product-image-frame {
    display: none;
  }
}

/* ── Contact split: full-stack on small tablets/phones ── */
@media (max-width: 640px) {
  .contact-section--reach .contact-section__head {
    padding: 2rem var(--page-gutter) 1.5rem;
  }
}

/* ── Solutions scrub: static poster mode on phone + tablet ── */
@media (max-width: 1024px) {
  .solutions-scrub .scroll-container {
    height: auto;
    min-height: 0;
  }
  .solutions-scrub .hero-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: clamp(20rem, 62vw, 42rem);
    max-height: calc(100vh - 4rem);
    aspect-ratio: 16 / 9;
  }
  .solutions-scrub .hero-video {
    display: none;
  }
  .solutions-scrub .hero-poster {
    display: block;
  }
  .solutions-scrub .hero-brand {
    opacity: 1;
    transform: none;
    height: auto;
  }
  html.sykam-solutions-scroll {
    scroll-behavior: smooth !important;
  }
}

/* ── Komp grid / feature grid: ensure 2→1 on small phones ── */
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .service-pillars { grid-template-columns: 1fr; }
}

/* ── Nav mobile: wider drawer on very small phones ── */
@media (max-width: 380px) {
  .nav-mobile {
    width: calc(100vw - 1rem);
  }
}

/* ── Dropdown panels: prevent overflow off left edge on small screens ── */
@media (max-width: 480px) {
  .dropdown-panel {
    left: 0;
    right: 0;
    transform: translateY(-12px);
    min-width: 0;
  }
  .nav-item:hover .dropdown-panel,
  .nav-item.is-open .dropdown-panel {
    transform: translateY(4px);
  }
}

/* ── Hero h1: slightly tighter on very narrow phones ── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
}

/* ── Page hero h1: fluid on small phones ── */
@media (max-width: 560px) {
  .page-hero h1 {
    font-size: clamp(1.625rem, 7vw, 2.5rem);
  }
}

/* ── Landscape mobile: reduce hero height ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding-top: calc(4rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2rem;
  }
  .page-hero {
    min-height: auto;
    padding-top: 5rem;
  }
}

/* ── 4K / large screens (1440px+): generous gutters, scale stats ── */
@media (min-width: 1440px) {
  :root {
    --page-gutter: clamp(2rem, 3vw, 3.5rem);
  }
  .hero-content {
    gap: 6rem;
  }
  .stats-inner {
    gap: 3rem;
  }
  .stat-item .value {
    font-size: clamp(2rem, 2.5vw, 2.75rem);
  }
  .section-head h2 {
    font-size: clamp(2rem, 2.5vw, 2.75rem);
  }
  .footer-inner {
    gap: 4rem;
  }
}

/* ── Ultra-wide (2560px+): hard cap on inner content to prevent reading lines too long ── */
@media (min-width: 2560px) {
  .container,
  .footer-inner,
  .stats-inner,
  .product-cards,
  .two-col,
  .feature-grid,
  .service-pillars,
  .blog-layout-inner {
    max-width: 1600px;
  }
  .hero-content {
    max-width: 1600px;
  }
}

/* ── Split-screen / narrow viewport (tablet in portrait split) ── */
@media (min-width: 641px) and (max-width: 860px) {
  .glass-stack-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .glass-stack-left {
    position: static;
  }
}

/* ── Contact section head: centre on phones ── */
@media (max-width: 640px) {
  .contact-section--reach .contact-section__head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* ── Product cards section heading: tight on phones ── */
@media (max-width: 480px) {
  .product-cards-section .section-head {
    margin-bottom: 1.5rem;
  }
}

/* ── Blog layout: reduce side padding on phones ── */
@media (max-width: 480px) {
  .blog-layout {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .blog-narrow {
    padding: 2rem var(--page-gutter);
  }
}

/* ── Footer: tighter on phones ── */
@media (max-width: 480px) {
  .site-footer {
    padding-top: 2.25rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    padding-left: calc(var(--page-gutter) + env(safe-area-inset-left, 0px));
    padding-right: calc(var(--page-gutter) + env(safe-area-inset-right, 0px));
  }
  .footer-inner {
    gap: 1.5rem;
  }
}

/* ── Support page: vertical scale on phones ── */
@media (max-width: 640px) {
  .support-pi-section {
    padding-bottom: 3rem;
  }
}

/* ── Sykam sitemap: single column on very small phones ── */
@media (max-width: 480px) {
  .sykam-sitemap__grid {
    grid-template-columns: 1fr;
  }
  .sykam-sitemap__columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── Komp grid columns: 2→1 on small phones ── */
@media (max-width: 480px) {
  .components-hub-section.products-hub-section .products-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Prefers-reduced-motion: stop all scroll animations on mobile ── */
@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero-sub,
  .hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .reveal,
  .reveal-fade-only {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
