:root {
  --color-surface: #ffffff;
  --color-primary: #000000;
  --color-on-primary: #ffffff;
  --color-on-surface: #141d23;
  --color-on-surface-variant: #4c4546;
  --color-secondary: #506072;
  --color-on-secondary: #ffffff;
  --color-tertiary-container: #1a1c1c;
  --color-on-tertiary-container: #ffffff;
  --color-surface-container: #e6eff8;
  --color-surface-container-low: #ecf5fe;
  --color-outline-variant: #cfc4c5;
  --color-brand-blue: #004080;
  --margin-mobile: 16px;
  --margin-desktop: 64px;
  --container-max: 1280px;
  --content-max-wide: 90rem;
  --site-header-height: 4rem;
  --site-content-top: calc(var(--site-header-height) + 1.25rem);
}

html {
  scroll-padding-top: var(--site-header-height);
}

body {
  font-family: 'Mulish', sans-serif;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Price typography: smaller cents, top-aligned figures */
.price-amount {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  vertical-align: baseline;
}

.price-amount__major {
  line-height: 1;
}

.price-amount__minor {
  display: inline-flex;
  align-items: flex-start;
  font-size: calc(1em * 2 / 3);
  line-height: 1;
}

.price-amount__sep,
.price-amount__cents {
  line-height: 1;
}

.email-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.email-img-link {
  display: inline-block;
  line-height: 0;
}

.email-img {
  display: block;
  height: 1.25rem;
  width: auto;
  max-width: 100%;
}

.site-shell {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: var(--margin-mobile);
  padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
  .site-shell {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

.glass-nav {
  backdrop-filter: blur(20px);
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-outline-variant);
}

.title-underline {
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 2px;
  background-color: var(--color-primary);
}

.glass-nav.is-scrolled {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.05);
}

.site-logo {
  color: #004080;
}

.site-logo:hover {
  color: #004080;
  opacity: 0.88;
}

#site-header {
  max-width: 100%;
}

.site-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--site-header-height);
  height: var(--site-header-height);
}

@media (min-width: 1024px) {
  header#site-header .site-shell.site-header-bar nav.site-header-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    pointer-events: none;
    width: auto;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header-nav {
    gap: 2rem;
  }

  .site-header-nav .nav-link {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

.site-header-nav .nav-link {
  pointer-events: auto;
}

.nav-link {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-on-surface);
  opacity: 0.7;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary);
  opacity: 1;
  border-bottom: 2px solid var(--color-primary);
}

.lang-btn {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 4px 8px;
  opacity: 0.5;
}

.lang-btn.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-picker {
  position: relative;
  display: inline-flex;
}

.lang-picker__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--color-on-surface);
  background: transparent;
  border: 1px solid var(--color-outline-variant);
  border-radius: 2px;
  cursor: pointer;
}

.lang-picker__trigger:hover {
  border-color: var(--color-primary);
}

.lang-picker__trigger:focus-visible {
  outline: none;
  border-color: var(--color-primary);
}

.lang-picker__flag {
  width: 1.125rem;
  line-height: 1;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-picker__code {
  min-width: 1.75rem;
  text-align: left;
}

.lang-picker__chevron {
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  margin-top: -0.125rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.65;
  transition: transform 0.15s ease;
}

.lang-picker.is-open .lang-picker__chevron {
  transform: rotate(225deg);
}

.lang-picker__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 60;
  min-width: 8.5rem;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-outline-variant);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.lang-picker__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--color-on-surface);
  background: transparent;
  border: none;
  cursor: pointer;
}

