:root {
  --navy: #20254e;
  --navy-deep: #1f245b;
  --navy-soft: #394073;
  --navy-lighter: #3c4478;
  --cyan: #239ed1;
  --pink: #ec008c;
  --rose: #aa7373;
  --ink: #171a35;
  --muted: #6f7385;
  --line: #e6e8f0;
  --off-white: #eff0ff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgb(20 24 55 / 12%);
  --container: 1180px;
  --header-height: 86px;
  --font-ar: "Cairo", sans-serif;
  --font-en: "Manrope", "Cairo", sans-serif;
  --hero-background-start: #1f245b;
  --hero-background-end: #20254e;
  --hero-background-overlay: #20254e;
  --hero-background-overlay-opacity: 0.62;
  --hero-min-height: 460px;
  --hero-watermark-width: 460px;
  --hero-watermark-opacity: 0.82;
  --hero-watermark-mobile-opacity: 0.38;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

html.is-programmatic-scrolling {
  scroll-behavior: auto;
}

main section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ar);
  line-height: 1.75;
  overflow-x: hidden;
}

body.navbar-hidden .site-header,
body.navbar-hidden .mobile-menu {
  display: none !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html[lang="en"] body {
  font-family: var(--font-en);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 80%, white);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgb(32 37 78 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.brand {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.08);
}

/* Never paint a stale, cached copy of the retired logo path. */
img[src$="assets/images/logo.png"] {
  visibility: hidden !important;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(13px, 1.85vw, 28px);
  flex: 1 1 auto;
  height: 100%;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-inline: 3px;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
  color: rgb(255 255 255 / 90%);
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  inset-block-end: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transition: inset-inline 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  inset-inline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 76px;
  min-height: 40px;
  padding: 4px 6px 4px 4px;
  color: var(--white);
  background: rgb(16 21 59 / 28%);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-switcher__current {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-en);
  font-size: 0.67rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgb(35 158 209 / 28%);
}

.language-switcher__next {
  min-width: 26px;
  color: rgb(255 255 255 / 82%);
  font-family: var(--font-en);
  font-size: 0.67rem;
  letter-spacing: 0.03em;
}

.language-switcher__divider {
  display: none;
}

.language-switcher:hover {
  background: rgb(16 21 59 / 48%);
  border-color: rgb(35 158 209 / 72%);
  transform: translateY(-1px);
}

.language-switcher:focus-visible {
  outline: 3px solid rgb(35 158 209 / 38%);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px 24px 28px;
  color: var(--white);
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 240ms ease, visibility 240ms ease, transform 280ms ease;
}

[dir="ltr"] .mobile-menu {
  transform: translateX(-100%);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
}

.mobile-menu__header img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__nav {
  align-self: center;
  display: grid;
  width: min(100%, 420px);
  margin-inline: auto;
}

.mobile-menu__nav a {
  position: relative;
  padding: 15px 8px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 90%);
  font-size: 1.14rem;
  font-weight: 700;
  transition: color 180ms ease, padding 180ms ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active {
  padding-inline-start: 20px;
  color: var(--white);
}

.mobile-menu__nav a.is-active::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 25%;
  width: 3px;
  border-radius: 99px;
  background: var(--cyan);
}

.mobile-menu__footer {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: rgb(255 255 255 / 68%);
  font-size: 0.72rem;
  text-align: center;
}

.mobile-language-switcher {
  margin-top: 10px;
  padding: 6px 15px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  cursor: pointer;
}

.page-loader {
  position: fixed;
  z-index: 9999;
  display: none;
  place-items: center;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 88%, rgb(35 158 209 / 24%), transparent 34%),
    radial-gradient(circle at 74% 10%, rgb(236 0 140 / 20%), transparent 28%),
    linear-gradient(110deg, rgb(31 36 91 / 99%), rgb(32 37 78 / 100%));
  transition: opacity 520ms ease, visibility 520ms ease;
}

.show-site-loader .page-loader {
  display: grid;
}

.page-loader::before {
  position: absolute;
  width: min(72vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  content: "";
  animation: loader-orbit 2.4s ease-in-out infinite;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.page-loader__brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  animation: loader-brand 1.65s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.page-loader__brand img {
  display: block;
  width: min(68vw, 290px);
  height: auto;
  filter: drop-shadow(0 16px 28px rgb(10 14 49 / 28%));
  animation: loader-logo-glow 1.65s ease-in-out infinite alternate;
}

.page-loader__progress {
  position: relative;
  width: min(52vw, 190px);
  height: 5px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 99px;
  background: rgb(255 255 255 / 8%);
}

.page-loader__progress::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 78%), transparent);
  filter: blur(1px);
  animation: loader-shimmer 1.05s ease-in-out infinite;
}

.page-loader__progress span {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 14px rgb(35 158 209 / 50%);
  animation: loader-progress 1.05s ease-in-out infinite;
}

@keyframes loader-progress {
  from { transform: translateX(-110%) scaleX(0.7); opacity: 0.55; }
  55% { opacity: 1; }
  to { transform: translateX(195%) scaleX(1); opacity: 0.75; }
}

@keyframes loader-orbit {
  0%, 100% { transform: scale(0.94) rotate(-2deg); opacity: 0.26; }
  50% { transform: scale(1.03) rotate(2deg); opacity: 0.72; }
}

@keyframes loader-brand {
  from { transform: translateY(5px) scale(0.985); }
  to { transform: translateY(-6px) scale(1); }
}

@keyframes loader-logo-glow {
  from { filter: drop-shadow(0 12px 20px rgb(10 14 49 / 18%)); }
  to { filter: drop-shadow(0 20px 34px rgb(35 158 209 / 34%)); }
}

@keyframes loader-shimmer {
  from { transform: translateX(-45px); opacity: 0; }
  35%, 70% { opacity: 0.9; }
  to { transform: translateX(205px); opacity: 0; }
}

.hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, var(--hero-background-start), var(--hero-background-end)),
    var(--navy);
  overflow: hidden;
}

html.hero-media-pending body[data-page="home"] .hero {
  background: var(--navy-deep);
  visibility: hidden;
}

html.hero-media-pending body[data-page="home"] .hero__media,
html.hero-media-pending body[data-page="home"] .hero::before,
html.hero-media-pending body[data-page="home"] .hero__glow {
  opacity: 0;
}

html.hero-media-pending body:not([data-page="home"]) .page-hero,
html.hero-media-pending body:not([data-page="home"]) .products-reference-hero {
  visibility: hidden;
}

html.brand-media-pending [data-about-story-logo],
html.brand-media-pending [data-home-about-logo],
html.brand-media-pending [data-home-about-logo-tint] {
  visibility: hidden;
}

.hero::before {
  position: absolute;
  z-index: 2;
  display: none;
  inset: 0;
  content: "";
  background: var(--hero-background-overlay);
  opacity: var(--hero-background-overlay-opacity);
  pointer-events: none;
}

.hero--image::before,
.hero--video::before {
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  opacity: 0.88;
  z-index: 5;
}

.hero__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  transition: opacity 220ms ease;
}

.hero__media img,
.hero__media video,
.hero__media canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media canvas {
  position: absolute;
  inset: 0;
}

.hero__glow {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.22;
}

.hero__glow--one {
  width: 450px;
  height: 450px;
  inset-inline-start: -180px;
  inset-block-end: -300px;
  background: var(--cyan);
}

