/* SYKAM — CI design system */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..700;1,14..32,400&family=Manrope:wght@400;500;600;700;800&display=swap');

: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(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 249, 252, 0.88) 50%, rgba(255, 255, 255, 0.75) 100%);
}

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

html {
  scroll-behavior: smooth;
}

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;
}

/* 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: 0.75rem 2rem;
  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;
}

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

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

.logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.scrolled .logo img {
  filter: none;
}

.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 {
  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-parent:hover .dropdown-parent-label {
  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-parent:hover .nav-submenu-icon {
  color: var(--ci-blue);
  opacity: 1;
}
/* Pumps nested flyout: no filled hover background on the label (read as plain “Pumps”) */
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"]:hover .dropdown-parent-label,
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"] .dropdown-parent-label:hover,
.dropdown-subpanel .dropdown-parent[data-cascade="pumps"].is-open .dropdown-parent-label {
  background: transparent;
}
.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-submenu-trigger-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 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;
}
.nav-mobile-products-top {
  display: flex;
  align-items: stretch;
  width: 100%;
  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-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);
}
.nav-mobile-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.nav-mobile-sub.is-open {
  grid-template-rows: 1fr;
}
.nav-mobile-sub-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.nav-mobile-sub .nav-mobile-link {
  gap: 0.65rem;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  min-height: 44px;
}
.nav-mobile-sub .nav-mobile-sub .nav-mobile-link {
  padding-left: 2.5rem;
}
.nav-mobile-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem 0.25rem;
}
.nav-mobile-label .nav-submenu-icon {
  font-size: 0.8125rem;
  opacity: 0.85;
}
.nav-mobile-trigger--nested {
  font-size: 0.9375rem;
  padding-left: 2rem;
}
.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);
}

.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;
  min-width: 200px;
  max-width: 320px;
  background: #fffbe6;
  border: 1px solid #e8d65b;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 0.5rem;
}
.sticky-note-card .sticky-note-text {
  width: 100%;
  min-height: 60px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  resize: none;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-primary);
}
.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;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/sykam-team-hero-blur.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero::before {
    background-image: url('/assets/sykam-team-hero-mob.webp');
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 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-top: 5rem;
  }
}

.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);
}

@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 2rem;
}

.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;
}

/* Building parallax — above #komplettsysteme */
.building-parallax {
  position: relative;
  isolation: isolate;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  overflow: hidden;
}

.building-parallax__bg {
  position: absolute;
  inset: -24px;
  background-image: url('/assets/img/sykam-building.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  @media (prefers-reduced-motion: no-preference) {
    .building-parallax__bg {
      background-attachment: fixed;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .building-parallax__bg {
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  .building-parallax__bg {
    background-attachment: scroll;
  }
}

.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;
}

.building-parallax__logo {
  display: block;
  width: 250px;
  height: auto;
  object-fit: contain;
}

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

/* #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.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;
}
#komplettsysteme .product-cards-scroll .product-card.product-card--glow {
  touch-action: pan-x pinch-zoom;
}
.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 .product-cards--systems-slider .product-card {
    flex-basis: min(260px, calc(100vw - 4rem));
  }
}

.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;
}
.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;
}
.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;
  }
}

/* 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 */
#product-slider .product-cards {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

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

#product-slider .product-card-body {
  align-items: stretch;
  text-align: left;
}

#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;
}

.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: one “hover” look at a time — JS sets .product-card--pointer (see main.js) */
#product-slider .product-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
}

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

#product-slider .product-card:hover .product-card-link {
  max-height: 0;
  opacity: 0;
  padding: 0 1.5rem;
  transform: translateY(0.5rem);
}

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

#product-slider .product-card.product-card--pointer .product-card-icon-frame,
#product-slider .product-card:focus-visible .product-card-icon-frame {
  border-color: var(--ci-magenta);
  color: var(--ci-magenta);
}

#product-slider .product-card.product-card--pointer .product-card-link,
#product-slider .product-card:focus-visible .product-card-link {
  max-height: 4rem;
  opacity: 1;
  padding: 1rem 1.5rem 0.875rem;
  transform: translateY(0);
}

#product-slider .product-card.product-card--pointer .product-card-link:hover,
#product-slider .product-card:focus-visible .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 2rem;
}

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

/* Contact section (home): info + map | form */
.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;
  }
}

.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: 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: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.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: 100px 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;
  transition: transform 0.1s ease-out;
}
.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-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);
}
.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;
  transition: all 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;
  }
  .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;
  }
}

.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);
}

.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;
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 5rem 2rem;
  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 2rem 2rem;
  border-top: none;
  background: #3a56a5;
  color: #fff;
}

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

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

.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 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-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 2rem 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-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: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;
}

/* 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;
}
/* Tab bar constrained to left column (50%) so slider is used when needed */
.discovery-grid--analytics-tabs {
  grid-template-columns: 1fr 1fr;
}
.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;
}

.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.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-slider-col {
  min-width: 0;
}
.tabs-wrap--oem .tabs-slider-nav {
  margin-top: 0;
  align-self: center;
}

.oem-products-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.oem-products-slider::-webkit-scrollbar {
  height: 6px;
}
.oem-products-slider::-webkit-scrollbar-track {
  background: var(--bg-subtle);
  border-radius: 3px;
}
.oem-products-slider::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.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 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
}
.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;
  }
}
.instr-section__intro {
  color: var(--text-secondary);
  margin: 0 0 1.25rem 0;
  line-height: 1.65;
  max-width: 72ch;
}
.instr-section--tabs {
  padding-bottom: 0.5rem;
}
.instr-tabs {
  margin-top: 0.25rem;
}
.instr-tabs .instr-tabbed-card {
  max-width: 100%;
}

/* 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;
}
/* 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;
}
/* 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;
}

/* 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);
}
.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);
}
.instr-product-showcase__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  padding: 15px;
  aspect-ratio: 4 / 3;
}
.instr-product-showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.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;
}
@media (max-width: 768px) {
  .instr-product-showcase {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }
  .instr-product-showcase__visual {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }
}
.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: 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 1.5fr 1.5fr 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: 768px) {
  .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 a {
  color: var(--ci-blue);
}
