/* Shimadzu-inspired layout — ARABOND blue/white */

:root {
  --section-accent: #c0392b;
}

.page-shimadzu {
  padding-top: 0;
}

html:has(body.page-shimadzu),
body.page-shimadzu {
  background: #fff;
}

.page-shimadzu #site-lang {
  display: contents;
}

/* Top utility bar */
.site-topbar {
  background: var(--brand-900, #04506c);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 36px;
}

html[dir="rtl"] .site-topbar__inner { justify-content: flex-start; }

.site-topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 600;
}

.site-topbar a:hover { color: #fff; }

.site-topbar__lang {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.site-topbar__lang:hover { color: #fff; }

.page-shimadzu .header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  background: #fff;
}

@media (min-width: 1025px) {
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: none;
    background: #fff;
  }

  .page-shimadzu {
    padding-top: var(--header-total-h, 144px);
  }

  .page-shimadzu .header.header--antteknik {
    position: relative;
    top: auto;
  }
}

@media (max-width: 1024px) {
  #site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: none;
    margin-bottom: 0;
  }

  .page-shimadzu {
    padding-top: 0 !important;
  }

  .page-shimadzu #menuNavBar.navbar-ant,
  #menuNavBar.navbar-ant {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.page-shimadzu .header__logo-img {
  filter: none !important;
  max-height: 72px;
  width: auto;
  height: 68px;
  object-fit: contain;
  background: transparent;
}

.page-shimadzu .footer__logo-img {
  filter: none;
  max-height: 44px;
}

/* Hero carousel */
.page-shimadzu #site-header + .sz-hero {
  margin-top: clamp(6px, 1vw, 10px);
}

.sz-hero {
  position: relative;
  background: #fff;
  margin-top: clamp(6px, 1vw, 10px);
  padding: 0 clamp(16px, 3vw, 28px);
}

.sz-hero__viewport {
  overflow: hidden;
  border-radius: 20px;
}

.sz-hero__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sz-hero__slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 21/9;
  max-height: 520px;
  overflow: hidden;
}

.sz-hero__slide img,
.sz-hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sz-hero__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(4, 56, 71, 0.45) 0%, transparent 18%, transparent 82%, rgba(4, 56, 71, 0.45) 100%),
    linear-gradient(0deg, rgba(4, 56, 71, 0.82) 0%, rgba(4, 56, 71, 0.25) 42%, transparent 72%);
  padding: 48px clamp(20px, 4vw, 40px) 56px;
}

.sz-hero__caption .container {
  max-width: 1320px;
}

.sz-hero__caption h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  max-width: 720px;
  line-height: 1.2;
}

.sz-hero__caption p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  font-size: 1rem;
}

.sz-hero__nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.sz-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.sz-hero__dot.active {
  background: #fff;
  border-color: #fff;
}

.sz-hero__arrow {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(4, 56, 71, 0.42);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.sz-hero__arrow:hover { background: var(--brand-600, #006A90); border-color: transparent; }
.sz-hero__arrow--prev { inset-inline-start: clamp(16px, 3vw, 32px); }
.sz-hero__arrow--next { inset-inline-end: clamp(16px, 3vw, 32px); }

/* Section shell */
.sz-section {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid #e8edf2;
}

.sz-section--gray { background: #f7f9fc; }

.sz-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sz-section__head h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  position: relative;
  padding-inline-start: 16px;
}

.sz-section__head h2::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background: var(--section-accent, #c0392b);
  border-radius: 2px;
}

.sz-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-600, #006A90);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sz-more:hover { color: var(--brand-700, #006A90); text-decoration: underline; }

/* Company overview — classic editorial layout */
.sz-company-overview {
  padding: 56px 0 64px;
  background: #fff;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.sz-company-overview__frame {
  position: relative;
  padding: clamp(28px, 4vw, 44px) 0;
  background: #fff;
}

.sz-company-overview__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.sz-company-overview__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sz-company-overview__eyebrow {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-accent, #c0392b);
}

.theme-light .sz-company-overview__title,
.sz-company-overview__title {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
  background: none;
  letter-spacing: -0.01em;
}

.sz-company-overview__rule {
  width: 56px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--section-accent, #c0392b);
}

.sz-company-overview__rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(0, 90, 124, 0.15);
}

.sz-company-overview__text {
  margin: 0 0 28px;
  max-width: 56ch;
  font-size: 1.0125rem;
  line-height: 2;
  color: var(--brand-800, #005a7c);
}

.sz-company-overview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 0;
  border-block: 1px solid rgba(0, 90, 124, 0.1);
}

.sz-company-overview__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
  text-align: center;
}

.sz-company-overview__stat:not(:last-child) {
  border-inline-end: 1px solid rgba(0, 90, 124, 0.1);
}

.sz-company-overview__stat-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  line-height: 1.2;
}