.lang-picker__option .fi {
  width: 1.125rem;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-picker__option:hover,
.lang-picker__option.is-active {
  background: rgba(0, 0, 0, 0.04);
}

.lang-picker__option.is-active {
  color: var(--color-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-gradient {
  background: radial-gradient(circle at 50% 50%, #293138 0%, #141d23 100%);
}

.premium-shadow,
.long-shadow-btn {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.05);
}

.zebra-row:nth-child(even),
.zebra-stripe:nth-child(even) {
  background-color: #f8f9fa;
}

.zebra-row:nth-child(odd),
.zebra-stripe:nth-child(odd) {
  background-color: #ffffff;
}

.industrial-card {
  border: 1px solid #e5e5e5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.industrial-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.industrial-chip {
  background-color: #506072;
  color: #ffffff;
  border-radius: 0.125rem;
  padding: 2px 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.disc-product-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.disc-product-figure--card {
  height: 100%;
  min-height: 0;
}

.disc-product-figure--detail {
  gap: 0;
  height: 100%;
  min-height: 0;
}

.disc-product-figure__img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.disc-product-figure--card .disc-product-figure__img-wrap {
  padding: 1.25rem 1.25rem 0.5rem;
}

.disc-product-figure--detail .disc-product-figure__img-wrap {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.disc-product-icon {
  display: block;
  width: min(72%, 11rem);
  height: auto;
  margin: 0 auto;
}

.disc-product-figure--detail .disc-product-icon {
  width: min(58%, 14rem);
}

.disc-product-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.disc-product-figure--card .disc-product-figure__img {
  width: auto;
  max-width: min(72%, 11rem);
  max-height: 12rem;
  margin: 0 auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.disc-product-figure--detail .disc-product-figure__img {
  width: 80%;
  height: 80%;
  max-width: 80%;
  max-height: 80%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.disc-product-figure__img {
  display: block;
  object-fit: contain;
}

.product-visual {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--color-outline-variant);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.product-visual--dial {
  aspect-ratio: auto;
  border: 1px solid var(--color-outline-variant);
  background: #fff;
}

.dial-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.dial-svg {
  width: 100%;
  height: auto;
}

.sidebar-sticky {
  position: sticky;
  top: 6rem;
}

.active-dot {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
}

#mobile-nav {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}

#mobile-nav:not(.hidden) {
  display: flex;
}

@media (max-width: 1023px) {
  body:has(#site-header) > main.pt-28,
  body:has(#site-header) > main.pt-16 {
    padding-top: var(--site-content-top);
  }

  body:has(#site-header) > main:not([class*='pt-']) > section:first-child {
    padding-top: var(--site-content-top);
  }

  body:has(#site-header) > header.hero-gradient {
    padding-top: calc(var(--site-header-height) + 2rem);
  }

  .product-detail .site-shell > nav[aria-label='Breadcrumb'] {
    margin-bottom: 2rem;
  }

  .product-detail .font-display-lg.text-display-lg-mobile {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.15;
  }
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 12rem;
  padding: 0.75rem 2rem;
  background: rgba(213, 217, 217, 0.72);
  border: 1px solid rgba(171, 177, 177, 0.85);
  border-radius: 0.125rem;
  color: #6f7373;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.92;
}

.btn-amazon:hover,
.btn-amazon:active {
  background: rgba(213, 217, 217, 0.72);
  border-color: rgba(171, 177, 177, 0.85);
  color: #6f7373;
  box-shadow: none;
}

.btn-amazon--sm {
  min-width: 0;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.product-utility-note {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.45;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #004080;
}

.products-grid-section {
  background-color: var(--color-surface-container-low);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  #site-header .site-shell,
  .products-grid-section .site-shell,
  .product-detail > .site-shell,
  main > .site-shell,
  main section .site-shell,
  .business-hero .site-shell,
  .hero-gradient .site-shell,
  body > section .site-shell,
  .site-legal-notice .site-shell,
  .site-footer .site-shell {
    max-width: min(100%, var(--content-max-wide));
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 3rem minmax(5.5rem, auto) 2.25rem auto;
  }

  .products-grid > .product-grid-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    height: auto;
  }

  .products-grid > .product-grid-card > .product-grid-card__media {
    grid-row: 1;
  }

  .products-grid > .product-grid-card > .product-grid-card__body {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2 / span 4;
    flex: none;
    padding: 1.25rem 1rem;
    padding-top: 1.25rem;
  }

  .products-grid .product-grid-card__copy-slot {
    display: contents;
    min-height: 0;
  }

  .products-grid .product-grid-card__title {
    font-size: 0.9375rem;
    line-height: 1.25;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .products-grid .product-grid-card__title-slot {
    flex: none;
    min-height: 0;
    overflow: visible;
    align-self: start;
  }

  .products-grid .product-grid-card__desc {
    align-self: start;
  }

  .products-grid .product-grid-card__utility-slot {
    flex: none;
    min-height: 0;
    margin-top: 0;
    align-self: start;
  }

  .products-grid .product-grid-card__price-slot {
    margin-top: 0;
    align-self: start;
  }

  .products-grid .product-grid-card__body--no-price .product-grid-card__price-slot {
    display: block;
    visibility: hidden;
    min-height: 0;
    padding-top: 0;
    overflow: hidden;
    pointer-events: none;
  }
}

.product-grid-card__media--dev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e6eff8 0%, #d3e4fa 100%);
}

.product-grid-card__media--dev .disc-product-figure {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.product-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-outline-variant);
  transition:
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a.product-grid-card:hover {
  border-color: #004080;
  transform: translateY(-4px);
}

.product-grid-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-surface-container);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-grid-card__media .disc-product-figure {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.product-grid-card__media .disc-product-figure--card .disc-product-figure__img-wrap {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.product-grid-card__media .disc-product-figure--card .disc-product-figure__img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.product-grid-card__img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a.product-grid-card:hover .product-grid-card__img,
a.product-grid-card:hover .disc-product-figure__img,
a.product-grid-card:hover .disc-product-icon {
  transform: scale(1.05);
}

.product-grid-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.125rem;
}

.product-grid-card__badge--klassisch {
  background-color: #000000;
  color: #ffffff;
}

.product-grid-card__badge--connected {
  background-color: #506072;
  color: #ffffff;
}

.product-grid-card__badge--vario {
  background-color: #293138;
  color: #ffffff;
}

.product-grid-card__badge--smart {
  background-color: #3d5a80;
  color: #ffffff;
}

.product-grid-card__badge--ecosystem {
  background-color: #4c4546;
  color: #ffffff;
}

.product-grid-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.product-grid-card__title-slot {
  flex: 0 1 auto;
  min-height: 3.25rem;
  display: flex;
  align-items: flex-start;
}

.product-grid-card__title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
  overflow-wrap: break-word;
  color: var(--color-on-surface);
}

.product-grid-card__title.font-headline-md {
  font-size: 1.125rem;
}

.product-grid-card__copy-slot {
  flex: 1 1 auto;
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
}


.product-grid-card__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-on-surface-variant);
}

.product-grid-card__utility-slot {
  flex: 0 0 1.35rem;
  min-height: 1.35rem;
  margin-top: 0.625rem;
}

.product-grid-card__utility-slot .product-utility-note {
  margin: 0;
}

.product-grid-card__price-slot {
  flex: 0 0 auto;
  min-height: 3.25rem;
  padding-top: 1rem;
  margin-top: auto;
}

.product-grid-card__body--no-price .product-grid-card__price-slot {
  display: none;
}

.product-grid-card__price {
  color: var(--color-on-surface);
}

.product-grid-card__price .font-headline-md {
  color: var(--color-on-surface);
}

.product-grid-card__price-vat {
  margin-top: 0.25rem;
  color: var(--color-on-surface-variant);
}

.business-hero {
  background: var(--color-surface);
}

.business-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8edf2;
}

.business-hero-media picture,
.business-hero-media__img {
  display: block;
  width: 100%;
  height: 100%;
}

.business-hero-media__img {
  object-fit: cover;
  object-position: 72% center;
}

.business-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(246, 250, 255, 0.97) 0%,
    rgba(246, 250, 255, 0.9) 34%,
    rgba(246, 250, 255, 0.55) 52%,
    rgba(246, 250, 255, 0.12) 72%,
    transparent 100%
  );
}

.business-hero-content {
  max-width: 38rem;
}

@media (max-width: 767px) {
  .business-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(246, 250, 255, 0.96) 0%,
      rgba(246, 250, 255, 0.9) 50%,
      rgba(246, 250, 255, 0.55) 100%
    );
  }

  .business-hero-media__img {
    object-position: center 40%;
  }

  .business-hero-content {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .business-hero-content {
    max-width: min(42rem, 48%);
  }

  .business-hero-media__img {
    object-position: 78% center;
  }
}

