:root {
  --ink: #061a2d;
  --ink-2: #0b2944;
  --brand: #0878b9;
  --brand-bright: #1599d6;
  --water: #1a9c91;
  --action: #f47a20;
  --paper: #f2f6f8;
  --steel: #d8e1e5;
  --white: #fff;
  --text: #17364d;
  --muted: #637583;
  --line: #c7d4da;
  --error: #b42318;
  --success: #087b5b;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --font-ar: "Cairo", Tahoma, Arial, sans-serif;
  --font-en: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-index: "Outfit", "Manrope", "Segoe UI", sans-serif;
  --shell: min(1280px, calc(100% - 144px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ar);
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="en"] body { font-family: var(--font-en); letter-spacing: -.008em; }
h1, h2, h3 { font-weight: 700; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: var(--shell); margin-inline: auto; }
.technical-paper { background: var(--paper); }

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(6, 26, 45, .78);
  border-bottom-color: rgba(255, 255, 255, .24);
  box-shadow: 0 10px 28px rgba(2, 15, 27, .16);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  height: 64px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 20px;
  direction: ltr;
}
.brand { grid-column: 3; grid-row: 1; justify-self: end; }
.brand img, .mobile-logo, .footer-brand img {
  width: 154px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.desktop-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  direction: rtl;
}
[dir="ltr"] .desktop-nav { direction: ltr; }
.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -10px;
  height: 2px;
  background: var(--brand-bright);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 180ms var(--ease-out);
}
[dir="ltr"] .desktop-nav a::after { transform-origin: left center; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.language-button, .mobile-language, .menu-button, .menu-close {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.language-button, .mobile-language {
  min-width: 92px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(77, 190, 239, .75);
  border-radius: 999px;
  padding: 3px 5px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.language-code {
  min-width: 32px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, .62);
  transition: background-color 160ms ease, color 160ms ease;
}
.language-code.is-active { background: var(--white); color: var(--ink); }
.language-divider { color: rgba(255, 255, 255, .38); }
.language-button:hover, .language-button:focus-visible, .mobile-language:hover, .mobile-language:focus-visible {
  border-color: #ffb34d;
  background: rgba(255, 179, 77, .10);
  box-shadow: 0 0 0 3px rgba(255, 179, 77, .10);
}
.language-button:active, .mobile-language:active { background: rgba(255, 179, 77, .18); }
.menu-button:active, .menu-close:active { background: rgba(255, 255, 255, .10); }
.menu-button, .menu-close { transition: background-color 160ms var(--ease-out); }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-button img, .menu-close img { width: 24px; height: 24px; filter: brightness(0) invert(1); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 130;
  overflow-y: auto;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; direction: ltr; }
.mobile-head-actions { display: flex; align-items: center; gap: 8px; }
.menu-close { width: 44px; height: 44px; }
.mobile-menu > nav { max-width: 700px; margin: 44px auto 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.mobile-menu > nav > a, .mobile-nav-group > a {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu nav small { color: var(--brand-bright); font: 600 12px/1 var(--font-en); }
.mobile-subnav { padding: 12px 42px 18px; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.mobile-subnav a { display: block; padding: 8px 0; color: #bfd7e7; font-size: 14px; text-decoration: none; }

.hero {
  position: relative;
  height: clamp(520px, 33.33vw, 724px);
  min-height: 0;
  direction: ltr;
  overflow: hidden;
  background: var(--ink);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(39.5%, 650px);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 64px 44px 60px clamp(56px, 5vw, 88px);
  background: transparent;
  color: var(--white);
  direction: rtl;
}
[dir="ltr"] .hero-copy { direction: ltr; padding-inline: clamp(56px, 5vw, 88px) 44px; }
.hero-copy-inner { position: relative; z-index: 1; width: 100%; max-width: 520px; transform: translateX(-40px); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.15vw, 47px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 500px;
  margin: 28px 0 34px;
  color: #c6d5df;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
.primary-button, .submit-button, .secondary-button, .solution-detail-link, .solution-page-button {
  --button-bg: var(--action);
  --button-bg-hover: #df6814;
  --button-border: rgba(255, 255, 255, .42);
  --button-border-hover: rgba(255, 255, 255, .72);
  --button-shadow: 0 12px 28px rgba(2, 15, 27, .22);
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--button-border);
  border-radius: 2px;
  padding: 12px 18px;
  background: var(--button-bg);
  color: var(--white);
  box-shadow: var(--button-shadow);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.primary-button { width: fit-content; min-width: 220px; }
.primary-button img, .submit-button img, .secondary-button img {
  box-sizing: content-box;
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(255, 255, 255, .34);
}
.primary-button img, .submit-button img { filter: brightness(0) invert(1); }
.secondary-button {
  --button-bg: rgba(4, 19, 33, .82);
  --button-bg-hover: #0b2944;
  --button-border: rgba(244, 122, 32, .92);
  --button-border-hover: #ff9a4d;
}
.primary-button:active, .submit-button:active, .secondary-button:active, .solution-detail-link:active, .solution-page-button:active {
  background: var(--button-bg-hover);
  border-color: var(--button-border-hover);
  box-shadow: 0 6px 16px rgba(2, 15, 27, .20);
}
.primary-button:focus-visible, .submit-button:focus-visible, .secondary-button:focus-visible, .solution-detail-link:focus-visible, .solution-page-button:focus-visible {
  outline: 3px solid #ffb34d;
  outline-offset: 3px;
  box-shadow: var(--button-shadow), 0 0 0 2px rgba(255, 179, 77, .18);
}

.context-section {
  min-height: 366px;
  padding: 64px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef3f6 url("../assets/images/context-technical-blueprint.png") center / cover no-repeat;
}
.context-layout {
  min-height: 238px;
  display: grid;
  grid-template-columns: minmax(0, 5.1fr) minmax(110px, 1fr) minmax(0, 4.9fr);
  gap: 0;
  align-items: center;
  direction: ltr;
}
.context-intro { grid-column: 1; padding-inline-end: 0; direction: rtl; }
.buyer-questions { grid-column: 3; direction: rtl; }
.context-intro h2, .centered-heading h2, .solutions-heading h2, .matrix-heading h2, .video-copy h2, .factory-copy h2, .quality-copy h2, .contact-copy h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.16;
  letter-spacing: -.02em;
}
.context-intro h2 { max-width: 480px; font-size: clamp(32px, 3.1vw, 46px); }
.context-intro > p:last-child { max-width: 640px; margin-top: 16px; font-size: 14px; line-height: 1.8; }
.context-intro > p:last-child, .buyer-questions p { color: #587184; }
[dir="ltr"] .context-intro { direction: ltr; }
.context-intro > p:last-child, .centered-heading > p:last-child, .matrix-heading > p:last-child, .video-copy > p:not(.video-status), .factory-copy > p:last-child, .contact-copy > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}
.context-section .context-intro > p:last-child { max-width: 640px; margin-top: 16px; font-size: 14px; font-weight: 500; line-height: 1.8; }
.buyer-questions { margin: 0; padding: 0; list-style: none; border: 0; }
.buyer-questions li { position: relative; min-height: 60px; display: block; padding: 12px 0; border: 0; }
.buyer-questions span { position: absolute; inset-inline-end: 0; top: 50%; color: var(--brand); font: 700 18px/1 var(--font-en); transform: translateY(-50%); }
.buyer-questions p { margin: 0; padding-inline-end: 56px; font-size: 15px; font-weight: 500; line-height: 1.6; direction: rtl; text-align: right; }
[dir="ltr"] .buyer-questions p { direction: ltr; text-align: left; }

.about-section { padding: 70px 0 82px; }
.centered-heading { max-width: 940px; margin-inline: auto; text-align: center; }
.centered-heading h2 { color: var(--brand); }
.centered-heading > p:last-child { max-width: 780px; margin-inline: auto; }
.about-section .centered-heading { max-width: 780px; }
.about-section .centered-heading h2 { font-size: clamp(27px, 2.15vw, 35px); line-height: 1.25; }
.capability-rail, .process-rail {
  margin: 72px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--brand);
}
.capability-rail li, .process-rail li { position: relative; padding: 36px 28px 0; border-inline-start: 1px solid var(--line); }
.capability-rail li:last-child, .process-rail li:last-child { border-inline-end: 1px solid var(--line); }
.capability-rail li::before, .process-rail li::before { content: ""; position: absolute; top: -5px; inset-inline-start: 24px; width: 9px; height: 9px; border: 2px solid var(--brand); border-radius: 50%; background: var(--paper); }
.rail-index, .process-rail li > span { display: block; margin-bottom: 20px; color: var(--brand); font: 700 13px/1 var(--font-en); }
.capability-rail h3, .process-rail h3 { margin: 0 0 12px; color: var(--brand); font-size: 21px; }
.capability-rail p, .process-rail p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.capability-rail { position: relative; margin-top: 56px; border-top: 2px solid #62add8; }
.capability-rail::before, .capability-rail::after { content: ""; position: absolute; top: -2px; width: 30px; height: 18px; border-top: 2px solid #62add8; }
.capability-rail::before { inset-inline-start: -1px; border-inline-start: 2px solid #62add8; border-radius: 15px 0 0; }
.capability-rail::after { inset-inline-end: -1px; border-inline-end: 2px solid #62add8; border-radius: 0 15px 0 0; }
.capability-rail li { min-height: 0; padding: 0 20px; border: 0; display: grid; justify-items: center; text-align: center; }
.capability-rail li:last-child { border: 0; }
.capability-rail li::before { top: -5px; inset-inline-start: 50%; z-index: 1; width: 7px; height: 7px; transform: translateX(-50%); border: 2px solid var(--brand); background: var(--paper); }
.capability-icon { position: relative; z-index: 2; width: 62px; height: 62px; margin-top: -31px; display: grid; place-items: center; border: 2px solid #76b4d5; border-radius: 50%; background: var(--paper); box-shadow: 0 8px 18px rgba(10, 63, 101, .07); }
.capability-icon img { width: 30px; height: 30px; object-fit: contain; }
.capability-rail h3 { margin: 18px 0 8px; font-size: 18px; line-height: 1.35; }
.capability-rail p { max-width: 220px; font-size: 13px; font-weight: 500; line-height: 1.75; }

.solutions-section { padding-top: 0; background: var(--white); }
.solutions-heading { padding-bottom: 0; text-align: center; }
.solution-feature { position: relative; height: clamp(420px, 33.333vw, 562px); min-height: 0; overflow: hidden; background: #fff; border-block: 1px solid var(--line); isolation: isolate; }
.solution-feature::after { content: ""; position: absolute; z-index: 1; inset: 0 0 0 auto; width: 30.5%; background: linear-gradient(135deg, #123f68 0%, #06213b 55%, #031a30 100%); clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%); }
.solution-feature-backdrop { position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%; min-height: 0; margin: 0; object-fit: cover; object-position: left center; background: #fff; transform-origin: left center; }
.solutions-title-on-image { position: absolute; z-index: 3; top: clamp(48px, 5.6vw, 82px); left: 50%; width: min(92%, 1120px); max-width: none; margin: 0; color: var(--brand); font-size: clamp(28px, 2.9vw, 42px); line-height: 1.2; letter-spacing: -.02em; text-align: center; white-space: nowrap; text-shadow: 0 2px 20px rgba(255,255,255,.8); direction: rtl; transform: translateX(-50%); }
[dir="ltr"] .solutions-title-on-image { direction: ltr; }
.solution-feature-copy { position: absolute; z-index: 2; inset: 0 0 0 auto; width: 31%; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 62px clamp(32px, 3.4vw, 54px) 48px 28px; background: transparent; color: var(--white); direction: rtl; transform: translate(-14px, 20px); }
[dir="ltr"] .solution-feature-copy { direction: ltr; }
.solution-feature-copy > * { width: min(100%, 340px); align-self: flex-start; }
[dir="ltr"] .solution-feature-copy > * { align-self: flex-end; }
.solution-feature-copy h3, .mosaic-copy h3 { margin: 0; font-size: clamp(24px, 1.75vw, 28px); line-height: 1.2; }
.solution-feature-copy h3 { white-space: nowrap; }
@media (min-width: 901px) {
  [dir="rtl"] .solution-feature-copy h3 {
    width: min(100%, 230px);
    white-space: normal;
    text-wrap: balance;
  }
}
.solution-feature-copy p { width: min(100%, 280px); }
.solution-feature-copy p, .mosaic-copy p { margin: 16px 0 0; color: #c6d5df; font-size: 15px; line-height: 1.75; }
.solution-feature-copy p { margin-top: 20px; }
.solution-detail-link {
  width: fit-content;
  margin-top: 24px;
  min-height: 48px;
  padding: 11px 16px 12px;
  font-size: 14px;
  font-weight: 800;
}
.solution-feature-copy .solution-detail-link { margin-top: 30px; }
.solution-detail-link::after {
  content: "\2197";
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  padding-inline-start: 12px;
  border-inline-start: 1px solid rgba(255, 255, 255, .34);
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1;
}
.mosaic-copy-light .solution-detail-link { --button-shadow: 0 10px 24px rgba(0, 69, 112, .16); }
.solutions-mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.mosaic-card { min-height: 292px; display: grid; grid-template-columns: 1fr 1.15fr; direction: ltr; border-inline-start: 1px solid var(--line); }
.mosaic-card > img, .mosaic-automation > img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.mosaic-water { grid-template-columns: 1.15fr 1fr; }
.mosaic-beverage > img { object-fit: contain; object-position: center; background: #050709; }
.mosaic-water > img { object-fit: cover; object-position: center; background: #fff; }
.mosaic-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 36px clamp(24px, 3vw, 48px); direction: rtl; text-align: right; }
[dir="ltr"] .mosaic-copy { direction: ltr; text-align: left; }
.mosaic-copy h3 { font-size: clamp(22px, 2vw, 31px); }
.mosaic-copy p { margin-top: 12px; font-size: 14px; font-weight: 500; }
.mosaic-copy-dark { background: var(--ink); color: var(--white); }
.mosaic-copy-light { background: var(--paper); color: var(--brand); }
.mosaic-copy-light p { color: var(--muted); }
.mosaic-automation { min-height: 304px; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .92fr 1fr; direction: ltr; border-top: 1px solid var(--line); }
.mosaic-automation .mosaic-copy { padding-inline: clamp(26px, 4vw, 72px); }
.mosaic-automation > img:last-child { object-position: center; filter: saturate(.92) contrast(1.02); }

.technical-matrix { padding: 78px 0 84px; background: var(--ink); color: var(--white); }
.matrix-heading { max-width: none; margin-inline: auto; text-align: center; }
.matrix-heading h2 { color: var(--white); font-size: clamp(38px, 3.35vw, 50px); white-space: nowrap; }
html[lang="en"] .matrix-heading h2 { font-size: clamp(34px, 2.8vw, 42px); }
.matrix-heading > p:last-child { max-width: none; margin: 16px auto 0; color: #b9cad5; white-space: nowrap; }
.table-wrap { margin-top: 38px; overflow-x: auto; border: 1px solid #3a6481; }
.table-wrap table { width: 100%; min-width: 920px; border-collapse: collapse; text-align: start; }
.table-wrap th, .table-wrap td { padding: 20px 22px; border-inline-start: 1px solid #3a6481; border-bottom: 1px solid #3a6481; vertical-align: top; }
.table-wrap tr:last-child th, .table-wrap tr:last-child td { border-bottom: 0; }
.table-wrap th:first-child, .table-wrap td:first-child { border-inline-start: 0; }
.table-wrap thead { background: var(--brand); }
.table-wrap thead th { color: var(--white); font-size: 15px; font-weight: 700; }
.table-wrap tbody th { width: 22%; color: var(--brand-bright); font-size: 15px; }
.table-wrap tbody td { color: #d0dde5; font-size: 15px; font-weight: 500; line-height: 1.65; }
.table-wrap tbody tr { transition: background-color 140ms ease; }
.table-wrap tbody tr:hover { background: var(--ink-2); }

.video-section { position: relative; min-height: 430px; padding: 72px 0; overflow: hidden; background: var(--ink); }
.video-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.video-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 30, 54, .96) 0%, rgba(5, 30, 54, .86) 30%, rgba(5, 30, 54, .22) 58%, rgba(5, 30, 54, .04) 100%); }
.video-layout { position: relative; z-index: 1; min-height: 286px; display: grid; grid-template-columns: 4.3fr 7.7fr; align-items: center; direction: ltr; }
.video-copy { max-width: 465px; direction: rtl; }
[dir="ltr"] .video-copy { direction: ltr; }
.video-copy h2 { color: var(--white); font-size: clamp(36px, 3.6vw, 50px); }
.video-copy > p:not(.video-status) { max-width: 430px; color: #d4e1e9; }
.secondary-button { margin-top: 24px; }
.secondary-button img { filter: invert(49%) sepia(91%) saturate(1771%) hue-rotate(349deg) brightness(99%) contrast(93%); }
.video-status { margin: 16px 0 0; color: #d4e1e9; font-size: 14px; line-height: 1.65; }

.factory-section { position: relative; min-height: clamp(440px, 37vw, 620px); overflow: hidden; background: var(--ink); color: var(--white); }
.factory-backdrop { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.factory-copy { position: relative; z-index: 1; width: var(--shell); min-height: clamp(440px, 37vw, 620px); margin-inline: auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-inline: 0; direction: rtl; }
[dir="ltr"] .factory-copy { direction: ltr; align-items: flex-end; }
.factory-copy > * { width: min(26%, 340px); transform: translateX(44px); }
.factory-copy h2 { color: var(--white); }
.factory-copy > p:last-child { color: #c6d5df; }

.quality-section { padding: 76px 0 80px; }
.quality-layout { display: grid; grid-template-columns: minmax(250px, 3.3fr) minmax(0, 8.7fr); gap: 68px; align-items: center; direction: ltr; }
.certificate-frame { width: min(100%, 330px); min-width: 0; margin: 0 auto; align-self: center; text-align: center; }
.certificate-frame img { width: 100%; height: auto !important; max-height: 480px; aspect-ratio: 1600 / 2263; margin-inline: auto; object-fit: contain; border: 1px solid #aebec6; background: var(--white); box-shadow: 0 14px 34px rgba(6, 26, 45, .12); }
.certificate-frame figcaption { max-width: 390px; margin: 14px auto 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.quality-copy { min-width: 0; direction: rtl; }
[dir="ltr"] .quality-copy { direction: ltr; }
.quality-copy h2 { font-size: clamp(34px, 3.45vw, 48px); }
.quality-points { margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid var(--line); }
.quality-points li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; padding: 22px 24px; border-bottom: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.quality-points li:nth-child(even) { border-inline-end: 1px solid var(--line); }
.quality-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #9bc5dd; border-radius: 50%; background: rgba(255, 255, 255, .7); }
.quality-icon img { width: 23px; height: 23px; }
.quality-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.quality-index { flex: 0 0 auto; color: var(--brand); font: 700 12px/1 var(--font-en); }
.quality-points h3 { margin: 0; color: var(--brand); font-size: 18px; }
.quality-points p { margin: 7px 0 0; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.7; }

.process-section { padding: 62px 0 70px; border-top: 1px solid var(--line); }
.centered-heading.compact h2 { font-size: clamp(30px, 3.1vw, 42px); }
.process-rail { position: relative; margin-top: 42px; border-top: 0; }
.process-rail::before { content: ""; position: absolute; top: 8px; inset-inline: 4.25%; height: 2px; background: linear-gradient(90deg, #a9c9db 0 21%, #f07a28 21% 24%, #a9c9db 24% 46%, #f07a28 46% 49%, #a9c9db 49% 71%, #f07a28 71% 74%, #a9c9db 74% 100%); }
.process-rail li { min-height: 0; padding: 34px 22px 0; border: 0; text-align: center; }
.process-rail li:last-child { border: 0; }
.process-rail li::before { top: 0; inset-inline-start: 50%; z-index: 1; width: 10px; height: 10px; transform: translateX(-50%); border: 2px solid var(--action); background: var(--paper); box-shadow: 0 0 0 3px rgba(240, 122, 40, .13); }
.process-rail li > span { margin: 0 0 10px; color: var(--brand); font-size: 12px; }
.process-rail h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.35; }
.process-rail p { max-width: 230px; margin-inline: auto; font-size: 13px; font-weight: 500; line-height: 1.7; }

.contact-section { background: var(--ink); color: var(--white); }
.contact-shell { width: min(1320px, 100%); margin-inline: auto; display: grid; grid-template-columns: 5.7fr 6.3fr; grid-template-areas: "form copy"; direction: ltr; }
.contact-copy { grid-area: copy; display: flex; flex-direction: column; justify-content: center; padding: 70px max(72px, calc((100vw - 1280px) / 2)) 70px 74px; direction: rtl; }
[dir="ltr"] .contact-copy { direction: ltr; padding-inline: 74px max(72px, calc((100vw - 1280px) / 2)); }
.contact-copy h2 { max-width: 480px; color: var(--white); font-size: clamp(31px, 3.25vw, 45px); line-height: 1.2; }
.contact-copy > p:last-child { max-width: 440px; color: #c6d5df; font-size: 15px; line-height: 1.8; }
.contact-form { grid-area: form; padding: 42px clamp(34px, 4vw, 64px); background: var(--white); color: var(--text); direction: rtl; }
[dir="ltr"] .contact-form { direction: ltr; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
.form-error-summary { margin-bottom: 22px; padding: 16px 18px; border: 1px solid #efaaa5; background: #fff5f4; color: var(--error); }
.form-error-summary ul { margin: 8px 0 0; padding-inline-start: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #314c60; font-size: 13px; font-weight: 600; transition: color 160ms ease; }
.field:focus-within label { color: var(--brand); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #c5d3dc; border-radius: 2px; padding: 12px 13px; outline: none; background: #fbfdfe; color: var(--text); transition: border-color 160ms ease, box-shadow 160ms ease; }
.field select { appearance: none; padding-inline-end: 42px; background-image: url("../assets/icons/chevron-down.svg"); background-repeat: no-repeat; background-position: left 14px center; }
[dir="ltr"] .field select { background-position: right 14px center; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(8, 120, 185, .13); }
.field [aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180, 35, 24, .1); }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.field-error { display: block; min-height: 14px; margin-top: 4px; color: var(--error); font-size: 12px; }
.submit-button { width: min(100%, 250px); margin: 14px auto 0; }

.site-footer { background: #041321; color: #b8cbd7; }
.footer-inner { width: min(1280px, calc(100% - 48px)); min-height: 92px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-brand { justify-self: end; }
[dir="ltr"] .footer-brand { justify-self: start; }
.footer-brand img { width: 132px; }
.site-footer nav { display: flex; gap: 22px; justify-content: center; }
.site-footer nav a { font-size: 12px; text-decoration: none; }
.site-footer p { justify-self: start; margin: 0; font: 600 11px/1 var(--font-en); }
[dir="ltr"] .site-footer p { justify-self: end; }

:focus-visible { outline: 3px solid #ffb34d; outline-offset: 3px; }

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover, .submit-button:hover, .secondary-button:hover, .solution-detail-link:hover, .solution-page-button:hover {
    background: var(--button-bg-hover);
    border-color: var(--button-border-hover);
    box-shadow: 0 12px 26px rgba(2, 15, 27, .24);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background: rgba(6, 26, 45, .96); }
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 64px, 1040px); }
  .header-inner { grid-template-columns: 160px 1fr 160px; gap: 12px; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 11px; }
  .brand img { width: 138px; }
  .hero { height: clamp(500px, 39vw, 620px); }
  .hero-copy, [dir="ltr"] .hero-copy { width: 40%; padding-inline: 42px 34px; }
  .hero-copy-inner { transform: translateX(-24px); }
  .context-layout { gap: 0; }
  .solution-feature-copy, .contact-copy { padding-inline: 48px; }
  .quality-layout { gap: 52px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 48px, 760px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand, [dir="ltr"] .brand, [dir="rtl"] .brand { grid-column: 2; justify-self: end; }
  .desktop-nav { display: none; }
  .header-actions, [dir="ltr"] .header-actions, [dir="rtl"] .header-actions { grid-column: 1; justify-self: start; }
  .language-button { display: none; }
  .menu-button { display: inline-flex; }
  .hero { height: auto; min-height: 0; padding-top: 420px; }
  .hero-backdrop { inset: 0 0 auto; height: 420px; object-position: right center; }
  .hero-copy, [dir="ltr"] .hero-copy { width: 100%; height: auto; min-height: 0; padding: 72px 48px; background: var(--ink); }
  .hero-copy-inner { max-width: 550px; transform: none; }
  .context-layout, .video-layout, .quality-layout { grid-template-columns: 1fr; }
  .context-layout { gap: 48px; }
  .context-intro, .buyer-questions { grid-column: auto; padding-inline-end: 0; }
  .buyer-questions { direction: rtl; }
  .capability-rail, .process-rail { grid-template-columns: 1fr 1fr; }
  .capability-rail li, .process-rail li { min-height: 220px; border-bottom: 1px solid var(--line); }
  .capability-rail { gap: 42px 0; border-top: 0; }
  .capability-rail::before, .capability-rail::after, .capability-rail li::before { display: none; }
  .capability-rail li { min-height: 0; padding: 0 18px; border: 0; }
  .capability-icon { margin-top: 0; }
  .process-rail { gap: 34px 0; border: 0; }
  .process-rail::before { display: none; }
  .process-rail li { min-height: 0; padding: 34px 18px 0; border: 0; }
  .solution-feature { height: auto; min-height: 0; display: grid; grid-template-rows: minmax(300px, 46vw) auto; }
  .solution-feature::after { display: none; }
  .solution-feature-backdrop { position: relative; inset: auto; width: 100%; min-height: 0; height: 100%; margin: 0; object-fit: contain; object-position: center; transform: none; }
  .solutions-title-on-image { top: 30px; left: 50%; width: calc(100% - 96px); max-width: none; white-space: normal; transform: translateX(-50%); }
  .solution-feature-copy { position: static; width: auto; padding: 56px 48px; background: var(--ink); transform: none; }
  .solution-feature-copy > * { width: 100%; align-self: stretch; transform: none; }
  .solution-feature-copy h3 { white-space: normal; }
  .solutions-mosaic { grid-template-columns: 1fr; }
  .mosaic-card { min-height: 300px; }
  .mosaic-automation { grid-column: auto; }
  .video-section { min-height: 460px; padding: 64px 0; }
  .video-layout { min-height: 332px; }
  .factory-section { min-height: 0; display: grid; grid-template-rows: 360px auto; }
  .factory-backdrop { position: static; grid-row: 1; height: 360px; object-position: 35% center; }
  .factory-copy { grid-row: 2; width: 100%; min-height: 0; margin: 0; padding: 64px 48px; align-items: start; background: var(--ink); }
  .factory-copy > * { width: min(100%, 560px); transform: none; }
  .quality-copy { grid-row: 1; }
  .certificate-frame { grid-row: 2; }
  .contact-shell { grid-template-columns: 1fr; grid-template-areas: "copy" "form"; }
  .contact-copy { padding: 72px 48px; }
  .contact-form { padding: 52px 48px; }
  .matrix-heading h2 { white-space: normal; }
  .matrix-heading > p:last-child { white-space: normal; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 40px); }
  html { scroll-padding-top: 64px; }
  .header-inner { width: calc(100% - 30px); }
  .brand img { width: 128px; height: 38px; }
  .mobile-menu { padding: 18px; }
  .mobile-menu > nav { margin-top: 28px; }
  .mobile-menu > nav > a, .mobile-nav-group > a { min-height: 62px; font-size: 22px; }
  .mobile-subnav { padding-inline: 34px; }
  .hero { padding-top: 300px; }
  .hero-backdrop { height: 300px; object-position: right center; }
  .hero-copy, [dir="ltr"] .hero-copy { min-height: 0; padding: 66px 20px 58px; }
  .hero h1 { font-size: 37px; line-height: 1.18; }
  .hero-lead { margin: 22px 0 28px; font-size: 15px; line-height: 1.75; }
  .primary-button { width: 100%; }
  .context-section { min-height: 0; padding: 74px 0; background-position: center; }
  .context-intro h2, .centered-heading h2, .solutions-heading h2, .matrix-heading h2, .video-copy h2, .factory-copy h2, .quality-copy h2, .contact-copy h2 { font-size: 31px; }
  .context-intro > p:last-child, .centered-heading > p:last-child, .matrix-heading > p:last-child, .video-copy > p:not(.video-status), .factory-copy > p:last-child, .contact-copy > p:last-child { font-size: 14px; }
  .buyer-questions li { min-height: 68px; }
  .buyer-questions p { padding-inline-end: 54px; font-size: 14px; }
  .about-section { padding: 72px 0 82px; }
  .capability-rail, .process-rail { grid-template-columns: 1fr; margin-top: 46px; }
  .capability-rail li, .process-rail li { min-height: 0; padding: 30px 20px 28px; border-inline-end: 1px solid var(--line); }
  .capability-rail { gap: 34px; margin-top: 36px; }
  .capability-rail li { padding: 0 20px; border: 0; }
  .capability-rail h3 { margin-top: 15px; }
  .process-section { padding: 56px 0 62px; }
  .process-rail { gap: 28px; margin-top: 32px; }
  .process-rail li { padding: 34px 20px 0; border: 0; }
  .solutions-section { padding-top: 0; }
  .solutions-heading { padding-bottom: 0; }
  .solution-feature { grid-template-rows: 280px auto; }
  .solutions-title-on-image { top: 24px; left: 50%; width: calc(100% - 40px); max-width: none; font-size: 28px; white-space: normal; transform: translateX(-50%); }
  .solution-feature-copy { padding: 44px 20px; }
  .solution-feature-copy h3 { font-size: 30px; }
  .mosaic-card { grid-template-columns: 1fr; min-height: 0; }
  .mosaic-card > img { min-height: 230px; }
  .mosaic-copy { padding: 34px 20px; }
  .mosaic-automation { grid-template-columns: 1fr; min-height: 0; }
  .mosaic-automation > img { min-height: 220px; }
  .technical-matrix { padding: 60px 0 64px; }
  .table-wrap { margin-top: 28px; border: 0; overflow: visible; }
  .table-wrap table, .table-wrap tbody, .table-wrap tr, .table-wrap th, .table-wrap td { display: block; min-width: 0; width: 100%; }
  .table-wrap thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table-wrap tbody tr { padding: 20px 0; border-top: 1px solid #3a6481; }
  .table-wrap tbody th, .table-wrap tbody td { padding: 5px 0; border: 0; }
  .table-wrap tbody th { font-size: 16px; }
  .table-wrap tbody td { font-size: 13px; }
  .video-section { min-height: 410px; padding: 54px 0; }
  .video-backdrop { object-position: 68% center; }
  .video-section::before { background: linear-gradient(90deg, rgba(5, 30, 54, .95) 0%, rgba(5, 30, 54, .76) 76%, rgba(5, 30, 54, .54) 100%); }
  .video-layout { min-height: 302px; }
  .factory-section { grid-template-rows: 280px auto; }
  .factory-backdrop { height: 280px; }
  .factory-copy { padding: 54px 20px; }
  .quality-section { padding: 58px 0 62px; }
  .quality-points { grid-template-columns: 1fr; margin-top: 34px; }
  .quality-points li, .quality-points li:nth-child(even) { border-inline: 1px solid var(--line); }
  .certificate-frame { width: min(86%, 340px); }
  .certificate-frame img { max-height: none; }
  .process-section { padding: 68px 0 76px; }
  .contact-copy { padding: 62px 20px; }
  .contact-form { padding: 38px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; padding: 30px 0; text-align: center; }
  .footer-brand, [dir="ltr"] .footer-brand, .site-footer p, [dir="ltr"] .site-footer p { justify-self: center; }
  .site-footer nav { flex-wrap: wrap; gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .desktop-nav a::after { transition-duration: .01ms !important; }
}