.sz-company-overview__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted, #475569);
  line-height: 1.4;
}

.sz-company-overview__cta {
  align-self: flex-start;
  padding: 12px 32px;
  border: 2px solid var(--brand-600, #006A90);
  border-radius: 2px;
  background: var(--brand-600, #006A90);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.sz-company-overview__cta:hover {
  background: #fff;
  color: var(--brand-700, #006A90) !important;
  text-decoration: none;
}

.sz-company-overview__figure {
  margin: 0;
}

.sz-company-overview__figure-inner {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.sz-company-overview__figure-inner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.sz-company-overview__caption {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 90, 124, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-700, #006A90);
  text-align: center;
}

/* Featured tiles (legacy / other pages) */
.sz-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sz-featured-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sz-featured-card:hover {
  box-shadow: 0 12px 40px rgba(4, 80, 108, 0.12);
  transform: translateY(-3px);
}

.sz-featured-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f4f8;
}

.sz-featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sz-featured-card:hover .sz-featured-card__img img { transform: scale(1.04); }

.sz-featured-card__title {
  padding: 16px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-height: 72px;
}

/* News list */
.sz-news-list { border-top: 1px solid #e2e8f0; }

.sz-news-item {
  display: grid;
  grid-template-columns: 120px 140px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}

.sz-news-item:hover { background: #f7f9fc; margin: 0 -16px; padding: 20px 16px; }

.sz-news-item__date {
  font-size: 0.8125rem;
  color: var(--text-muted, #64748b);
  font-weight: 500;
}

.sz-news-item__cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-600, #006A90);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sz-news-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-900, #04506c);
  line-height: 1.5;
}

.sz-news-item__title a:hover { color: var(--brand-600, #006A90); }

/* Product cards — premium 4×2 grid */
.sz-section--products {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.sz-section__head--products {
  align-items: center;
  margin-bottom: 28px;
}

.sz-more--pill {
  padding: 10px 22px;
  border: 2px solid #0f172a;
  border-radius: 999px;
  color: #0f172a;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.sz-more--pill:hover {
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

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

.sz-product-card-luxe {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: none;
  transform: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.sz-product-card-luxe::after {
  content: '';
  position: absolute;
  inset: auto -8px -24px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 0%,
    color-mix(in srgb, var(--card-accent, #006A90) 45%, transparent) 0%,
    transparent 72%
  );
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.sz-product-card-luxe__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f7fb;
}

.sz-product-card-luxe__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px;
}

.sz-product-card-luxe__body {
  flex: 1;
  padding: 16px 16px 18px;
  text-align: start;
}

.sz-product-card-luxe__body h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand-900, #04506c);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.sz-product-card-luxe__body p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted, #64748b);
}

.sz-product-card-luxe__accent {
  display: block;
  height: 4px;
  background: var(--card-accent, #006A90);
  transform: scaleX(0);
  transform-origin: inline-end;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html[dir="ltr"] .sz-product-card-luxe__accent {
  transform-origin: inline-start;
}

@media (hover: hover) and (pointer: fine) {
  .sz-product-card-luxe:hover {
    transform: none;
    border-color: color-mix(in srgb, var(--card-accent, #006A90) 35%, #e2e8f0);
    box-shadow: 0 8px 24px -8px rgba(15, 35, 64, 0.12);
  }

  .sz-product-card-luxe:hover::after {
    opacity: 0;
  }

  .sz-product-card-luxe:hover .sz-product-card-luxe__media img {
    transform: none;
  }

  .sz-product-card-luxe:hover .sz-product-card-luxe__shine {
    opacity: 0;
  }

  .sz-product-card-luxe:hover .sz-product-card-luxe__body h3 {
    color: var(--card-accent, #006A90);
  }

  .sz-product-card-luxe:hover .sz-product-card-luxe__accent {
    transform: scaleX(1);
  }
}

/* Legacy product rows (other pages) */
.sz-products-stack { display: flex; flex-direction: column; gap: 0; }

.sz-product-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  background: #fff;
  transition: background 0.25s ease;
}

.sz-product-row:last-child { border-bottom: 1px solid #e2e8f0; }

.sz-product-row:hover { background: #f7f9fc; }

.sz-product-row__img {
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-inline-end: 1px solid #e2e8f0;
}

.sz-product-row__img img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.sz-product-row__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sz-product-row__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  margin-bottom: 10px;
}

.sz-product-row__body p {
  font-size: 0.9375rem;
  color: var(--text-muted, #475569);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 640px;
}

.sz-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-600, #006A90);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sz-link::after { content: ' →'; }

html[dir="rtl"] .sz-link::after { content: ' ←'; }

/* Solutions showcase — classic split panel */
.sz-showcase {
  padding: 56px 0;
  background: var(--brand-50, #F4F5EF);
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.sz-showcase__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: 380px;
  background: var(--brand-900, #04506c);
  border-radius: 4px;
  overflow: hidden;
}

.sz-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 48px);
  color: #fff;
  transition: opacity 0.28s ease;
}

.sz-showcase__content.is-updating {
  opacity: 0.55;
}

.sz-showcase__label {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
}

.sz-showcase__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.sz-showcase__rule {
  width: 48px;
  height: 2px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.sz-showcase__content p {
  margin: 0 0 20px;
  max-width: 44ch;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.sz-showcase__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.sz-showcase__sectors li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.sz-showcase__cta {
  align-self: flex-start;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: transparent;
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.sz-showcase__cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand-900, #04506c) !important;
  text-decoration: none;
}

.sz-showcase__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  align-items: stretch;
}

.sz-showcase__item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sz-showcase__item:hover {
  border-color: rgba(177, 204, 131, 0.45);
}

.sz-showcase__item.is-active,
.sz-showcase__item--featured {
  padding: 20px 14px;
  border-color: var(--navbar-accent, #B1CC83);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.sz-showcase__item:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.sz-showcase__item img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  object-position: center;
}

/* Legacy messe */
.sz-messe { display: none; }

/* Today / articles grid */
.sz-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sz-article-card {
  display: block;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.sz-article-card:hover { box-shadow: 0 8px 28px rgba(4, 80, 108, 0.1); }

.sz-article-card__img { aspect-ratio: 16/10; overflow: hidden; }
.sz-article-card__img img { width: 100%; height: 100%; object-fit: cover; }

.sz-article-card__body { padding: 18px 16px; }
.sz-article-card__body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-900, #04506c);
  line-height: 1.5;
}

/* Special contents */
.sz-special {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sz-special-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
  align-items: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sz-special-card:hover {
  border-color: var(--brand-400, #7CC9BF);
  box-shadow: 0 8px 24px rgba(0, 106, 144, 0.1);
}

.sz-special-card__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f4f8;
}

.sz-special-card__thumb img { width: 100%; height: 100%; object-fit: cover; }

.sz-special-card strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-900, #04506c);
  margin-bottom: 8px;
}

.sz-special-card p {
  font-size: 0.875rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
}

/* Partnerships — classic horizontal scroll */
.sz-section--partnerships {
  background: var(--brand-50, #F4F5EF);
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.sz-partnerships__head {
  max-width: 640px;
  margin-bottom: 32px;
}

.sz-partnerships__head h2 {
  margin: 0 0 10px;
  padding-inline-start: 16px;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--brand-900, #04506c);
  position: relative;
}

.sz-partnerships__head h2::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 4px;
  background: var(--section-accent, #c0392b);
  border-radius: 2px;
}

.sz-partnerships__head p {
  margin: 0;
  padding-inline-start: 16px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted, #475569);
}

.sz-partnerships__scroller-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sz-partnerships__scroller {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.sz-partnerships__scroller::-webkit-scrollbar {
  display: none;
}

.sz-partnerships__track {
  display: flex;
  gap: 20px;
  padding: 6px 4px 20px;
}

.sz-partnership-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  padding: 28px 26px 30px;
  background: #fff;
  border: 1px solid rgba(0, 90, 124, 0.1);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(4, 80, 108, 0.04);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.sz-partnership-card__index {
  display: block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-400, #7CC9BF);
}

.sz-partnership-card__title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--brand-900, #04506c) !important;
  -webkit-text-fill-color: currentColor;
  background: none;
  unicode-bidi: plaintext;
}

.theme-light .sz-partnership-card__title {
  color: var(--brand-900, #04506c) !important;
}

.sz-partnership-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--brand-800, #005a7c);
}

@media (hover: hover) and (pointer: fine) {
  .sz-partnership-card:hover {
    border-color: rgba(0, 106, 144, 0.22);
    box-shadow: 0 10px 28px rgba(4, 80, 108, 0.08);
  }
}

.sz-partnerships__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 90, 124, 0.15);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-700, #006A90);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sz-partnerships__arrow:hover {
  background: var(--brand-600, #006A90);
  border-color: var(--brand-600, #006A90);
  color: #fff;
}

/* Classic footer */
.footer--classic {
  background: var(--brand-900, #04506c);
  color: rgba(255, 255, 255, 0.78);
  border-top: none;
  padding: 0 0 28px;
}

.footer-classic__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-950, #043847) 0%,
    var(--brand-600, #006A90) 50%,
    var(--brand-950, #043847) 100%
  );
}

.footer-classic__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px 28px;
  padding: 48px 0 36px;
}

.footer-classic__brand .footer__logo-img {
  max-height: 52px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-classic__tagline {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.footer-classic__company {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 28ch;
}

.footer-classic__title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-classic__links,
.footer-classic__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-classic__links a,
.footer-classic__contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-classic__links a:hover,
.footer-classic__contact a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-classic__contact {
  font-style: normal;
}

.footer-classic__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-classic__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Legacy cocreate / about-links (removed from layout) */
.sz-cocreate { display: none; }
.sz-about-links { display: none; }

/* Shimadzu-style footer (non-classic fallback) */
.footer--shimadzu:not(.footer--classic) {
  background: #fff;
  color: var(--text-muted, #475569);
  border-top: 3px solid var(--brand-600, #006A90);
  padding: 48px 0 24px;
}

.footer--shimadzu .footer__grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer--shimadzu .footer__brand p { color: var(--text-muted, #64748b); }

.footer--shimadzu .footer__title {
  color: var(--brand-900, #04506c);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer--shimadzu .footer__links a { color: var(--brand-700, #006A90); font-size: 0.875rem; }

.footer--shimadzu .footer__bottom {
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
  padding-top: 20px;
  color: #94a3b8;
  font-size: 0.8125rem;
}

.footer--shimadzu .footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer--shimadzu .footer__legal a { color: #64748b; font-size: 0.8125rem; }

@media (max-width: 1024px) {
  .sz-company-overview__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sz-company-overview__figure-inner img {
    aspect-ratio: 16 / 10;
  }

  .sz-featured,
  .sz-articles { grid-template-columns: repeat(2, 1fr); }
  .sz-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .sz-product-row { grid-template-columns: 200px 1fr; }
  .sz-special { grid-template-columns: 1fr; }
  .sz-partnerships__arrow { display: none; }
  .sz-partnerships__scroller { mask-image: none; }
  .sz-messe { grid-template-columns: 1fr; }
  .sz-showcase__panel { grid-template-columns: 1fr; }
  .sz-showcase__gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 16px; }
  .footer-classic__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-classic__brand { grid-column: 1 / -1; }
  .sz-news-item { grid-template-columns: 100px 1fr; }
  .sz-news-item__cat { grid-column: 2; }
  .sz-news-item__title { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .sz-showcase__gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sz-showcase__item img {
    max-height: 120px;
  }

  .sz-company-overview {
    padding: 40px 0 48px;
  }

  .sz-company-overview__frame {
    padding: 24px 20px;
  }

  .sz-company-overview__stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 0;
  }

  .sz-company-overview__stat {
    padding: 12px 0;
  }

  .sz-company-overview__stat:not(:last-child) {
    border-inline-end: none;
    border-bottom: 1px solid rgba(0, 90, 124, 0.1);
  }

  .sz-hero__slide { aspect-ratio: 16/10; max-height: 360px; }
  .sz-featured,
  .sz-articles { grid-template-columns: 1fr; }
  .sz-products-grid { grid-template-columns: 1fr; gap: 14px; }
  .sz-section__head--products { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sz-product-row { grid-template-columns: 1fr; }
  .sz-product-row__img { border-inline-end: none; border-bottom: 1px solid #e2e8f0; }
  .sz-special-card { grid-template-columns: 1fr; }
  .footer-classic__grid { grid-template-columns: 1fr; }
  .footer-classic__bottom { flex-direction: column; align-items: flex-start; }
  .footer--shimadzu:not(.footer--classic) .footer__grid { grid-template-columns: 1fr; }
}

/* Language switch loading — logo + spinner only */
.page-shimadzu .lang-overlay {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
}

.page-shimadzu .lang-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-shimadzu .lang-overlay__logo {
  width: auto;
  height: 52px;
  max-width: min(220px, 70vw);
  object-fit: contain;
}

.page-shimadzu .lang-overlay__spinner {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-top-color: var(--navbar-accent, #B1CC83);
  border-radius: 50%;
  animation: langOverlaySpin 0.75s linear infinite;
}

@keyframes langOverlaySpin {
  to { transform: rotate(360deg); }
}

.page-shimadzu .lang-overlay__globe,
.page-shimadzu .lang-overlay__text {
  display: none !important;
}