.business-hero-title {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .business-hero-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .business-hero-title {
    font-size: 2rem;
  }
}

.b2b-highlight-card {
  min-width: 0;
}

.b2b-highlight-card .material-symbols-outlined {
  color: #004080;
}

.b2b-highlight-card:hover {
  border-color: #004080 !important;
}

.b2b-card-title {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 1280px) {
  .b2b-card-title {
    font-size: 1rem;
  }
}

.inquiry-form {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-outline-variant);
}

@media (min-width: 768px) {
  .inquiry-form {
    padding: 1.75rem 2rem;
  }
}

.inquiry-form label:not(.inquiry-form-consent__label) {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}

.inquiry-form-required {
  margin-left: 0.125rem;
  color: #000000;
  font-weight: 700;
}

.inquiry-form-required-note {
  margin: -0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  color: #f57c00;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  background: #fff;
  border: 1px solid var(--color-outline-variant);
  border-radius: 0.125rem;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  --tw-ring-color: var(--color-brand-blue);
}

.inquiry-form textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.inquiry-form-notice {
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-outline-variant);
  background: var(--color-surface);
}

.inquiry-form-notice--success {
  border-color: var(--color-primary);
}

.inquiry-form-notice--error {
  border-color: #b3261e;
  background: #fff8f7;
}