.hero__glow--two {
  width: 320px;
  height: 320px;
  inset-inline-end: 30%;
  inset-block-start: -260px;
  background: var(--pink);
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-block: 78px;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__visual img {
  width: min(100%, var(--hero-watermark-width));
  height: 370px;
  object-fit: fill;
  opacity: var(--hero-watermark-opacity);
}

body.home-hero-hidden .clients {
  padding-top: calc(var(--header-height) + 46px);
}

.hero__content {
  order: -1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

[lang="en"] .hero h1 {
  max-width: 610px;
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

[dir="ltr"] .hero__inner {
  grid-template-columns: 1.08fr 0.92fr;
}

[dir="ltr"] .hero__content {
  max-width: 640px;
}

.hero__content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  padding: 10px 23px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgb(0 0 0 / 18%);
}

.button--light {
  color: var(--navy);
  background: var(--white);
}

.button--cyan {
  color: var(--white);
  background: var(--cyan);
}

.section {
  padding-block: clamp(70px, 8vw, 108px);
}

.section-heading {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 7px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  inset-inline: 4%;
  inset-block-end: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(10px, 1.5vw, 24px);
  row-gap: 28px;
  direction: ltr;
}

/* Home clients always flow in three columns; extra clients create new rows. */
.clients .client-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.client-card {
  min-width: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}
.client-card--dynamic img {
  width: min(200px, 96%);
  height: 84px;
  object-fit: contain;
  display: block;
}

.contact-form__note.is-success {
  color: #17734b;
  font-weight: 700;
}

.client-card:hover {
  transform: translateY(-4px) scale(1.035);
  filter: saturate(1.12);
}

.clients {
  padding-block: 28px 44px;
  background: var(--white);
}

.clients__container {
  width: min(calc(100% - 64px), 1680px);
}

.clients .section-heading {
  margin-bottom: 30px;
}

.client-logo-art {
  --client-logo-scale: 1;
  --client-logo-wide-factor: 1;
  flex: 0 0 auto;
  display: block;
  height: 82px;
  background-image: url("../images/clients/temporary-client-logos-sprite.png");
  background-repeat: no-repeat;
  background-size: 1816px 379px;
  transform: scale(var(--client-logo-scale)) scale(var(--client-logo-wide-factor));
  transform-origin: center;
}

.client-logo-art--servier { width: 150px; background-position: -64px -118px; }
.client-logo-art--novartis { width: 270px; background-position: -392px -120px; }
.client-logo-art--astrazeneca { width: 190px; background-position: -803px -112px; }
.client-logo-art--pharco { width: 190px; background-position: -1190px -112px; }
.client-logo-art--eva { width: 150px; background-position: -1588px -110px; }
.client-logo-art--gsk { width: 145px; background-position: -58px -225px; }
.client-logo-art--sanofi { width: 200px; background-position: -414px -225px; }
.client-logo-art--amoun { width: 160px; background-position: -815px -225px; }
.client-logo-art--pfizer { width: 160px; background-position: -1200px -225px; }
.client-logo-art--gnp { width: 150px; background-position: -1584px -220px; }

@media (max-width: 1450px) {
  .client-logo-art { --client-logo-scale: 0.9; }
  .client-logo-art--novartis { --client-logo-wide-factor: 0.88; }
}

.client-badge {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 10px;
  box-shadow: 0 7px 16px rgb(32 37 78 / 14%);
  place-items: center;
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.client-badge--navy { background: var(--navy); }
.client-badge--cyan { background: var(--cyan); }
.client-badge--pink { background: var(--pink); }

.client-name {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.client-type {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
}

.bag-mark {
  width: 82px;
  height: 30px;
  border-radius: 5px;
  transform: skewX(-8deg) rotate(5deg);
  box-shadow: 0 9px 18px rgb(32 37 78 / 13%);
}

.bag-mark--navy { background: var(--navy); }
.bag-mark--cyan { background: var(--cyan); }
.bag-mark--pink { background: var(--pink); }

.products {
  position: relative;
  padding-block: clamp(70px, 8vw, 100px);
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.products::before,
.products::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.09;
  pointer-events: none;
}

.products::before {
  inset-inline-start: -180px;
  inset-block-start: -130px;
  background: var(--cyan);
}

.products::after {
  inset-inline-end: -180px;
  inset-block-end: -140px;
  background: var(--pink);
}

.products--showcase {
  padding-block: clamp(38px, 4vw, 52px) 0;
}

.products--showcase > .container {
  position: relative;
  z-index: 2;
}

.products--showcase .section-heading {
  margin-bottom: 24px;
}

.products__showcase-footer {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 94px;
  background: var(--navy);
  place-items: center;
}

.products--showcase .products__all {
  margin: 0;
  padding: 10px 24px;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.products--showcase .products__all:hover,
.products--showcase .products__all:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.section-heading--light h2 {
  color: var(--white);
}

.product-slider {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 620px) 56px;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
}

.product-slide {
  text-align: center;
}

.product-slide h3 {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.product-slide p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 66%);
}

.product-preview {
  width: min(100%, 480px);
  height: 160px;
  margin-inline: auto;
  background: var(--rose);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 12%), 0 18px 45px rgb(0 0 0 / 18%);
  transition: background 220ms ease, transform 220ms ease;
}

.product-preview.is-changing {
  transform: scale(0.96);
}

.slider-arrow {
  width: 52px;
  height: 52px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-arrow:hover {
  background: rgb(255 255 255 / 10%);
  border-color: var(--cyan);
  transform: scale(1.06);
}

.slider-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dot {
  width: 24px;
  height: 5px;
  padding: 0;
  border-radius: 99px;
  background: rgb(255 255 255 / 55%);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  width: 36px;
  background: var(--pink);
}

.products__all {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 24px auto 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.86rem;
}

.product-catalog {
  position: fixed;
  z-index: 190;
  inset: 0;
  display: none;
  padding-block: 0 64px;
  color: var(--white);
  background: var(--navy);
  overflow-y: auto;
}

.product-catalog.is-open {
  display: block;
}

.catalog-overlay__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 54px);
  direction: ltr;
  background: rgb(32 37 78 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(12px);
}

.catalog-overlay__header img {
  width: 142px;
  border-radius: 8px;
}

.catalog-overlay__close {
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.catalog-overlay__body {
  padding-top: 56px;
}

.product-catalog .section-heading h2 {
  color: var(--white);
}

.product-catalog .section-heading p {
  color: rgb(255 255 255 / 62%);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.catalog-card {
  padding: 22px 18px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgb(32 37 78 / 5%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgb(32 37 78 / 11%);
}

.catalog-card h3 {
  margin: 18px 0 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.catalog-swatch {
  display: block;
  width: 112px;
  max-width: 80%;
  height: 66px;
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgb(32 37 78 / 12%);
}

.swatch-cyan { background: var(--cyan); }
.swatch-purple { background: var(--navy-soft); }
.swatch-red { background: #a11f24; }
.swatch-light { background: #edf0f4; }
.swatch-offwhite { background: #f7f5ef; border: 1px solid #e6e2d7; }

.about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.about__visual {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: visible;
}

.about__visual::before {
  display: none;
}

.about__visual::after {
  position: absolute;
  bottom: 23px;
  inset-inline-start: 50%;
  width: 62px;
  height: 4px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, var(--pink) 0 47%, var(--cyan) 47% 100%);
  transform: translateX(-50%);
}

.about__visual img {
  position: relative;
  z-index: 1;
  width: min(78%, 325px);
  height: 174px;
  object-fit: fill;
  opacity: 0.84;
  filter: none;
}

.about__logo-tint {
  display: block;
  position: relative;
  z-index: 1;
  width: min(78%, 325px);
  height: 174px;
  background: var(--navy);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.section-heading--inline {
  margin: 0 0 24px;
  text-align: start;
}

.about__content p {
  margin: 0 0 24px;
  color: #4e5368;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  color: var(--navy);
  background: var(--off-white);
  font-size: 0.84rem;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 20px;
  color: var(--cyan);
}

.quality {
  color: var(--white);
  background: var(--navy-soft);
}

.quality__inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 60px;
  padding-block: 45px;
}

.quality__number {
  display: block;
  color: var(--cyan);
  font-family: var(--font-en);
  font-size: 0.85rem;
}

.quality h2 {
  margin: 3px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.quality p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 1.04rem;
}

.site-footer {
  padding-top: 54px;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.65fr 1.2fr 1.25fr;
  gap: clamp(24px, 3.5vw, 54px);
  padding-bottom: 45px;
}

.footer-brand img {
  width: 150px;
  height: 136px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  margin: 16px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.82rem;
}

.footer-nav,
.contact-list {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer-nav h2,
.contact-list h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-nav a,
.contact-list a,
.contact-list > span {
  color: rgb(255 255 255 / 64%);
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.contact-list a:hover {
  color: var(--cyan);
}

.contact-list a,
.contact-list > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Keep phone numbers stable on iOS Safari, where emoji glyph metrics can shrink the text column. */
.contact-list > a:first-of-type {
  min-width: max-content;
  flex-wrap: nowrap;
}

.contact-list > a:first-of-type > span:last-child,
.contact-details__item a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-icon {
  flex: 0 0 22px;
  color: var(--cyan);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-variant-emoji: text;
  line-height: 1.25;
  text-align: center;
}

.contact-list > a:first-of-type .contact-icon,
.contact-list > a:nth-of-type(2) .contact-icon {
  font-size: 0;
}

.contact-list > a:first-of-type .contact-icon::before {
  content: "\260E\FE0E";
  font-size: 0.9rem;
}

.contact-list > a:nth-of-type(2) .contact-icon::before {
  content: "\2709\FE0E";
  font-size: 0.9rem;
}

.footer-map {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-map h2 {
  margin: 0;
  font-size: 1rem;
}

.footer-map__frame {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 14px 32px rgb(4 8 30 / 22%);
}

.footer-map__frame iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
  filter: saturate(0.82) contrast(1.03);
  pointer-events: none;
}

.footer-map__link {
  position: absolute;
  z-index: 1;
  display: grid;
  inset: 0;
  place-items: end start;
  padding: 10px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 52%, rgb(9 14 49 / 72%));
}

.footer-map__link span {
  padding: 6px 10px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(32 37 78 / 82%);
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-map__link:hover span {
  color: var(--navy);
  background: var(--cyan);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding-block: 20px;
  color: rgb(255 255 255 / 46%);
  border-top: 1px solid rgb(255 255 255 / 9%);
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  inset-inline-end: 22px;
  inset-block-end: 22px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgb(32 37 78 / 24%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Global scroll reveal system */
.scroll-reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--scroll-reveal-delay, 0ms);
}

.scroll-reveal--scale {
  transform: translateY(24px) scale(0.965);
}

[dir="rtl"] .scroll-reveal--from-start,
[dir="ltr"] .scroll-reveal--from-end {
  transform: translateX(46px);
}

[dir="rtl"] .scroll-reveal--from-end,
[dir="ltr"] .scroll-reveal--from-start {
  transform: translateX(-46px);
}

.scroll-reveal.is-in-view {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 640px) {
  .scroll-reveal {
    transform: translateY(28px);
    transition-duration: 980ms;
  }

  main > section.scroll-reveal {
    filter: blur(2px);
    transform: translateY(44px) scale(0.992);
  }

  [dir="rtl"] .scroll-reveal--from-start,
  [dir="ltr"] .scroll-reveal--from-end {
    transform: translateX(26px);
  }

  [dir="rtl"] .scroll-reveal--from-end,
  [dir="ltr"] .scroll-reveal--from-start {
    transform: translateX(-26px);
  }

  .scroll-reveal.is-in-view {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1100px) {
  :root { --container: 940px; }
  .desktop-nav { gap: 11px; }
  .nav-link { padding-inline: 2px; font-size: 0.84rem; }
  .brand { width: 70px; height: 70px; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-card:nth-last-child(-n + 2) { grid-column: span 1; }
  .client-logo-art { --client-logo-scale: 0.78; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-list, .footer-map { grid-column: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .desktop-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .brand { width: 62px; height: 62px; }
  .menu-toggle { display: block; }
  .hero { min-height: 610px; }
  .hero__inner { grid-template-columns: 0.7fr 1.3fr; gap: 42px; }
  .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logo-art { --client-logo-scale: 1.05; }
  .client-logo-art--novartis { --client-logo-wide-factor: 0.95; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { gap: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-list, .footer-map { grid-column: auto; }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: sticky; width: 100%; background: var(--navy); border: 0; backdrop-filter: none; }
  .brand { width: 54px; height: 54px; }
  .language-switcher { min-width: 70px; min-height: 36px; padding: 3px 5px 3px 3px; }
  .language-switcher__current { width: 28px; height: 28px; flex-basis: 28px; font-size: 0.62rem; }
  .menu-toggle { width: 38px; height: 38px; padding: 8px; order: 0; }
  .hero { min-height: 0; padding-top: var(--header-height); border-radius: 0 0 22px 22px; }
  .hero__inner { display: block; padding-block: 34px 142px; text-align: center; }
  .hero__visual {
    position: absolute;
    z-index: 0;
    display: grid;
    width: 100%;
    height: 104px;
    inset-inline: 0;
    inset-block-end: 24px;
    pointer-events: none;
  }
  .hero__visual img {
    width: min(var(--hero-watermark-width), 210px, 68vw);
    height: 104px;
    object-fit: contain;
    opacity: var(--hero-watermark-mobile-opacity);
  }
  .hero__visual::after {
    position: absolute;
    inset-inline-start: 50%;
    inset-block-end: -8px;
    width: 42px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--pink) 0 47%, transparent 47% 53%, var(--cyan) 53% 100%);
    transform: translateX(-50%);
  }
  .hero__content { position: relative; z-index: 1; max-width: none; }
  .eyebrow { font-size: 0.72rem; }
  .hero h1 { margin-bottom: 14px; font-size: clamp(1.75rem, 8vw, 2.35rem); line-height: 1.45; }
  .hero__content > p:not(.eyebrow) { max-width: 34rem; margin-inline: auto; font-size: 0.84rem; line-height: 1.9; }
  .hero__actions { justify-content: center; gap: 10px; margin-top: 23px; }
  .button { min-width: 132px; min-height: 42px; padding: 8px 16px; font-size: 0.78rem; }
  .section { padding-block: 58px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 1.6rem; }
  .section-heading p { margin-top: 8px; font-size: 0.76rem; }
  .clients { padding-block: 34px 44px; }
  .clients__container { width: min(calc(100% - 20px), 1680px); }
  .client-grid { grid-template-columns: repeat(2, 1fr); column-gap: 6px; row-gap: 14px; }
  .client-card { min-height: 58px; }
  .client-card--dynamic img { width: min(160px, 96%); height: 74px; }
  .client-logo-art { --client-logo-scale: 0.78; }
  .client-logo-art--novartis { --client-logo-wide-factor: 0.88; }
  .bag-mark { width: 58px; height: 22px; border-radius: 4px; }
  .products { padding-block: 58px; }
  .product-slider { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 8px; }
  .slider-arrow { width: 34px; height: 34px; border: 0; font-size: 2rem; }
  .product-slide h3 { font-size: 1.35rem; }
  .product-slide p { min-height: 44px; margin-bottom: 15px; font-size: 0.72rem; }
  .product-preview { height: 92px; border-radius: 6px; }
  .slider-dots { gap: 7px; margin-top: 15px; }
  .slider-dot { width: 16px; height: 4px; }
  .slider-dot.is-active { width: 25px; }
  .products__all { margin-top: 18px; font-size: 0.75rem; }
  .catalog-grid { grid-template-columns: 1fr; gap: 12px; }
  .catalog-card { display: grid; grid-template-columns: 98px 1fr; column-gap: 18px; align-items: center; text-align: start; padding: 15px; }
  .catalog-swatch { grid-row: 1 / 3; width: 98px; max-width: none; height: 64px; }
  .catalog-card h3 { margin: 0 0 3px; }
  .catalog-card p { margin: 0; }
  .product-catalog { padding-bottom: 28px; }
  .catalog-overlay__header { min-height: 64px; padding: 9px 16px; }
  .catalog-overlay__header img { width: 112px; }
  .catalog-overlay__body { padding-top: 34px; }
  .product-catalog .catalog-card {
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    border-radius: 0;
    box-shadow: none;
  }
  .product-catalog .catalog-card h3 { color: var(--white); }
  .product-catalog .catalog-card p { color: rgb(255 255 255 / 58%); }
  .about__inner { grid-template-columns: 1fr; gap: 20px; }
  .about__visual {
    min-height: 140px;
    order: -1;
    overflow: hidden;
  }
  .about__visual::after { bottom: 7px; }
  .about__visual img {
    width: min(78%, 275px);
    height: auto;
    max-height: 118px;
    object-fit: contain;
    opacity: 0.78;
  }
  .about__logo-tint { width: min(78%, 275px); height: 118px; }
  .section-heading--inline { margin-bottom: 18px; text-align: center; }
  .about__content { text-align: center; }
  .about__content p {
    max-width: 34rem;
    margin: 0 auto 20px;
    font-size: 0.86rem;
    line-height: 1.95;
  }
  .quality__inner { min-height: 0; grid-template-columns: 1fr; gap: 18px; padding-block: 42px; text-align: center; }
  .quality p { font-size: 0.86rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-brand p { margin-inline: auto; }
  .footer-nav { display: none; }
  .contact-list { grid-column: auto; justify-items: center; }
  .footer-map { width: min(100%, 360px); margin-inline: auto; text-align: start; }
  .footer-map h2 { text-align: center; }
  .contact-list a, .contact-list > span { max-width: 310px; text-align: start; }
  .footer-legal { display: grid; justify-content: center; text-align: center; }
  .back-to-top { inset-inline-end: 14px; inset-block-end: 14px; width: 40px; height: 40px; }
}

@media (max-width: 390px) {
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.site-motion-enabled) {
    scroll-behavior: auto !important;
  }

  html:not(.site-motion-enabled) *,
  html:not(.site-motion-enabled) *::before,
  html:not(.site-motion-enabled) *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  padding-block: 88px 76px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgb(31 36 91 / 97%), rgb(32 37 78 / 98%)),
    var(--navy);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.22;
  pointer-events: none;
}

.page-hero::before {
  width: 450px;
  height: 450px;
  inset-inline-start: -180px;
  inset-block-end: -300px;
  background: var(--cyan);
}

.page-hero::after {
  width: 320px;
  height: 320px;
  inset-inline-end: 30%;
  inset-block-start: -260px;
  background: var(--pink);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 58px;
}

.page-hero__content { max-width: 680px; }

.page-hero .eyebrow { color: var(--cyan); }

.page-hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.page-hero__lead {
  max-width: 640px;
  margin: 19px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 1rem;
  line-height: 2;
}

.page-hero__mark {
  display: grid;
  min-height: 200px;
  place-items: center;
}

.page-hero__mark img {
  width: min(100%, 430px);
  height: 270px;
  object-fit: fill;
  opacity: 0.8;
  filter: none;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.76rem;
}

.breadcrumbs a { color: inherit; }
.breadcrumbs a:hover { color: var(--cyan); }

.inner-section { padding-block: 86px; }

.content-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.content-split__visual {
  display: grid;
  min-height: 350px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f7fc 0%, #eff0ff 100%);
  border-radius: 24px;
}

.content-split__visual img {
  width: min(78%, 390px);
  opacity: 0.78;
}

.content-split__content > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.content-split__content .section-heading { margin-bottom: 18px; }
.content-split__content .section-heading h2 { text-align: start; }
.content-split__content .section-heading h2::after { margin-inline: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.feature-card {
  position: relative;
  min-height: 202px;
  padding: 27px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgb(32 37 78 / 6%);
}

.feature-card::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--cyan);
  border-radius: 10px;
  content: attr(data-number);
  place-items: center;
  font-family: var(--display-font);
  font-size: 0.9rem;
}

.feature-card:nth-child(2)::before { background: var(--pink); }
.feature-card:nth-child(3)::before { background: var(--navy); }
.feature-card h2, .feature-card h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.87rem; line-height: 1.8; }

.page-panel {
  padding: 60px;
  color: var(--white);
  background: var(--navy);
  border-radius: 24px;
}

.page-panel__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.page-panel h2 { margin: 0 0 9px; color: var(--white); font-size: clamp(1.55rem, 2.8vw, 2.25rem); }
.page-panel p { max-width: 660px; margin: 0; color: rgb(255 255 255 / 66%); line-height: 1.9; }

.product-showcase {
  padding-top: 68px;
  background: var(--white);
  overflow: hidden;
}

.product-showcase__intro {
  margin-bottom: 48px;
  text-align: center;
}

.product-showcase__intro .eyebrow {
  margin-bottom: 6px;
}

.product-showcase__intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.3;
}

.product-showcase__intro > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.product-showcase-band {
  position: relative;
  min-height: clamp(360px, 29vw, 430px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.product-showcase-band::before {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  inset-inline-end: -160px;
  inset-block-start: -250px;
  content: "";
  background: rgb(35 158 209 / 5%);
  border-radius: 50%;
  filter: blur(8px);
}

.product-showcase-band--cyan {
  background: var(--white);
}

.product-showcase-band--pink {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-showcase-band--navy {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-showcase-band > h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 28px 90px 0;
  text-align: center;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.product-showcase__viewport {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.product-showcase__track {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  inset-inline-start: 0;
  inset-block-end: -58px;
  will-change: transform;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase__track img {
  flex: 0 0 auto;
  width: clamp(1450px, 106vw, 1900px);
  max-width: none;
  height: auto;
  display: block;
  filter: brightness(1.08) contrast(1.04) drop-shadow(0 18px 18px rgb(18 30 62 / 12%));
  user-select: none;
  pointer-events: none;
}

.bag-carousel__viewport {
  position: absolute;
  z-index: 2;
  inset-inline: clamp(72px, 8vw, 132px);
  inset-block: 108px 20px;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
  -webkit-user-select: none;
  user-select: none;
}

.bag-carousel__viewport.is-swiping {
  cursor: grabbing;
}

.bag-carousel__viewport.is-swiping .bag-carousel__track {
  transition: none !important;
}

.bag-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 22px;
  direction: ltr;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.products--showcase [data-product-autoplay] .bag-carousel__track,
.reference-category[data-product-autoplay] .bag-carousel__track {
  transition-duration: 650ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.products--showcase [data-product-loop] .bag-carousel__track,
.reference-category[data-product-loop] .bag-carousel__track {
  transition-duration: 340ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 901px) {
  .products--showcase [data-product-autoplay] .bag-carousel__track {
    gap: 62px;
  }

  .products--showcase [data-product-autoplay] .bag-product {
    flex-basis: calc((100% - 248px) / 5);
  }

  .products--showcase [data-product-autoplay] .bag-product__media {
    padding-inline: 13px;
  }

  .reference-category .bag-product {
    flex-basis: calc((100% - (4 * clamp(36px, 5vw, 78px))) / 5);
  }
}

.bag-product {
  position: relative;
  flex: 0 0 calc((100% - 110px) / 6);
  min-width: 0;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bag-product:hover {
  transform: translateY(-5px);
}

.bag-product__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  padding: 10px 18px 4px;
  background: transparent;
  place-items: center;
  overflow: visible;
}

.bag-product__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--white) 0%, transparent 9%, transparent 91%, var(--white) 100%);
  pointer-events: none;
}

.bag-product__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  filter: drop-shadow(0 14px 14px rgb(32 37 78 / 12%));
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: center;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bag-product:hover .bag-product__media img {
  transform: scale(1.035);
}

/* Home showcase: oversized products share one clean horizontal crop line. */
.products--showcase .bag-product__media {
  padding: 0;
  overflow: visible;
  clip-path: inset(0 -30% 0 -30%);
}

.products--showcase .bag-product__media::after {
  display: none;
}

.products--showcase .bag-product__media img {
  position: absolute;
  width: auto;
  height: 160%;
  max-width: 150%;
  max-height: none;
  inset-block-start: 0;
  inset-inline-start: 50%;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  transform-origin: center top;
}

.products--showcase .bag-product:hover .bag-product__media img {
  transform: translateX(-50%) scale(1.035);
}

.products--showcase .is-product-focus-ready .bag-product,
.reference-category.is-product-focus-ready:not(.is-expanded) .bag-product {
  z-index: 1;
  opacity: 0.48;
  filter: blur(1.35px) saturate(0.82);
  transform: scale(0.9);
  transform-origin: center bottom;
  transition: opacity 420ms ease, filter 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.products--showcase [data-product-loop].is-product-focus-ready .bag-product,
.reference-category[data-product-loop].is-product-focus-ready:not(.is-expanded) .bag-product {
  transition: opacity 240ms ease, filter 240ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.products--showcase .is-product-focus-ready .bag-product.is-product-near-focus,
.reference-category.is-product-focus-ready:not(.is-expanded) .bag-product.is-product-near-focus {
  opacity: 0.74;
  filter: blur(0.7px) saturate(0.92);
  transform: scale(0.96);
}

.products--showcase .is-product-focus-ready .bag-product.is-product-focus,
.reference-category.is-product-focus-ready:not(.is-expanded) .bag-product.is-product-focus {
  z-index: 2;
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

.bag-product h3 {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 9px 10px;
  inset-inline: 8px;
  inset-block-end: 8px;
  color: var(--white);
  background: rgb(32 37 78 / 90%);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgb(32 37 78 / 16%);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bag-product:hover h3,
.bag-product:focus h3,
.bag-product:focus-visible h3 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bag-product:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
  border-radius: 8px;
}

.product-showcase__arrow {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  inset-block-start: 60%;
  color: var(--navy);
  background: rgb(255 255 255 / 84%);
  border: 2px solid rgb(32 37 78 / 52%);
  border-radius: 50%;
  place-items: center;
  font: 700 2rem/1 var(--font-en);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.product-showcase__arrow:hover,
.product-showcase__arrow:focus-visible {
  color: var(--white);
  background: var(--navy);
  outline: none;
  transform: translateY(-50%) scale(1.07);
}

.product-showcase__arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.product-showcase__arrow--prev { inset-inline-start: clamp(20px, 5vw, 92px); }
.product-showcase__arrow--next { inset-inline-end: clamp(20px, 5vw, 92px); }

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-page-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgb(32 37 78 / 6%);
}

.product-page-card__visual {
  display: grid;
  height: 150px;
  place-items: center;
  background: #f6f7fc;
}

.product-page-card__visual span {
  display: block;
  width: 58%;
  height: 64px;
  border-radius: 9px;
  box-shadow: 0 16px 24px rgb(32 37 78 / 18%);
  transform: rotate(5deg);
}

.product-page-card:nth-child(2) .product-page-card__visual span { transform: rotate(-5deg); }
.product-page-card__body { padding: 24px; }
.product-page-card h2 { margin: 0 0 8px; color: var(--navy); font-size: 1.13rem; }
.product-page-card p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.8; }

/* Products page — spacious category layout inspired by the approved reference. */
.products-reference-page {
  background: var(--white);
}

.products-reference-hero {
  position: relative;
  min-height: 450px;
  display: grid;
  background: var(--navy);
  isolation: isolate;
  place-items: center;
  overflow: hidden;
}

.products-reference-hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgb(35 158 209 / 35%), transparent 32%),
    radial-gradient(circle at 82% 72%, rgb(236 0 140 / 24%), transparent 34%),
    linear-gradient(135deg, #161a42, #20254e 52%, #282d68);
}

.products-reference-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(32 37 78 / 91%), rgb(32 37 78 / 74%) 48%, rgb(32 37 78 / 90%)),
    linear-gradient(0deg, rgb(32 37 78 / 34%), transparent 45%);
}

.products-reference-hero__content {
  max-width: 880px;
  padding-block: 72px;
  color: var(--white);
  text-align: center;
}

.products-reference-hero__content .eyebrow {
  margin-bottom: 12px;
  color: var(--cyan);
}

.products-reference-hero__content h1 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: 1.18;
}

.products-reference-hero__content > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
  line-height: 1.9;
}

/* Per-page hero media managed from Admin > Page content. */
.managed-page-hero {
  --managed-page-hero-start: #1f245b;
  --managed-page-hero-end: #20254e;
  --managed-page-hero-overlay: #20254e;
  --managed-page-hero-overlay-opacity: 0.62;
  --managed-page-hero-height: 365px;
  --managed-page-hero-watermark-width: 430px;
  --managed-page-hero-watermark-opacity: 0.8;
  --managed-page-hero-watermark-mobile-opacity: 0.28;
  min-height: var(--managed-page-hero-height);
  isolation: isolate;
  background: linear-gradient(110deg, var(--managed-page-hero-start), var(--managed-page-hero-end));
}

.managed-page-hero__media,
.managed-page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.managed-page-hero__media { z-index: -3; }
.managed-page-hero__overlay {
  z-index: -2;
  background: var(--managed-page-hero-overlay);
  opacity: 0;
}

.managed-page-hero--image .managed-page-hero__overlay,
.managed-page-hero--video .managed-page-hero__overlay {
  opacity: var(--managed-page-hero-overlay-opacity);
}

.managed-page-hero__media img,
.managed-page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-page-hero.page-hero::before,
.managed-page-hero.page-hero::after { z-index: -1; }

.managed-page-hero .page-hero__inner,
.managed-page-hero .products-reference-hero__content {
  position: relative;
  z-index: 2;
}

.managed-page-hero .page-hero__mark img {
  width: min(100%, var(--managed-page-hero-watermark-width));
  opacity: var(--managed-page-hero-watermark-opacity);
}

.managed-page-hero.products-reference-hero::after,
.managed-page-hero .products-reference-hero__backdrop { display: none; }

.managed-page-hero__watermark {
  position: absolute;
  z-index: 1;
  width: min(32vw, var(--managed-page-hero-watermark-width));
  max-height: 72%;
  inset-inline-start: 7%;
  inset-block-start: 50%;
  object-fit: contain;
  opacity: var(--managed-page-hero-watermark-opacity);
  transform: translateY(-50%);
  pointer-events: none;
}

.products-reference-intro {
  padding-block: 64px 46px;
  background: var(--white);
  text-align: center;
}

.products-reference-intro__inner {
  max-width: 760px;
}

.products-reference-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.25;
}

.products-reference-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.reference-category {
  position: relative;
  padding-block: 34px 28px;
  background: var(--white);
  border-top: 1px solid rgb(32 37 78 / 5%);
  overflow: hidden;
}

.reference-category__heading {
  max-width: 820px;
  text-align: center;
}

.reference-category__heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
  font-weight: 600;
  line-height: 1.25;
}

.reference-category--cyan .reference-category__heading h2,
.reference-category--cyan .reference-category__view-all { color: var(--cyan); }

.reference-category--pink .reference-category__heading h2,
.reference-category--pink .reference-category__view-all { color: var(--pink); }

.reference-category--navy .reference-category__heading h2,
.reference-category--navy .reference-category__view-all { color: var(--navy); }

.reference-category__heading p {
  max-width: 690px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.reference-category__carousel {
  position: relative;
  height: 292px;
  max-width: 1280px;
  margin: 16px auto 0;
}

.reference-category .bag-carousel__viewport {
  inset-inline: clamp(82px, 8vw, 126px);
  inset-block: 0;
}

.reference-category .bag-carousel__track {
  gap: clamp(36px, 5vw, 78px);
}

.reference-category .bag-product {
  flex-basis: calc((100% - (4 * clamp(36px, 5vw, 78px))) / 5);
}

.reference-category .bag-product__media {
  min-height: 272px;
  padding: 10px 4px 2px;
}

.reference-category .bag-product__media::after {
  display: none;
}

.reference-category .bag-product__media img {
  width: 130%;
  max-width: 130%;
  max-height: 268px;
  filter: drop-shadow(0 16px 13px rgb(32 37 78 / 11%));
}

.reference-category .bag-product h3 {
  inset-inline: 2px;
  inset-block-end: 4px;
}

.reference-category .bag-product__media {
  cursor: zoom-in;
}

.reference-category.is-product-focus-ready:not(.is-expanded) .bag-product:hover {
  z-index: 10;
  opacity: 1;
  filter: none;
}

.product-magnifier {
  position: fixed;
  z-index: 9999;
  width: clamp(190px, 20vw, 270px);
  aspect-ratio: 1;
  overflow: visible;
  background-color: var(--white);
  background-repeat: no-repeat;
  border: 2px solid rgb(32 37 78 / 48%);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgb(15 19 48 / 34%), 0 3px 10px rgb(15 19 48 / 24%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
  transform-origin: center;
  transition: opacity 150ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-magnifier::before {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: calc(100% + 10px);
  max-width: min(280px, 80vw);
  padding: 7px 16px;
  overflow: hidden;
  color: var(--white);
  background: rgb(32 37 78 / 94%);
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgb(15 19 48 / 24%);
  content: attr(data-product-name);
  font-size: clamp(.78rem, 1.2vw, .95rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(-50%);
}

.product-magnifier.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (hover: none), (pointer: coarse) {
  .product-magnifier {
    display: none;
  }

  .reference-category .bag-product__media {
    cursor: default;
  }
}

.reference-category .product-showcase__arrow {
  width: 44px;
  height: 44px;
  inset-block-start: 50%;
  color: var(--navy);
  background: transparent;
  border-color: rgb(32 37 78 / 42%);
}

.reference-category--cyan .product-showcase__arrow:hover,
.reference-category--cyan .product-showcase__arrow:focus-visible { background: var(--cyan); border-color: var(--cyan); }

.reference-category--pink .product-showcase__arrow:hover,
.reference-category--pink .product-showcase__arrow:focus-visible { background: var(--pink); border-color: var(--pink); }

.reference-category--navy .product-showcase__arrow:hover,
.reference-category--navy .product-showcase__arrow:focus-visible { background: var(--navy); border-color: var(--navy); }

.reference-category__view-all {
  display: block;
  width: max-content;
  margin: 4px auto 0;
  padding: 6px 18px;
  background: transparent;
  color: inherit;
  font-size: 1.18rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.reference-category__view-all:hover,
.reference-category__view-all:focus-visible {
  opacity: 0.78;
  transform: translateY(-2px);
}

.reference-category__show-less { display: none; }
.reference-category.is-expanded .reference-category__show-more { display: none; }
.reference-category.is-expanded .reference-category__show-less { display: inline; }

.reference-category.is-expanded {
  overflow: visible;
}

.reference-category.is-expanded .reference-category__carousel {
  height: auto;
}

.reference-category.is-expanded .bag-carousel__viewport {
  position: relative;
  inset: auto;
  max-width: 1050px;
  margin-inline: auto;
  overflow: visible;
}

.reference-category.is-expanded .bag-carousel__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: auto;
  transform: none !important;
}

.reference-category.is-expanded .bag-product {
  min-height: 272px;
}

.reference-category.is-expanded .product-showcase__arrow {
  display: none;
}

.products-reference-features {
  background: var(--white);
}

.category-gallery-page {
  background: var(--white);
}

.category-gallery-hero {
  padding-block: 72px 54px;
  background: linear-gradient(180deg, #f5f8fb 0%, var(--white) 100%);
  border-bottom: 1px solid rgb(32 37 78 / 8%);
}

.category-gallery-hero__inner {
  text-align: center;
}

.category-gallery-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.category-gallery-hero h1 {
  max-width: 900px;
  margin: 8px auto 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 5.6vw, 4.7rem);
  line-height: 1.15;
}

.category-gallery-hero p:last-child {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.category-gallery-content {
  padding-block: 60px 88px;
}

.category-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 62px;
  max-width: 1080px;
  margin-inline: auto;
}

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

.product-gallery-card__stage {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  place-items: center;
  background: #f1f2f3;
  border-radius: 5px;
  cursor: zoom-in;
}

.product-gallery-card__main-image {
  width: 100%;
  height: 380px;
  max-width: 88%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgb(32 37 78 / 14%));
  transition: opacity 160ms ease, transform 260ms ease;
}

.product-gallery-card__main-image.is-switching {
  opacity: 0;
  transform: scale(0.97);
}

.product-gallery-card__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.product-gallery-card__thumb {
  width: 70px;
  height: 78px;
  padding: 5px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(32 37 78 / 22%);
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-gallery-card__thumb:hover,
.product-gallery-card__thumb:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.product-gallery-card__thumb.is-active {
  border: 2px solid var(--navy);
}

.product-gallery-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-gallery-card h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .category-gallery-hero {
    padding-block: 48px 38px;
  }

  .category-gallery-content {
    padding-block: 36px 62px;
  }

  .category-gallery-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-gallery-card__stage {
    min-height: 360px;
    padding: 18px;
  }

  .product-gallery-card__main-image {
    height: 324px;
  }
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step { position: relative; padding: 24px 0; }
.process-step:not(:last-child)::after {
  position: absolute;
  inset-block-start: 47px;
  inset-inline-start: 0;
  width: calc(100% - 60px);
  height: 1px;
  background: var(--line);
  content: "";
}

[dir="rtl"] .process-step:not(:last-child)::after { inset-inline-start: auto; inset-inline-end: 0; }
.process-step__number { display: grid; position: relative; z-index: 1; width: 48px; height: 48px; margin-bottom: 22px; color: var(--white); background: var(--navy); border: 7px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--cyan); place-items: center; font-family: var(--display-font); }
.process-step:nth-child(2) .process-step__number { background: var(--cyan); }
.process-step:nth-child(3) .process-step__number { background: var(--pink); }
.process-step h2 { margin: 0 0 8px; color: var(--navy); font-size: 1.08rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.87rem; line-height: 1.8; }

.client-showcase { padding-block: 36px 56px; background: var(--white); }
.client-showcase .client-grid { margin-top: 45px; }
.client-showcase .client-card { min-height: 82px; }
.client-showcase .bag-mark { width: 88px; height: 31px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.contact-details { padding: 36px; color: var(--white); background: var(--navy); border-radius: 20px; }
.contact-details h2 { margin: 0 0 25px; color: var(--white); font-size: 1.35rem; }
.contact-details__item { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding-block: 16px; border-top: 1px solid rgb(255 255 255 / 10%); }
.contact-details__icon { display: grid; width: 34px; height: 34px; color: var(--navy); background: var(--cyan); border-radius: 50%; place-items: center; }
.contact-details__item strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 0.85rem; }
.contact-details__item a, .contact-details__item p { margin: 0; color: rgb(255 255 255 / 65%); font-size: 0.83rem; line-height: 1.75; }

.contact-form { padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 32px rgb(32 37 78 / 6%); }
.contact-form h2 { margin: 0 0 24px; color: var(--navy); font-size: 1.35rem; }
.contact-form [hidden] { display: none !important; }
.contact-method { margin: 0 0 18px; padding: 0; border: 0; }
.contact-method legend { margin-bottom: 9px; color: var(--navy); font-size: 0.84rem; font-weight: 800; }
.contact-method__options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.contact-method__option { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 9px 12px; color: var(--navy); background: #fafbfe; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 0.84rem; font-weight: 800; transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.contact-method__option:has(input:checked) { background: rgb(35 158 209 / 9%); border-color: var(--cyan); box-shadow: 0 0 0 3px rgb(35 158 209 / 11%); }
.contact-method__option input { width: 17px; height: 17px; margin: 0; accent-color: var(--cyan); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { color: var(--navy); font-size: 0.82rem; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 12px 14px; color: var(--navy); background: #fafbfe; border: 1px solid var(--line); border-radius: 9px; outline: none; font: inherit; font-size: 0.85rem; transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgb(35 158 209 / 14%); }
.contact-form__note { margin: 14px 0 0; color: var(--muted); font-size: 0.75rem; line-height: 1.7; }

/* Homepage motion and transparent navigation */
body[data-page="home"] .site-header {
  position: fixed;
  inset-inline: 0;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

body[data-page="home"] .site-header.is-scrolled {
  background: rgb(32 37 78 / 82%);
  border-color: rgb(255 255 255 / 9%);
  box-shadow: 0 8px 28px rgb(20 24 58 / 16%);
  backdrop-filter: blur(14px);
}

.clients .section-heading h2::after,
.products .section-heading h2::after {
  opacity: 0;
  transform: translateX(-34px) scaleX(0.2);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.clients.is-revealed .section-heading h2::after,
.products.is-revealed .section-heading h2::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.clients .client-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
}

.clients.is-revealed .client-card {
  animation: client-card-reveal 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.clients.is-revealed .client-card:nth-child(1) { animation-delay: 80ms; }
.clients.is-revealed .client-card:nth-child(2) { animation-delay: 150ms; }
.clients.is-revealed .client-card:nth-child(3) { animation-delay: 220ms; }
.clients.is-revealed .client-card:nth-child(4) { animation-delay: 290ms; }
.clients.is-revealed .client-card:nth-child(5) { animation-delay: 360ms; }
.clients.is-revealed .client-card:nth-child(6) { animation-delay: 430ms; }
.clients.is-revealed .client-card:nth-child(7) { animation-delay: 500ms; }
.clients.is-revealed .client-card:nth-child(8) { animation-delay: 570ms; }
.clients.is-revealed .client-card:nth-child(9) { animation-delay: 640ms; }
.clients.is-revealed .client-card:nth-child(10) { animation-delay: 710ms; }

.products .product-slider,
.products .slider-dots,
.products .products__all {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.products.is-revealed .product-slider,
.products.is-revealed .slider-dots,
.products.is-revealed .products__all {
  opacity: 1;
  transform: translateY(0);
}

.products.is-revealed .slider-dots { transition-delay: 100ms; }
.products.is-revealed .products__all { transition-delay: 180ms; }

.product-slide {
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-slide.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

@keyframes client-card-reveal {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .page-hero__inner, .content-split, .contact-layout { grid-template-columns: 1fr; }
  .page-hero__mark { display: none; }
  .feature-grid, .product-page-grid { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-band { min-height: 390px; }
  .product-showcase__track img { width: 1380px; }
  .bag-carousel__viewport { inset-inline: 68px; inset-block: 102px 18px; }
  .bag-carousel__track { gap: 20px; }
  .bag-product { flex-basis: calc((100% - 40px) / 3); }
  .products--showcase [data-product-autoplay] .bag-carousel__track { gap: 52px; }
  .products--showcase [data-product-autoplay] .bag-product { flex-basis: calc((100% - 104px) / 3); }
  .products-reference-hero { min-height: 390px; }
  .products-reference-hero__content { padding-block: 62px; }
  .reference-category .bag-carousel__viewport { inset-inline: 68px; }
  .reference-category .bag-carousel__track { gap: 30px; }
  .reference-category .bag-product { flex-basis: calc((100% - 60px) / 3); }
  .reference-category.is-expanded .bag-carousel__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
}

@media (max-width: 640px) {
  body[data-page="home"] .site-header { position: fixed; background: transparent; }
  body[data-page="home"] .site-header.is-scrolled { background: rgb(32 37 78 / 88%); }
  body[data-page="home"] .products.products--showcase { padding-top: 40px; padding-bottom: 0; }
  body[data-page="home"] .products__showcase-footer { min-height: 64px; }
  body[data-page="home"] .products--showcase .products__all { padding: 8px 20px; }
  .page-hero { min-height: 0; padding-block: 58px 62px; }
  .breadcrumbs { padding-top: 16px; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .page-hero__lead { font-size: 0.88rem; line-height: 1.9; }
  .products-reference-hero { min-height: 350px; }
  .products-reference-hero__backdrop { background-position: 42% 74%; }
  .products-reference-hero__content { padding-block: 52px; }
  .products-reference-hero__content h1 { font-size: clamp(2.55rem, 14vw, 3.8rem); }
  .products-reference-hero__content > p:last-child { font-size: 0.82rem; line-height: 1.85; }
  .products-reference-intro { padding-block: 48px 34px; }
  .products-reference-intro p { font-size: 0.82rem; }
  .reference-category { padding-block: 28px 22px; }
  .reference-category__heading { padding-inline: 22px; }
  .reference-category__heading h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .reference-category__heading p { font-size: 0.78rem; line-height: 1.8; }
  .reference-category__carousel { height: 280px; margin-top: 8px; }
  .reference-category .bag-carousel__viewport { inset-inline: 48px; }
  .reference-category .bag-carousel__track { gap: 12px; }
  .reference-category .bag-product { flex-basis: calc((100% - 48px) / 5); }
  .reference-category .bag-product__media {
    min-height: 260px;
    padding-inline: 0;
    overflow: visible;
    clip-path: inset(0 -100% 0 -100%);
  }
  .reference-category .bag-product__media img {
    width: 300%;
    max-width: 300%;
    max-height: 280px;
  }
  .reference-category.is-expanded .bag-carousel__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .reference-category.is-expanded .bag-product { min-height: 215px; }
  .reference-category.is-expanded .bag-product__media { min-height: 210px; }
  .reference-category.is-expanded .bag-product__media img { max-height: 202px; }
  .reference-category__view-all { font-size: 1rem; }
  .inner-section { padding-block: 55px; }
  .product-showcase { padding-top: 52px; }
  .product-showcase__intro { margin-bottom: 34px; }
  .product-showcase__intro > p:last-child { font-size: 0.82rem; }
  .product-showcase-band { min-height: 338px; }
  .product-showcase-band > h2 { padding: 22px 54px 0; font-size: clamp(1.55rem, 7.5vw, 2.1rem); }
  .product-showcase__track img { width: 1100px; }
  .bag-carousel__viewport { inset-inline: 50px; inset-block: 86px 16px; }
  .bag-carousel__track { gap: 18px; }
  .bag-product { flex-basis: 100%; border-radius: 15px; }
  .products--showcase [data-product-autoplay] .bag-carousel__track { gap: 24px; }
  .products--showcase [data-product-autoplay] .bag-product {
    flex-basis: calc((100% - 48px) / 3);
  }
  .products--showcase [data-product-autoplay] .bag-product__media {
    padding: 0;
    overflow: visible;
    clip-path: inset(0 -72% 0 -72%);
  }
  .products--showcase [data-product-autoplay] .bag-product__media img {
    width: 240%;
    height: auto;
    max-width: 240%;
    inset-block-start: auto;
    inset-block-end: 0;
    transform: translateX(-50%) translateY(37%);
  }
  .products--showcase [data-product-autoplay] .bag-product:hover .bag-product__media img {
    transform: translateX(-50%) translateY(37%) scale(1.035);
  }
  .bag-product h3 { padding-block: 9px 11px; font-size: 0.75rem; }
  .product-showcase__arrow { width: 38px; height: 38px; inset-block-start: 58%; font-size: 1.55rem; }
  .product-showcase__arrow--prev { inset-inline-start: 8px; }
  .product-showcase__arrow--next { inset-inline-end: 8px; }
  .content-split { gap: 28px; }
  .content-split__visual { min-height: 205px; border-radius: 18px; }
  .content-split__content { text-align: center; }
  .content-split__content .section-heading h2 { text-align: center; }
  .content-split__content .section-heading h2::after { margin-inline: auto; }
  .feature-grid, .product-page-grid, .process-steps, .form-row { grid-template-columns: 1fr; }
  .feature-grid { gap: 12px; margin-top: 28px; }
  .feature-card { min-height: 0; padding: 21px; }
  .feature-card::before { margin-bottom: 14px; }
  .page-panel { padding: 30px 22px; border-radius: 18px; text-align: center; }
  .page-panel__inner { display: block; }
  .page-panel .button { margin-top: 24px; }
  .product-page-grid { gap: 14px; }
  .product-page-card__visual { height: 125px; }
  .process-step { padding: 10px 0 16px; }
  .process-step:not(:last-child)::after { display: none; }
  .client-showcase .client-grid { margin-top: 28px; }
  .client-showcase .client-card { min-height: 58px; }
  .client-showcase .bag-mark { width: 61px; height: 22px; }
  .contact-details, .contact-form { padding: 25px 20px; border-radius: 16px; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .header-inner { gap: 8px; }
  .brand { width: 52px; height: 52px; }
  .header-actions { gap: 6px; }
  .language-switcher { min-width: 64px; }
  .hero__inner { padding-block: 30px 132px; }
  .hero h1 { font-size: clamp(1.65rem, 7.6vw, 2rem); line-height: 1.38; }
  [lang="en"] .hero h1 { font-size: clamp(1.55rem, 7vw, 1.85rem); line-height: 1.18; }
  .hero__content > p:not(.eyebrow) { font-size: 0.78rem; line-height: 1.8; }
  .hero__actions { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__actions .button { width: 100%; min-width: 0; padding-inline: 8px; }
  .clients__container { width: calc(100% - 16px); }
  .client-grid { column-gap: 2px; row-gap: 10px; }
  .client-card { min-height: 64px; }
  .client-logo-art { --client-logo-scale: 0.72; }
  .products--showcase { padding-top: 34px; padding-bottom: 0; }
  .product-showcase-band { min-height: 326px; }
  .product-showcase-band > h2 { padding-inline: 48px; font-size: clamp(1.4rem, 7.2vw, 1.8rem); }
  .bag-carousel__viewport { inset-inline: 44px; inset-block: 82px 14px; }
  .reference-category .bag-carousel__viewport { inset-inline: 44px; }
  .bag-product__media { padding-inline: 10px; }
  .products__showcase-footer { min-height: 64px; }
  .products--showcase .products__all { padding: 8px 20px; }
  .about__visual { min-height: 124px; }
  .about__visual img { width: min(76%, 245px); max-height: 102px; }
  .about__logo-tint { width: min(76%, 245px); height: 102px; }
  .contact-list a,
  .contact-list > span { max-width: 100%; overflow-wrap: anywhere; }
}

@media (max-width: 340px) {
  .brand { width: 48px; height: 48px; }
  .language-switcher { min-width: 60px; }
  .language-switcher__next { min-width: 21px; }
  .hero__inner { padding-inline: 0; }
  .hero__actions { gap: 7px; }
  .hero__actions .button { font-size: 0.7rem; }
  .product-showcase-band > h2 { padding-inline: 42px; }
  .bag-carousel__viewport { inset-inline: 42px; }
  .reference-category .bag-carousel__viewport { inset-inline: 42px; }
  .product-showcase__arrow { width: 34px; height: 34px; }
}

@media (max-width: 768px) {
  .managed-page-hero.page-hero {
    min-height: var(--managed-page-hero-height);
  }

  .managed-page-hero.products-reference-hero {
    min-height: var(--managed-page-hero-height);
  }

  .managed-page-hero .page-hero__mark {
    position: absolute;
    z-index: -1;
    inset: 0;
    display: grid;
    min-height: 0;
    place-items: center;
    pointer-events: none;
  }

  .managed-page-hero .page-hero__mark img,
  .managed-page-hero__watermark {
    width: min(72vw, var(--managed-page-hero-watermark-width));
    opacity: var(--managed-page-hero-watermark-mobile-opacity);
  }
}