.inquiry-form-legal-notice {
  margin: 0.625rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
}

.inquiry-form-privacy-note {
  margin: 0.375rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
}

.inquiry-form-legal-notice__link {
  text-decoration: underline;
  color: inherit;
}

.inquiry-form-legal-notice__link:hover {
  color: var(--color-brand-blue);
}

.inquiry-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.25rem;
}

.inquiry-form-consent__checkbox {
  flex: 0 0 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.15rem 0 0;
  color: var(--color-brand-blue);
  accent-color: var(--color-brand-blue);
  cursor: pointer;
}

.inquiry-form-consent__label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-on-surface-variant);
  opacity: 1;
  cursor: pointer;
}

.inquiry-form-consent__label span {
  text-transform: none;
  letter-spacing: normal;
}

.inquiry-form-consent__link {
  color: var(--color-brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inquiry-form-consent__link:hover {
  opacity: 0.85;
}

.inquiry-form-consent__required {
  color: var(--color-primary);
  font-weight: 600;
}

.inquiry-form-consent-error {
  margin: 0.25rem 0 0;
  padding-left: 1.875rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
  color: #b3261e;
}

.inquiry-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.inquiry-form-submit {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.875rem 1rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.site-legal-notice {
  border-top: 1px solid var(--outline-variant, #c4c7c5);
  background: var(--surface-container-low, #f3f4f6);
  padding: 2rem 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--on-surface-variant, #49454f);
}

.site-legal-notice-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--on-surface, #1c1b1f);
}

.site-legal-notice p {
  margin: 0 0 0.75rem;
}

.site-legal-notice p:last-child {
  margin-bottom: 0;
}

.product-disclaimer-block {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--outline-variant, #c4c7c5);
}

.product-disclaimer {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--on-surface-variant, #49454f);
}

.b2b-card-disclaimer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--outline-variant, #c4c7c5);
  font-size: 0.75rem;
  line-height: 1.55;
}

.site-footer {
  background: #ffffff;
  color: #000000;
  padding: 2.5rem 0 3rem;
}

.site-footer-company {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer-nav a {
  color: #004080;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.site-footer-nav a:hover {
  opacity: 0.8;
}

.site-footer-sep {
  color: rgba(0, 0, 0, 0.35);
  user-select: none;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.72);
}
