:root {
  color-scheme: light;
  --navy: #071f58;
  --deep: #0a1834;
  --blue: #0f63bd;
  --sky: #dcecfb;
  --red: #a90f22;
  --orange: #f5823a;
  --ink: #172235;
  --muted: #5e6d7f;
  --soft: #eef3f8;
  --paper: #f7f9fc;
  --line: #d8e1ec;
  --white: #ffffff;
  --shadow: 0 20px 54px rgba(7, 31, 88, 0.13);
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-rendering: optimizeLegibility;
}

body * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.protected-image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 225, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 180px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.header-whatsapp {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #27354a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.site-nav a {
  position: relative;
  padding: 29px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-whatsapp,
.site-nav .nav-quote {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
}

.site-nav .nav-whatsapp {
  flex-direction: column;
  gap: 1px;
  color: var(--white);
  background: linear-gradient(135deg, #0f63bd, #073f82);
  border: 1px solid rgba(18, 102, 195, 0.35);
  box-shadow: 0 10px 24px rgba(18, 102, 195, 0.18);
}

.site-nav .nav-whatsapp span {
  font-size: 10px;
  line-height: 1;
  opacity: 0.82;
  text-transform: uppercase;
}

.site-nav .nav-whatsapp strong {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav .nav-quote {
  color: var(--white);
  background: var(--red);
}

.site-nav .nav-whatsapp::after,
.site-nav .nav-quote::after,
.site-nav .nav-mobile-product::after {
  display: none;
}

.site-nav .nav-mobile-product {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open {
  border-color: rgba(15, 99, 189, 0.35);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(7, 31, 88, 0.14);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/optimized/hero-loom-web.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.01);
  z-index: -2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 32, 0.82), rgba(6, 15, 32, 0.62) 43%, rgba(6, 15, 32, 0.10)),
    linear-gradient(180deg, rgba(6, 15, 32, 0.01), rgba(6, 15, 32, 0.34));
  z-index: -1;
}

.hero-content {
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 64px 0 56px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-capabilities .eyebrow,
.contact-section .eyebrow {
  color: #9fc4ff;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 650px;
  color: #e6eef8;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(169, 15, 34, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  min-height: 96px;
  padding: 22px 44px;
  background: var(--white);
}

.metric-strip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.section {
  padding: 66px 44px;
}

.section-header {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.section-header h2,
.company-panel h2,
.contact-copy h2 {
  margin: 0;
  max-width: 780px;
  color: inherit;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.14;
  font-weight: 900;
}

.section-header p:not(.eyebrow),
.company-panel p,
.contact-copy p {
  margin: 12px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.section-products {
  background: var(--paper);
}

.product-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  --product-accent-rgb: 18, 102, 195;
  --product-accent: #0f63bd;
  --product-accent-deep: #071f58;
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0.9;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.product-card[data-product-card="waterjet"] {
  --product-accent-rgb: 169, 15, 34;
  --product-accent: #a90f22;
  --product-accent-deep: #700817;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: transparent;
  background: transparent;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(var(--product-accent-rgb), 0.5);
  box-shadow:
    0 24px 62px rgba(7, 31, 88, 0.16),
    0 10px 28px rgba(var(--product-accent-rgb), 0.12);
  outline: none;
  transform: translateY(-3px);
  opacity: 1;
}

.product-card.is-selected {
  border-color: rgba(var(--product-accent-rgb), 0.92);
  opacity: 1;
  transform: translateY(-8px);
  box-shadow:
    0 34px 80px rgba(7, 31, 88, 0.24),
    0 16px 34px rgba(var(--product-accent-rgb), 0.24),
    inset 0 0 0 2px rgba(var(--product-accent-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-card.is-selected::before {
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.95),
    inset 0 0 0 6px rgba(var(--product-accent-rgb), 0.22);
}

.product-card.is-selected::after {
  content: "Selected Product";
  color: var(--white);
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-deep));
  box-shadow: 0 12px 28px rgba(var(--product-accent-rgb), 0.28);
}

.product-card.is-selected .product-photo {
  box-shadow: inset 0 -10px 26px rgba(var(--product-accent-rgb), 0.12);
}

.product-card.is-selected .product-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(var(--product-accent-rgb), 0.08));
}

.product-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eaf1f8);
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo-air img {
  object-position: center;
}

.product-photo-water img {
  object-position: center 58%;
}

.product-copy {
  padding: 26px;
}

.product-label {
  width: fit-content;
  margin: 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--blue);
  background: #edf6ff;
  border: 1px solid rgba(15, 99, 189, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.24;
  font-weight: 900;
}

.product-copy p:not(.product-label) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.product-copy ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-copy li {
  position: relative;
  padding-left: 18px;
  color: #344257;
  font-size: 14px;
  line-height: 1.6;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.product-detail-panels {
  width: min(1120px, 100%);
  margin: 22px auto 0;
}

.product-detail-panel {
  --panel-accent-rgb: 18, 102, 195;
  --panel-accent: #0f63bd;
  --panel-accent-deep: #071f58;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(248, 251, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.025) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.02) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.22);
  border-radius: 8px;
  box-shadow:
    0 24px 62px rgba(7, 31, 88, 0.14),
    0 10px 26px rgba(var(--panel-accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.product-detail-panel[data-product-panel="waterjet"] {
  --panel-accent-rgb: 169, 15, 34;
  --panel-accent: #a90f22;
  --panel-accent-deep: #700817;
}

.product-detail-panel .detail-header .eyebrow {
  color: var(--panel-accent);
}

.product-detail-panel[hidden] {
  display: none;
}

.product-detail-panel .button-primary {
  background: linear-gradient(135deg, var(--panel-accent), var(--panel-accent-deep));
  box-shadow: 0 14px 34px rgba(var(--panel-accent-rgb), 0.24);
}

.mobile-product-switch {
  display: none;
}

.detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
}

.detail-header p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.model-note {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--panel-accent-rgb), 0.2);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(var(--panel-accent-rgb), 0.1), rgba(255, 255, 255, 0.96) 44%),
    #ffffff;
  box-shadow:
    0 16px 32px rgba(var(--panel-accent-rgb), 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.model-note span {
  display: block;
  color: var(--panel-accent);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-note p {
  max-width: 1040px;
  margin: 8px 0 0;
  color: #34445d;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 400;
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.detail-summary div {
  min-height: 88px;
  padding: 15px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.16);
  border-radius: 8px;
  box-shadow:
    0 12px 26px rgba(var(--panel-accent-rgb), 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-summary span {
  display: block;
  color: var(--panel-accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.detail-summary strong {
  display: block;
  margin-top: 7px;
  color: #24334a;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.detail-section-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}

.detail-section-title > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--panel-accent), var(--panel-accent-deep));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.detail-section-title h4 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.detail-section-title p {
  margin: 6px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.spec-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.spec-highlight-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--white);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.17);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.spec-highlight-grid span,
.spec-note span {
  display: block;
  color: var(--panel-accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.spec-highlight-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  max-width: 100%;
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: normal;
}

.spec-highlight-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.spec-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.spec-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.spec-block {
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.052),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.spec-block h4,
.quality-strip h4 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
}

.spec-table {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.13);
  border-left: 3px solid rgba(var(--panel-accent-rgb), 0.34);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.spec-table span {
  color: var(--panel-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.36;
}

.spec-table p {
  margin: 0;
  color: #38485f;
  font-size: 14px;
  line-height: 1.58;
}

.quality-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  margin-top: 16px;
}

.quality-strip-single {
  grid-template-columns: 1fr;
}

.quality-strip > div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.052),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quality-strip ul {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.quality-strip-single ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.quality-strip-single li:last-child {
  grid-column: 1 / -1;
}

.quality-strip li {
  position: relative;
  padding-left: 18px;
  color: #344257;
  font-size: 14px;
  line-height: 1.58;
}

.quality-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.spec-note {
  align-self: start;
  background: linear-gradient(180deg, #ffffff, rgba(var(--panel-accent-rgb), 0.08)) !important;
}

.visual-config-section {
  margin-top: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.025) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.18);
  border-radius: 8px;
  box-shadow:
    0 14px 34px rgba(var(--panel-accent-rgb), 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.visual-config-heading {
  max-width: 900px;
}

.visual-config-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.visual-config-heading p:not(.eyebrow) {
  margin: 9px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.visual-config-subheading {
  margin-top: 26px;
}

.visual-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.visual-card-grid-views {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-card-grid-airjet {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card-grid-airjet .visual-card img {
  padding: 0;
  object-fit: contain;
  background: #eef3f8;
}

.visual-card-grid-config {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card-grid-airjet-components {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 12px 28px rgba(var(--panel-accent-rgb), 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef3f8;
}

.visual-card-grid-views .visual-card {
  background: #ffffff;
  box-shadow:
    0 16px 34px rgba(var(--panel-accent-rgb), 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.visual-card-grid-views .visual-card img {
  padding: 10px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background:
    linear-gradient(180deg, #f7faff, #eef3f8),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px);
}

.waterjet-frame-heading {
  margin-top: 28px;
}

.waterjet-frame-grid {
  margin-top: 16px;
}

.waterjet-frame-grid .visual-card img {
  padding: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(180deg, #f7faff, #eef3f8),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px);
}

.waterjet-frame-card > div {
  padding: 16px 18px 18px;
}

.visual-card-grid-config .visual-card img {
  aspect-ratio: 4 / 3;
}

.visual-card-grid-config .visual-card img.angle-sensor-image {
  object-position: center 62%;
}

.visual-card-grid-config .visual-card img.airjet-main-nozzle-image {
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  background:
    linear-gradient(180deg, #f7faff, #eef3f8),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px);
}

.image-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  text-align: left;
}

.image-zoom-trigger img {
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.image-zoom-trigger > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(7, 31, 88, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 31, 88, 0.22);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-zoom-trigger:hover img,
.image-zoom-trigger:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.image-zoom-trigger:hover > span,
.image-zoom-trigger:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.image-zoom-trigger:focus-visible {
  outline: 3px solid rgba(var(--panel-accent-rgb), 0.38);
  outline-offset: -3px;
}

.visual-card > div {
  padding: 14px;
}

.visual-card-grid-views .visual-card > div {
  padding: 16px 18px 18px;
}

.visual-card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  color: var(--panel-accent);
  background: rgba(var(--panel-accent-rgb), 0.08);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.visual-card h5 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 900;
}

.visual-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.56;
}

.visual-card-grid-views .visual-card h5 {
  font-size: 18px;
  line-height: 1.24;
}

.visual-card-grid-views .visual-card p {
  margin-top: 8px;
  color: #536377;
  font-size: 14px;
  line-height: 1.62;
}

.visual-card .image-zoom-trigger > span {
  right: 12px;
  bottom: 12px;
  min-height: 28px;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(7, 31, 88, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 22px rgba(7, 31, 88, 0.22);
  font-size: 11px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(3, 10, 24, 0.94);
  border: 0;
  cursor: zoom-out;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #030a18;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  background: rgba(3, 10, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.image-lightbox-bar h2 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.image-lightbox-close {
  width: 38px;
  height: 38px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.image-lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #030a18;
}

body.has-lightbox-open {
  overflow: hidden;
}

.shaft-tech {
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(18, 102, 195, 0.045) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.035) 0 1px, transparent 1px 16px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shaft-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.shaft-intro h4 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.shaft-intro p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.patent-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid #cddbea;
  border-radius: 8px;
}

.patent-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.patent-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.patent-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.shaft-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin: 18px 0 0;
  align-items: start;
}

.shaft-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.shaft-banner img {
  width: 100%;
  border-radius: 6px;
}

.shaft-media-stack {
  display: grid;
  gap: 14px;
}

.shaft-real-photo-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, 470px);
  align-items: stretch;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 253, 0.88));
  border: 1px solid #d8e4f2;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 31, 88, 0.08);
}

.shaft-real-photo-card .shaft-real-image-frame {
  align-self: stretch;
  height: auto;
  min-height: 245px;
  margin: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f6f9fd, #e9f1f8),
    repeating-linear-gradient(90deg, rgba(18, 102, 195, 0.035) 0 1px, transparent 1px 18px);
  box-shadow:
    0 0 0 1px rgba(216, 228, 242, 0.9),
    0 12px 24px rgba(7, 31, 88, 0.055);
}

.shaft-real-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 62%;
  background: #eef4fa;
}

.shaft-real-photo-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-left: 1px solid #dfe8f3;
}

.shaft-real-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(18, 102, 195, 0.08);
  border: 1px solid rgba(18, 102, 195, 0.16);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shaft-real-photo-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
}

.shaft-real-photo-card p {
  margin: 10px 0 0;
  color: #4f5f73;
  font-size: 13.6px;
  line-height: 1.54;
}

.shaft-real-photo-card ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.shaft-real-photo-card li {
  position: relative;
  padding-left: 17px;
  color: #405068;
  font-size: 12.7px;
  line-height: 1.45;
}

.shaft-real-photo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 102, 195, 0.1);
}

.shaft-banner figcaption {
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #dfe8f3;
}

.shaft-banner figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.shaft-banner figcaption p {
  margin: 10px 0 0;
  color: #4f5f73;
  font-size: 14px;
  line-height: 1.68;
}

.shaft-banner dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
}

.shaft-banner dl div {
  padding: 12px;
  background: #f7faff;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
}

.shaft-banner dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.shaft-banner dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.shaft-benefits {
  display: grid;
  gap: 10px;
}

.shaft-benefits article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 14px;
  padding: 14px;
  background: #fbfcfe;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
}

.shaft-benefits span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #fff5ed;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.shaft-benefits h5 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
}

.shaft-benefits p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-capabilities {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 26, 59, 0.96), rgba(6, 16, 35, 0.98)),
    var(--deep);
}

.section-capabilities .section-header p:not(.eyebrow) {
  color: #b8c8dd;
}

.capability-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article {
  min-height: 160px;
  padding: 23px 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.capability-title {
  display: block;
  min-width: 0;
}

.capability-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

.capability-grid p {
  margin: 14px 0 0;
  color: #b8c8dd;
  font-size: 15px;
  line-height: 1.62;
}

.section-company {
  background:
    linear-gradient(180deg, #f7f9fc, #eef3f8);
}

.section-company-applications {
  position: relative;
  scroll-margin-top: 92px;
}

.section-anchor {
  position: absolute;
  top: -88px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.company-panel {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1.48fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-panel-unified {
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1.52fr);
  gap: 34px;
  padding: 32px;
}

.company-brand-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(18, 102, 195, 0.045) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.035) 0 1px, transparent 1px 16px);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(7, 31, 88, 0.06);
}

.company-brand-card img {
  width: min(250px, 100%);
}

.company-brand-body {
  max-width: 330px;
  margin-top: 22px;
}

.company-brand-body strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.company-brand-body span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.company-brand-card p {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.company-brand-card p span {
  display: inline-block;
  margin: 0 5px;
  color: var(--red);
}

.company-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.company-brand-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(18, 102, 195, 0.18);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.company-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 4px;
}

.company-copy h2 {
  max-width: 880px;
}

.company-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.company-focus-grid article {
  min-height: 150px;
  padding: 18px 19px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  box-shadow:
    0 16px 34px rgba(7, 31, 88, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.company-focus-title {
  display: flex;
  align-items: baseline;
  gap: 11px;
  min-width: 0;
}

.company-focus-title > span {
  display: none !important;
}

.company-focus-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 32px;
  height: 22px;
  padding: 0 8px;
  color: #0c5db8;
  background: rgba(12, 93, 184, 0.09);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.company-focus-grid strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 900;
}

.company-focus-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-section {
  padding: 52px 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 88, 0.96), rgba(9, 54, 112, 0.94)),
    var(--navy);
}

.contact-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.contact-copy {
  min-width: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #d7e4f5;
  font-size: 17px;
  line-height: 1.7;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-side {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.contact-company-info {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.14);
}

.contact-company-info div {
  min-width: 0;
  padding: 15px 0;
}

.contact-company-info div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-company-info dt {
  color: #9fc5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-company-info dd {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contact-company-info .contact-factory-name dd {
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.contact-actions .button {
  width: 100%;
}

.contact-whatsapp {
  gap: 8px;
}

.contact-whatsapp span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-whatsapp strong {
  font-size: 15px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 44px;
  color: #5e6d7f;
  background: #f1f4f8;
  border-top: 1px solid #d7e1ef;
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.footer-brand strong {
  color: var(--deep);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.footer-brand span,
.footer-contact span {
  max-width: 430px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: #0f63bd;
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #0a3f84;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(7, 31, 88, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-whatsapp,
  .site-nav .nav-quote {
    justify-content: flex-start;
    min-height: 46px;
    padding: 12px 0;
    color: #27354a;
    background: transparent;
  }

  .site-nav .nav-whatsapp {
    min-height: 58px;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
    padding: 12px 14px;
    color: #ffffff;
    background:
      linear-gradient(135deg, rgba(15, 99, 189, 0.98), rgba(7, 31, 88, 0.96));
    border: 1px solid rgba(15, 99, 189, 0.34);
    box-shadow: 0 14px 30px rgba(7, 31, 88, 0.18);
  }

  .site-nav .nav-whatsapp span {
    font-size: 11px;
    opacity: 0.88;
  }

  .site-nav .nav-whatsapp strong {
    font-size: 14px;
  }

  .site-nav .nav-quote {
    margin-top: 8px;
    padding: 12px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), #7f0b19);
    box-shadow: 0 14px 28px rgba(169, 15, 34, 0.16);
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .metric-strip,
  .product-grid,
  .capability-grid,
  .company-panel,
  .company-focus-grid,
  .detail-header,
  .detail-summary,
  .spec-highlight-grid,
  .spec-layout,
  .quality-strip,
  .visual-card-grid-views,
  .shaft-intro,
  .shaft-feature-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-side {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    align-items: stretch;
  }

  .visual-card-grid-config {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: auto;
  }

  .company-panel {
    gap: 20px;
    padding: 20px;
  }

  .company-panel-unified {
    grid-template-columns: 1fr;
  }

  .contact-company-info {
    min-width: 0;
    width: 100%;
  }

  .contact-company-info .contact-factory-name dd {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .company-brand-card {
    min-height: auto;
  }

  .contact-copy,
  .contact-actions {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .product-detail-panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    gap: 8px;
    padding: 0 11px;
    background:
      linear-gradient(135deg, rgba(7, 31, 88, 0.54), rgba(15, 99, 189, 0.30));
    border-bottom: 1px solid rgba(195, 225, 255, 0.24);
    box-shadow: 0 12px 28px rgba(7, 31, 88, 0.16);
    backdrop-filter: blur(15px) saturate(135%);
  }

  .brand {
    height: 40px;
    min-width: 104px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand img {
    width: 104px;
    height: 28px;
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.56))
      drop-shadow(0 5px 10px rgba(2, 12, 32, 0.30));
  }

  .header-whatsapp {
    position: relative;
    min-width: 0;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    flex: 0 1 118px;
    max-width: 118px;
    padding: 3px 7px 4px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 11px;
    color: #063d72;
    background:
      radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.22) 30%, transparent 46%),
      linear-gradient(135deg, rgba(236, 253, 255, 0.98), rgba(149, 232, 246, 0.88) 48%, rgba(82, 203, 226, 0.86));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.90),
      inset 0 -8px 14px rgba(15, 112, 162, 0.12),
      0 7px 15px rgba(3, 55, 130, 0.14);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    overflow: hidden;
  }

  .header-whatsapp::before {
    content: "";
    position: absolute;
    inset: 1px 3px auto;
    height: 10px;
    border-radius: 10px 10px 6px 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.04));
    pointer-events: none;
  }

  .header-whatsapp span {
    position: relative;
    flex: 0 0 auto;
    font-size: 7.4px;
    opacity: 0.78;
    text-transform: uppercase;
  }

  .header-whatsapp strong {
    position: relative;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9.2px;
    font-weight: 950;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    gap: 4px;
    border-color: rgba(255, 255, 255, 0.44);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 8px 16px rgba(2, 12, 32, 0.12);
  }

  .menu-toggle span {
    width: 15px;
    height: 2px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    top: 64px;
    left: 10px;
    right: 10px;
    padding: 10px 12px 14px;
    border: 1px solid rgba(185, 216, 246, 0.55);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(239, 246, 254, 0.92));
    box-shadow: 0 18px 36px rgba(7, 31, 88, 0.20);
    backdrop-filter: blur(18px);
  }

  .site-nav .nav-whatsapp {
    display: none;
  }

  .site-nav .nav-mobile-product {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.90));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.80),
      0 10px 20px rgba(7, 31, 88, 0.09);
  }

  .site-nav .nav-mobile-product + .nav-mobile-product {
    margin-top: 8px;
  }

  .site-nav .nav-mobile-airjet {
    color: #0b56a5;
    background:
      radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.92), transparent 35%),
      linear-gradient(135deg, rgba(242, 249, 255, 0.98), rgba(218, 236, 255, 0.94));
    border: 1px solid rgba(117, 178, 238, 0.46);
  }

  .site-nav .nav-mobile-waterjet {
    margin-bottom: 8px;
    color: #a2162b;
    background:
      radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.92), transparent 35%),
      linear-gradient(135deg, rgba(255, 248, 249, 0.98), rgba(253, 226, 231, 0.94));
    border: 1px solid rgba(218, 113, 127, 0.34);
  }

  .site-nav a:not(.nav-mobile-product),
  .site-nav .nav-quote {
    min-height: 40px;
    padding: 9px 0;
    font-size: 12.5px;
  }

  .site-nav a:not(.nav-mobile-product):not(.nav-quote) {
    border-bottom: 1px solid rgba(216, 225, 236, 0.74);
  }

  .site-nav .nav-quote {
    justify-content: center;
    min-height: 46px;
    margin-top: 10px;
    padding: 0 14px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), #7f0b19);
    box-shadow: 0 12px 24px rgba(169, 15, 34, 0.14);
  }

  @media (max-width: 360px) {
    .site-header {
      gap: 7px;
      padding: 0 10px;
    }

    .brand {
      min-width: 94px;
    }

    .brand img {
      width: 94px;
    }

    .header-whatsapp {
      flex-basis: 108px;
      max-width: 108px;
      padding-inline: 5px;
    }

    .header-whatsapp span {
      font-size: 7px;
    }

    .header-whatsapp strong {
      font-size: 8.6px;
    }

    .site-nav .nav-mobile-product {
      min-height: 44px;
      font-size: 12.5px;
    }

    .menu-toggle {
      width: 31px;
      height: 31px;
      flex-basis: 31px;
    }
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-media {
    background-size: auto 92%;
    background-position: 80% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 15, 32, 0.74), rgba(6, 15, 32, 0.45) 58%, rgba(6, 15, 32, 0.08)),
      linear-gradient(180deg, rgba(6, 15, 32, 0.02), rgba(6, 15, 32, 0.32));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 54px 0 44px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .button {
    width: 100%;
  }

  .metric-strip div,
  .section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-shell,
  .contact-side {
    grid-template-columns: 1fr;
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.68;
  }

  .contact-company-info .contact-factory-name dd {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-header h2,
  .company-panel h2,
  .contact-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .product-card {
    grid-template-rows: 260px 1fr;
  }

  .product-photo-air img {
    object-position: 62% center;
  }

  .product-photo-water img {
    object-position: 58% 58%;
  }

  .product-copy,
  .capability-grid article,
  .product-detail-panel,
  .spec-block,
  .quality-strip > div,
  .visual-config-section {
    padding: 18px;
  }

  .detail-header h3 {
    font-size: 24px;
  }

  .detail-summary div {
    min-height: auto;
  }

  .spec-highlight-grid strong {
    font-size: 22px;
    line-height: 1.14;
  }

  .detail-section-title {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .detail-section-title > span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .detail-section-title h4 {
    font-size: 18px;
  }

  .spec-highlight-grid div {
    min-height: auto;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .spec-highlight-grid strong {
    font-size: 24px;
  }

  .shaft-tech {
    padding: 12px;
  }

  .shaft-intro h4 {
    font-size: 22px;
  }

  .shaft-banner dl,
  .quality-strip-single ul,
  .visual-card-grid-config {
    grid-template-columns: 1fr;
  }

  .shaft-banner {
    padding: 0;
  }

  .shaft-banner img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .shaft-banner figcaption {
    margin-top: 0;
    padding: 16px;
  }

  .visual-config-section {
    margin-left: -18px;
    margin-right: -18px;
    padding: 12px;
  }

  .visual-card-grid {
    gap: 14px;
  }

  .visual-card-grid-views .visual-card img,
  .visual-card-grid-config .visual-card img {
    width: 100%;
    padding: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eef3f8;
  }

  .visual-card-grid-views .visual-card img {
    aspect-ratio: 16 / 9;
  }

  .visual-card > div,
  .visual-card-grid-views .visual-card > div {
    padding: 16px;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-actions .button {
    min-height: 56px;
  }

  .contact-whatsapp {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    padding: 13px 16px;
    text-align: left;
  }

  .contact-whatsapp span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1;
  }

  .contact-whatsapp strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
  }

  .quality-strip-single li:last-child {
    grid-column: auto;
  }

  .product-copy h3,
  .capability-grid h3 {
    font-size: 21px;
  }

  .company-panel img {
    width: 190px;
  }

  .site-footer {
    min-height: 96px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 22px;
  }
}

/* Mobile polish overrides 20260622 */
@media (max-width: 640px) {
  .hero {
    min-height: min(720px, calc(100svh - 68px));
    align-items: flex-end;
  }

  .hero-media {
    background-size: auto 92%;
    background-position: 84% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 15, 32, 0.78), rgba(6, 15, 32, 0.5) 62%, rgba(6, 15, 32, 0.08)),
      linear-gradient(180deg, rgba(6, 15, 32, 0.08), rgba(6, 15, 32, 0.72));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 46px 0 34px;
  }

  .hero .eyebrow {
    max-width: 290px;
    margin-bottom: 9px;
    font-size: 10px;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 270px;
    font-size: clamp(35px, 11.4vw, 46px);
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 335px;
    margin-top: 13px;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .metric-strip div {
    min-height: auto;
    padding: 15px 22px;
  }

  .metric-strip strong {
    font-size: 16px;
    line-height: 1.22;
  }

  .metric-strip span {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.48;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-header .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .section-header h2,
  .company-panel h2,
  .contact-copy h2 {
    font-size: 25px;
    line-height: 1.18;
  }

  .section-header p:not(.eyebrow),
  .company-panel p,
  .contact-copy p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.62;
  }

  .product-grid {
    gap: 16px;
  }

  .product-grid.is-mobile-focused {
    gap: 12px;
  }

  .product-grid.is-mobile-focused .product-card:not(.is-selected) {
    display: none;
  }

  .product-grid.is-mobile-focused + .product-detail-panels {
    margin-top: 12px;
  }

  .mobile-product-switch {
    position: fixed;
    right: 0;
    bottom: 96px;
    z-index: 88;
    width: 68px;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 6px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-right: 0;
    border-radius: 14px 0 0 14px;
    color: #ffffff;
    text-align: center;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      inset 0 -10px 16px rgba(0, 0, 0, 0.06),
      0 12px 26px rgba(7, 31, 88, 0.16);
    backdrop-filter: blur(12px) saturate(128%);
    -webkit-backdrop-filter: blur(12px) saturate(128%);
  }

  .mobile-product-switch[hidden] {
    display: none;
  }

  .mobile-product-switch span,
  .mobile-product-switch strong {
    position: relative;
    z-index: 1;
    display: block;
  }

  .mobile-product-switch span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 7.5px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-product-switch strong {
    font-size: 10.5px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: 0.01em;
  }

  .mobile-product-switch::before {
    content: "";
    position: absolute;
    inset: 2px 4px auto 7px;
    height: 17px;
    border-radius: 11px 0 8px 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
    pointer-events: none;
  }

  .mobile-product-switch.is-target-airjet {
    background:
      radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.28), transparent 38%),
      linear-gradient(145deg, rgba(32, 127, 222, 0.68), rgba(7, 48, 130, 0.64));
  }

  .mobile-product-switch.is-target-waterjet {
    background:
      radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.28), transparent 38%),
      linear-gradient(145deg, rgba(196, 30, 54, 0.66), rgba(114, 8, 22, 0.62));
  }

  .product-card {
    grid-template-rows: 232px 1fr;
  }

  .product-copy {
    padding: 16px;
  }

  .product-copy .product-label {
    font-size: 11px;
  }

  .product-copy h3,
  .capability-grid h3 {
    font-size: 20px;
    line-height: 1.24;
  }

  .product-copy p,
  .product-copy li {
    font-size: 13.5px;
    line-height: 1.56;
  }

  .product-copy ul {
    margin-top: 10px;
    gap: 7px;
  }

  .text-link {
    margin-top: 12px;
    font-size: 13px;
  }

  .product-detail-panel {
    padding: 18px;
  }

  .detail-header {
    gap: 14px;
  }

  .detail-header h3 {
    font-size: 23px;
    line-height: 1.16;
  }

  .detail-header p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.6;
  }

  .detail-summary {
    gap: 10px;
  }

  .detail-summary div,
  .spec-highlight-grid div {
    padding: 16px;
  }

  .spec-highlight-grid {
    gap: 10px;
  }

  .spec-highlight-grid strong {
    font-size: 22px;
    line-height: 1.14;
  }

  .spec-highlight-grid p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .detail-section-title {
    margin-top: 18px;
  }

  .spec-block h4 {
    font-size: 18px;
  }

  .spec-table p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .shaft-tech {
    margin-top: 12px;
  }

  .shaft-banner {
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
    border-radius: 8px;
  }

  .shaft-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    transform: none;
  }

  .shaft-banner figcaption {
    padding: 15px;
  }

  .shaft-banner figcaption strong {
    font-size: 18px;
    line-height: 1.28;
  }

  .shaft-banner figcaption p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .shaft-real-photo-card {
    grid-column: auto;
    display: block;
    margin-left: -12px;
    margin-right: -12px;
  }

  .shaft-real-photo-card .shaft-real-image-frame {
    height: auto;
    min-height: 0;
    margin: 12px 12px 0;
    border-radius: 8px;
  }

  .shaft-real-photo-card img {
    position: static;
    aspect-ratio: 16 / 8.8;
    height: auto;
    min-height: 0;
    object-position: center 61%;
  }

  .shaft-real-photo-card figcaption {
    padding: 15px;
    border-top: 1px solid #dfe8f3;
    border-left: 0;
  }

  .shaft-real-photo-card strong {
    font-size: 17px;
  }

  .shaft-real-kicker {
    margin-bottom: 8px;
    padding: 5px 9px;
    font-size: 10.5px;
  }

  .shaft-real-photo-card p,
  .shaft-real-photo-card li {
    font-size: 13.5px;
  }

  .visual-card-grid {
    gap: 12px;
  }

  .visual-card > div,
  .visual-card-grid-views .visual-card > div {
    padding: 15px;
  }

  .visual-card h5,
  .visual-card-grid-views .visual-card h5 {
    font-size: 17px;
    line-height: 1.25;
  }

  .visual-card p,
  .visual-card-grid-views .visual-card p {
    font-size: 13px;
    line-height: 1.52;
  }

  .company-panel {
    padding: 16px;
  }

  .company-panel-unified {
    gap: 14px;
  }

  .company-brand-body {
    margin-top: 16px;
  }

  .company-brand-body strong {
    font-size: 18px;
  }

  .company-brand-body span {
    font-size: 13px;
    line-height: 1.52;
  }

  .company-focus-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .company-focus-grid article {
    min-height: auto;
    padding: 15px;
  }

  .company-focus-grid strong {
    font-size: 16px;
  }

  .company-focus-grid p {
    font-size: 13px;
    line-height: 1.52;
  }

  .contact-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-footer {
    gap: 14px;
    padding: 18px 22px;
  }
}
/* End mobile polish overrides 20260622 */

/* Mobile visual refinement 20260627 */
@media (max-width: 640px) {
  .site-header {
    height: 64px;
    justify-content: flex-start;
    gap: 6px;
    background:
      linear-gradient(135deg, rgba(7, 31, 88, 0.48), rgba(15, 99, 189, 0.24));
    border-bottom-color: rgba(195, 225, 255, 0.18);
    box-shadow: 0 10px 26px rgba(7, 31, 88, 0.12);
  }

  .brand {
    min-width: 118px;
    margin-right: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .brand img {
    width: 118px;
    height: 31px;
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.62))
      drop-shadow(0 6px 12px rgba(2, 12, 32, 0.32));
  }

  .header-whatsapp {
    height: 33px;
    flex-basis: 118px;
    max-width: 118px;
    gap: 2px;
    color: #f4fbff;
    border-color: rgba(217, 238, 255, 0.62);
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12) 31%, transparent 48%),
      radial-gradient(circle at 92% 92%, rgba(112, 194, 245, 0.44), transparent 46%),
      linear-gradient(135deg, rgba(38, 112, 190, 0.78), rgba(26, 86, 164, 0.72) 48%, rgba(8, 44, 112, 0.78));
    box-shadow:
      0 0 0 1px rgba(145, 202, 255, 0.18),
      0 0 12px rgba(87, 169, 238, 0.34),
      0 8px 17px rgba(5, 27, 75, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -9px 14px rgba(4, 31, 92, 0.18);
  }

  .header-whatsapp::before {
    inset: 1px 4px auto;
    height: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.06));
  }

  .header-whatsapp::after {
    content: "";
    position: absolute;
    inset: auto 10px 3px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    filter: blur(3px);
    pointer-events: none;
  }

  .header-whatsapp span {
    font-size: 7.6px;
    line-height: 1;
    opacity: 0.84;
  }

  .header-whatsapp strong {
    font-size: 9.3px;
    line-height: 1;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .hero {
    min-height: min(720px, calc(100svh - 64px));
  }

  .section {
    background: #fbfdff;
  }

  .section:nth-of-type(even) {
    background: #f4f8fd;
  }

  .section.section-capabilities {
    color: #ffffff;
    background:
      radial-gradient(circle at 18% 0%, rgba(25, 93, 172, 0.38), transparent 38%),
      linear-gradient(135deg, rgba(8, 28, 66, 0.98), rgba(5, 14, 33, 0.98)),
      var(--deep);
  }

  .section.section-capabilities .eyebrow {
    color: rgba(231, 242, 255, 0.86);
  }

  .section.section-capabilities .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  }

  .section.section-capabilities .section-header p:not(.eyebrow) {
    color: #e1ecf8;
  }

  .section.section-capabilities .capability-grid article {
    background:
      linear-gradient(180deg, rgba(15, 48, 103, 0.94), rgba(8, 28, 66, 0.92));
    border-color: rgba(198, 224, 255, 0.24);
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .section.section-capabilities .capability-grid h3 {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
  }

  .section.section-capabilities .capability-grid p {
    color: #d7e5f5;
  }

  .section-header h2,
  .company-panel h2,
  .contact-copy h2 {
    color: #111b2f;
    font-weight: 900;
  }

  .section-header p:not(.eyebrow),
  .company-panel p,
  .contact-copy p,
  .detail-header p:not(.eyebrow) {
    color: #5a687a;
  }

  .product-card,
  .product-detail-panel,
  .spec-block,
  .visual-card,
  .company-panel,
  .company-focus-grid article {
    border-color: rgba(199, 215, 233, 0.84);
    box-shadow: 0 12px 30px rgba(7, 31, 88, 0.08);
  }

  .product-copy h3,
  .detail-header h3,
  .visual-card h5,
  .visual-card-grid-views .visual-card h5,
  .company-focus-grid strong {
    color: #071f58;
  }

  .product-copy p,
  .product-copy li,
  .visual-card p,
  .visual-card-grid-views .visual-card p,
  .company-focus-grid p {
    color: #5d6b7d;
  }

  .spec-highlight-grid div {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
    border-color: rgba(199, 215, 233, 0.82);
    box-shadow: 0 10px 24px rgba(7, 31, 88, 0.07);
  }

  .spec-table {
    gap: 8px;
  }

  .spec-table div {
    padding: 13px 14px;
    border-color: rgba(204, 218, 235, 0.78);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    box-shadow: none;
  }

  .spec-table span {
    color: #1264b8;
    font-size: 11px;
  }

  .spec-table p {
    color: #253247;
    font-size: 13.2px;
  }

  .visual-card > div,
  .visual-card-grid-views .visual-card > div {
    background: #ffffff;
  }

  .site-nav {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(238, 246, 255, 0.94));
  }
}

@media (max-width: 360px) {
  .brand {
    min-width: 106px;
  }

  .brand img {
    width: 106px;
    height: 29px;
  }

  .header-whatsapp {
    flex-basis: 106px;
    max-width: 106px;
    gap: 2px;
  }

  .header-whatsapp strong {
    font-size: 8.4px;
  }
}

/* Air jet component cards need equal image boxes while keeping the main nozzle fully visible. */
.visual-card-grid-airjet.visual-card-grid-views .visual-card img {
  aspect-ratio: 16 / 9;
  padding: 0;
  object-fit: contain;
  background: #eef3f8;
}

.visual-card-grid-airjet-components .visual-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef3f8;
}

.visual-card-grid-airjet-components .visual-card img.airjet-main-nozzle-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left center;
  padding: 0;
  background: #eef3f8;
}

.visual-card-grid-airjet-components {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dual-component-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  padding: 0 !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef3f8;
  border-bottom: 1px solid rgba(var(--panel-accent-rgb), 0.12);
}

.dual-component-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.dual-component-image img + img {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.airjet-wide-component-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.visual-card-grid-airjet-components .airjet-wide-component-card img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.airjet-wide-component-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px;
}

@media (max-width: 760px) {
  .visual-card-grid-airjet-components {
    grid-template-columns: 1fr;
  }

  .airjet-wide-component-card {
    grid-column: auto;
    display: block;
  }

  .visual-card-grid-airjet-components .airjet-wide-component-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .airjet-wide-component-card > div {
    display: block;
    padding: 16px;
  }

  .dual-component-image {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .dual-component-image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .dual-component-image img + img {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
  }
}

/* Final layout polish: keep the hero copy separate from the loom visual, and
   keep secondary air-jet parts as compact component cards. */
.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, #06152c 0%, #08295b 56%, #0b4f96 100%);
}

.hero-media {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  min-height: calc(100svh - 76px);
  background-size: auto 88%;
  background-position: center 58%;
  transform: none;
  z-index: 1;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px 32px 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background:
    radial-gradient(circle at 60% 36%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 35, 0.18), rgba(4, 15, 35, 0.02) 48%, rgba(4, 15, 35, 0.18)),
    linear-gradient(180deg, rgba(4, 15, 35, 0.06), rgba(4, 15, 35, 0.24));
  z-index: 0;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: 680px;
  margin-left: max(28px, calc((100vw - 1180px) / 2));
  padding: 86px 38px 72px 0;
  align-self: center;
  z-index: 2;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(42px, 5vw, 70px);
}

.hero-lead {
  max-width: 590px;
}

.visual-card-grid-airjet-components {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-card-grid-airjet-components .visual-card {
  min-height: 0;
}

.visual-card-grid-airjet-components .airjet-weft-feeder-card,
.visual-card-grid-airjet-components .airjet-scissor-card {
  grid-column: auto;
  display: block;
}

.visual-card-grid-airjet-components .airjet-weft-feeder-card img,
.visual-card-grid-airjet-components .airjet-scissor-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-card-grid-airjet-components .visual-card h5 {
  font-size: 20px;
  line-height: 1.2;
}

.visual-card-grid-airjet-components .visual-card p {
  font-size: 14.5px;
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.94fr) minmax(420px, 1.06fr);
  }

  .hero-media {
    background-size: auto 84%;
    background-position: 58% 58%;
  }

  .visual-card-grid-airjet-components {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(270px, 42svh) auto;
    align-items: stretch;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    background-size: auto 88%;
    background-position: 66% 55%;
  }

  .hero-media::before {
    inset: 16px 0 8px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 22, 48, 0.04), rgba(5, 22, 48, 0.36) 48%, rgba(5, 22, 48, 0.94));
  }

  .hero-content {
    grid-column: 1;
    grid-row: 2;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 24px 22px 34px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .hero-lead {
    max-width: 360px;
  }

  .visual-card-grid-airjet-components {
    grid-template-columns: 1fr;
  }
}

/* Final restoration and visual polish, 20260630. */
.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  grid-column: auto;
  grid-row: auto;
}

.hero-media {
  min-height: 0;
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.01);
  z-index: -2;
}

.hero-media::before {
  content: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 32, 0.78), rgba(6, 15, 32, 0.58) 42%, rgba(6, 15, 32, 0.08)),
    linear-gradient(180deg, rgba(6, 15, 32, 0.02), rgba(6, 15, 32, 0.32));
  z-index: -1;
}

.hero-content {
  width: min(760px, calc(100% - 48px));
  max-width: none;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 64px 0 56px;
  color: var(--white);
  align-self: auto;
  z-index: 1;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 78px);
}

.hero-lead {
  max-width: 650px;
}

.visual-config-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  border-color: rgba(var(--panel-accent-rgb), 0.14);
}

.visual-config-heading h4 {
  color: #071f58;
  letter-spacing: 0;
}

.visual-config-heading p:not(.eyebrow) {
  color: #59687a;
}

.visual-card-grid-airjet-components {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-card-grid-airjet-components .visual-card {
  min-height: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: rgba(184, 204, 228, 0.82);
  box-shadow:
    0 14px 28px rgba(7, 31, 88, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.visual-card-grid-airjet-components .airjet-weft-feeder-card,
.visual-card-grid-airjet-components .airjet-scissor-card {
  grid-column: auto;
  display: block;
}

.visual-card-grid-airjet-components .visual-card img,
.visual-card-grid-airjet-components .airjet-weft-feeder-card img,
.visual-card-grid-airjet-components .airjet-scissor-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef3f8;
}

.visual-card-grid-airjet-components .visual-card > div {
  padding: 15px 16px 17px;
}

.visual-card-grid-airjet-components .visual-card span {
  color: #0f63bd;
  background: rgba(15, 99, 189, 0.08);
  border: 1px solid rgba(15, 99, 189, 0.12);
}

.visual-card-grid-airjet-components .visual-card h5 {
  color: #071f58;
  font-size: 19px;
  line-height: 1.22;
}

.visual-card-grid-airjet-components .visual-card p {
  color: #5d6b7d;
  font-size: 14px;
  line-height: 1.62;
}

.visual-card-grid-airjet.visual-card-grid-views .visual-card {
  border-color: rgba(190, 208, 229, 0.9);
}

.visual-card-grid-airjet.visual-card-grid-views .visual-card span {
  color: #0f63bd;
  background: linear-gradient(180deg, rgba(18, 104, 191, 0.095), rgba(18, 104, 191, 0.055));
  border: 1px solid rgba(18, 104, 191, 0.16);
}

@media (max-width: 1120px) {
  .hero-media {
    background-size: auto 92%;
    background-position: 80% center;
  }

  .visual-card-grid-airjet-components {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: min(720px, calc(100svh - 64px));
    display: flex;
    align-items: flex-end;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
    background-size: auto 92%;
    background-position: 84% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 15, 32, 0.76), rgba(6, 15, 32, 0.5) 62%, rgba(6, 15, 32, 0.08)),
      linear-gradient(180deg, rgba(6, 15, 32, 0.08), rgba(6, 15, 32, 0.72));
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: 16px;
    padding: 46px 0 34px;
  }

  .hero h1 {
    max-width: 270px;
    font-size: clamp(35px, 11.4vw, 46px);
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 335px;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .visual-card-grid-airjet-components {
    grid-template-columns: 1fr;
  }

  .visual-card-grid-airjet-components .visual-card > div {
    padding: 15px 16px 18px;
  }
}

/* Global layout, color, and typography tuning, 20260630. */
:root {
  --navy: #082765;
  --deep: #081830;
  --blue: #1268bf;
  --red: #a91328;
  --ink: #172235;
  --muted: #5c6c80;
  --soft: #edf4fb;
  --paper: #f4f8fc;
  --line: #d9e4f0;
  --shadow: 0 18px 42px rgba(8, 39, 101, 0.11);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 44%, #eef5fb 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.91);
  border-bottom-color: rgba(201, 216, 232, 0.82);
  box-shadow: 0 8px 24px rgba(8, 39, 101, 0.055);
}

.site-nav {
  color: #26374e;
}

.hero h1,
.section-header h2,
.detail-header h3,
.visual-config-heading h4,
.product-copy h3,
.visual-card h5,
.spec-block h4,
.quality-strip h4 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
}

.hero-lead {
  color: #edf4fb;
  font-size: 17px;
}

.button-primary {
  background: linear-gradient(135deg, #b4162d, #851022);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2,
.company-panel h2,
.contact-copy h2 {
  max-width: 860px;
  color: #172235;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.16;
}

.section-header p:not(.eyebrow),
.company-panel p,
.contact-copy p {
  color: #596a7e;
  font-size: 15.5px;
  line-height: 1.7;
}

.product-grid {
  gap: 20px;
}

.product-card {
  grid-template-rows: 278px 1fr;
  min-height: 552px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-color: rgba(188, 205, 224, 0.82);
  box-shadow:
    0 18px 42px rgba(8, 39, 101, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow:
    0 22px 52px rgba(8, 39, 101, 0.14),
    0 10px 24px rgba(var(--product-accent-rgb), 0.12);
}

.product-card.is-selected {
  transform: translateY(-6px);
  box-shadow:
    0 28px 68px rgba(8, 39, 101, 0.20),
    0 14px 32px rgba(var(--product-accent-rgb), 0.20),
    inset 0 0 0 2px rgba(var(--product-accent-rgb), 0.14);
}

.product-label {
  color: var(--product-accent);
  background: rgba(var(--product-accent-rgb), 0.075);
  border-color: rgba(var(--product-accent-rgb), 0.16);
}

.product-copy {
  padding: 23px;
}

.product-copy h3 {
  font-size: 23px;
}

.product-copy p:not(.product-label),
.product-copy li {
  color: #53647a;
  font-size: 14px;
  line-height: 1.62;
}

.product-detail-panels {
  margin-top: 18px;
}

.product-detail-panel {
  padding: 24px;
  border-color: rgba(var(--panel-accent-rgb), 0.20);
  box-shadow:
    0 20px 54px rgba(8, 39, 101, 0.12),
    0 10px 26px rgba(var(--panel-accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-header {
  gap: 20px;
  padding-bottom: 18px;
  border-bottom-color: rgba(var(--panel-accent-rgb), 0.16);
}

.detail-header h3 {
  font-size: 30px;
}

.detail-summary div,
.spec-highlight-grid div,
.spec-block,
.quality-strip > div,
.visual-card {
  border-color: rgba(var(--panel-accent-rgb), 0.14);
  box-shadow:
    0 12px 28px rgba(8, 39, 101, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.detail-section-title {
  margin-top: 20px;
}

.detail-section-title > span {
  border-radius: 10px;
}

.detail-section-title h4 {
  font-size: 19px;
}

.visual-config-section {
  margin-top: 10px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.97)),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.026) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(8, 39, 101, 0.018) 0 1px, transparent 1px 18px);
}

.visual-config-subheading {
  margin-top: 22px;
}

.visual-card-grid {
  gap: 15px;
  margin-top: 14px;
}

.visual-card-grid-airjet.visual-card-grid-views .visual-card img,
.visual-card-grid-views .visual-card img {
  padding: 0;
  object-fit: cover;
  background: #eef4fa;
}

.visual-card-grid-airjet-components {
  gap: 15px;
}

.visual-card-grid-airjet-components .visual-card img,
.visual-card-grid-airjet-components .airjet-weft-feeder-card img,
.visual-card-grid-airjet-components .airjet-scissor-card img {
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.visual-card-grid-airjet-components .visual-card img.airjet-main-nozzle-image {
  padding: 0;
  object-fit: cover;
  object-position: left center;
}

.visual-card-grid-airjet-components .visual-card > div {
  padding: 14px 15px 16px;
}

.visual-card-grid-airjet-components .visual-card h5 {
  font-size: 18px;
}

.visual-card-grid-airjet-components .visual-card p {
  color: #5c6c80;
  font-size: 13.5px;
  line-height: 1.56;
}

.visual-card-grid-airjet-components .dual-component-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #eef4fa;
}

.visual-card-grid-airjet-components .dual-component-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0;
  object-fit: cover;
  border-radius: 0;
}

.spec-table div {
  border-left-color: rgba(var(--panel-accent-rgb), 0.42);
}

@media (max-width: 1120px) {
  .section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .product-card {
    grid-template-rows: 260px 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    background:
      linear-gradient(135deg, rgba(8, 39, 101, 0.48), rgba(18, 104, 191, 0.24));
  }

  .brand img {
    width: 112px;
  }

  .header-whatsapp {
    flex-basis: 112px;
    max-width: 112px;
    color: #073a68;
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.20) 34%, transparent 48%),
      linear-gradient(135deg, rgba(235, 252, 255, 0.94), rgba(162, 227, 239, 0.78) 50%, rgba(92, 190, 217, 0.72));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 0 18px rgba(136, 229, 244, 0.34),
      0 7px 15px rgba(3, 55, 130, 0.13);
  }

  .header-whatsapp span {
    margin-bottom: 2px;
  }

  .hero h1 {
    max-width: 345px;
    font-size: clamp(34px, 10.8vw, 44px);
  }

  .hero-lead {
    max-width: 338px;
    font-size: 14.5px;
  }

  .section {
    padding: 40px 18px;
  }

  .section-header {
    margin-bottom: 16px;
  }

  .section-header h2,
  .company-panel h2,
  .contact-copy h2 {
    font-size: 25px;
    line-height: 1.18;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    grid-template-rows: 238px 1fr;
    min-height: auto;
  }

  .product-card.is-selected {
    transform: translateY(-4px);
  }

  .product-copy {
    padding: 16px;
  }

  .product-detail-panel {
    padding: 16px;
  }

  .detail-header h3 {
    font-size: 23px;
  }

  .visual-config-section {
    margin-left: -16px;
    margin-right: -16px;
    padding: 10px;
  }

  .visual-card-grid-airjet-components .visual-card img,
  .visual-card-grid-airjet-components .airjet-weft-feeder-card img,
  .visual-card-grid-airjet-components .airjet-scissor-card img,
  .visual-card-grid-airjet-components .dual-component-image {
    aspect-ratio: 16 / 9;
  }

  .visual-card-grid-airjet-components .visual-card > div,
  .visual-card > div,
  .visual-card-grid-views .visual-card > div {
    padding: 14px;
  }

  .visual-card-grid-airjet-components .visual-card h5,
  .visual-card h5,
  .visual-card-grid-views .visual-card h5 {
    font-size: 16.5px;
  }
}

/* Dark section contrast fix, 20260630. */
.section-capabilities,
.contact-section {
  color: #ffffff;
}

.section-capabilities .section-header h2,
.contact-section .contact-copy h2 {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.section-capabilities .section-header p:not(.eyebrow),
.contact-section .contact-copy p:not(.eyebrow) {
  color: #d9e8f7;
}

.section-capabilities .capability-grid h3 {
  color: #ffffff;
}

.section-capabilities .capability-grid p {
  color: #d7e5f5;
}

@media (max-width: 760px) {
  .section-capabilities .section-header h2,
  .contact-section .contact-copy h2 {
    color: #ffffff;
  }

  .section-capabilities .section-header p:not(.eyebrow),
  .contact-section .contact-copy p:not(.eyebrow) {
    color: #dceafa;
  }
}

/* Equalize air-jet component image frames, 20260630. */
.visual-card-grid-airjet-components .visual-card > img,
.visual-card-grid-airjet-components .dual-component-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.visual-card-grid-airjet-components .visual-card > img {
  display: block;
}

.visual-card-grid-airjet-components .dual-component-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #edf3f8;
}

.visual-card-grid-airjet-components .visual-card > img {
  object-fit: cover;
}

.visual-card-grid-airjet-components .dual-component-image img {
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.visual-card-grid-airjet-components .dual-component-image img + img {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.visual-card-grid-airjet-components .visual-card > img.airjet-main-nozzle-image {
  object-fit: cover;
  object-position: center center;
  background: #edf3f8;
}

@media (max-width: 760px) {
  .visual-card-grid-airjet-components .visual-card > img,
  .visual-card-grid-airjet-components .dual-component-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* MG9200 Max machine view photos: keep the four real workshop angles large and even. */
.visual-card-grid-airjet.visual-card-grid-views {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card-grid-airjet.visual-card-grid-views .visual-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  object-fit: cover;
  background: #eef4fa;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card,
.visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card {
  grid-column: 1 / -1;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card img {
  aspect-ratio: 16 / 7.6;
  object-position: center center;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card img {
  aspect-ratio: 16 / 7.2;
  object-position: center 58%;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card > div,
.visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card > div {
  padding: 22px 26px 24px;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card h5,
.visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card h5 {
  max-width: 780px;
  margin-top: 13px;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.18;
  letter-spacing: 0;
}

.visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card p,
.visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card p {
  max-width: 860px;
  margin-top: 9px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.58;
}

.visual-card-grid-airjet.visual-card-grid-views .visual-card img.airjet-view-image-lift {
  object-position: center 64%;
}

@media (max-width: 760px) {
  .visual-card-grid-airjet.visual-card-grid-views {
    grid-template-columns: 1fr;
  }

  .visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card img,
  .visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card img {
    aspect-ratio: 16 / 9;
  }

  .visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card > div,
  .visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card > div {
    padding: 20px 20px 22px;
  }

  .visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card h5,
  .visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card h5 {
    font-size: 21px;
    line-height: 1.22;
  }

  .visual-card-grid-airjet.visual-card-grid-views .airjet-overview-card p,
  .visual-card-grid-airjet.visual-card-grid-views .airjet-frame-card p {
    font-size: 13.5px;
    line-height: 1.56;
  }
}

/* Hero refinement after removing duplicate call-to-action buttons. */
.hero-content {
  width: min(700px, calc(100% - 48px));
  padding: 58px 0 46px;
}

.hero .eyebrow {
  margin-bottom: 14px;
  color: #b9d5ff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 690px;
  line-height: 1.04;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
}

.hero-lead {
  max-width: 560px;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid rgba(185, 213, 255, 0.62);
  color: #edf5ff;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 760px) {
  .hero-content {
    width: calc(100% - 34px);
    margin-left: 17px;
    padding: 34px 0 32px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .hero h1 {
    max-width: 360px;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 16px;
    padding-left: 14px;
    font-size: 14.5px;
    line-height: 1.58;
  }
}

/* Brighten the loom side of the homepage hero while keeping the left text readable. */
.hero-media {
  filter: brightness(1.13) contrast(1.04) saturate(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 32, 0.8) 0%, rgba(6, 15, 32, 0.62) 36%, rgba(6, 15, 32, 0.22) 62%, rgba(6, 15, 32, 0.02) 100%),
    linear-gradient(180deg, rgba(6, 15, 32, 0.02), rgba(6, 15, 32, 0.18));
}

@media (max-width: 760px) {
  .hero-media {
    filter: brightness(1.08) contrast(1.03) saturate(1.02);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 15, 32, 0.74), rgba(6, 15, 32, 0.48) 58%, rgba(6, 15, 32, 0.04)),
      linear-gradient(180deg, rgba(6, 15, 32, 0.05), rgba(6, 15, 32, 0.62));
  }
}

/* Mobile readability pass: remove unused left gaps and avoid product-photo edge lines. */
@media (max-width: 760px) {
  .detail-section-title {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
  }

  .detail-section-title > div {
    display: contents;
  }

  .detail-section-title h4 {
    align-self: center;
  }

  .detail-section-title p {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 0;
    padding-left: 0;
  }

  .product-photo {
    background: #edf4fb;
  }

  .product-photo-air img,
  .product-photo-water img {
    transform: scale(1.018);
    transform-origin: center center;
  }

  .product-photo-air img {
    object-position: 60% center;
  }
}

/* Keep MG9200 Max explanatory text consistent with the rest of the page. */
.model-note p,
.detail-summary strong {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

.model-note p {
  color: #526378;
  font-size: 15px;
  line-height: 1.66;
}

.detail-summary strong {
    color: #35465d;
    font-size: 14.5px;
    line-height: 1.56;
  }

@media (max-width: 760px) {
  .model-note p,
  .detail-summary strong {
    font-size: 14px;
    line-height: 1.58;
  }
}

/* Air-jet component additions, 20260704: keep the new control and SMC detail photos readable without distortion. */
.visual-card-grid-airjet-components .visual-card > img.airjet-touchscreen-image {
  object-fit: cover;
  object-position: center 48%;
  background: #eef3f8;
}

.visual-card-grid-airjet-components .visual-card > img.airjet-pressure-regulator-image {
  object-position: center 34%;
}

@media (max-width: 760px) {
  .visual-card-grid-airjet-components .visual-card > img.airjet-touchscreen-image {
    object-position: center 47%;
  }

  .visual-card-grid-airjet-components .visual-card > img.airjet-pressure-regulator-image {
    object-position: center 32%;
  }
}

/* Header language switcher, 20260708. Buttons only; translation routing can be added later. */
.language-switcher {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.language-btn {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(8, 39, 101, 0.16);
  border-radius: 999px;
  color: #24425f;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(8, 39, 101, 0.08);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-btn.is-active {
  color: #ffffff;
  border-color: rgba(18, 104, 191, 0.45);
  background: linear-gradient(135deg, #1268bf, #082765);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 9px 20px rgba(8, 39, 101, 0.15);
}

.language-btn:focus-visible {
  outline: 2px solid rgba(18, 104, 191, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .language-switcher {
    gap: 6px;
  }

  .language-btn {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .language-switcher {
    position: absolute;
    top: 64px;
    left: 50%;
    z-index: 52;
    width: min(260px, calc(100vw - 32px));
    justify-content: center;
    gap: 3px;
    margin: 0;
    padding: 3px;
    border: 1px solid rgba(190, 218, 246, 0.48);
    border-radius: 999px;
    background: rgba(242, 248, 255, 0.68);
    box-shadow: 0 10px 22px rgba(7, 31, 88, 0.12);
    backdrop-filter: blur(14px) saturate(132%);
    transform: translateX(-50%);
  }

  .language-btn {
    flex: 1 1 0;
    min-height: 22px;
    padding: 0 8px;
    font-size: 10px;
  }

  .site-nav {
    top: 96px;
  }
}

@media (max-width: 360px) {
  .language-switcher {
    width: min(238px, calc(100vw - 24px));
  }

  .language-btn {
    padding: 0 6px;
    font-size: 9px;
  }
}

/* Language switcher refinement, 20260708. */
.site-header .language-switcher {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding: 5px;
  border: 1px solid rgba(194, 214, 234, 0.92);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.98), rgba(230, 240, 250, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 18px rgba(8, 39, 101, 0.08);
}

.site-header .language-btn {
  min-width: 80px;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #26354c;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.site-header .language-btn.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #bd122d, #9d0e24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 18px rgba(169, 15, 34, 0.18);
}

.site-header .language-btn:focus-visible {
  outline: 2px solid rgba(189, 18, 45, 0.34);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header .language-switcher {
    margin-left: 8px;
    padding: 4px;
    border-radius: 14px;
  }

  .site-header .language-btn {
    min-width: 62px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(32px, 9vw, 40px) !important;
    line-height: 1.06 !important;
  }

  .site-header .language-switcher {
    position: absolute;
    top: 64px;
    right: 10px;
    left: auto;
    z-index: 52;
    width: auto;
    max-width: calc(100vw - 20px);
    margin: 0;
    padding: 4px;
    gap: 3px;
    border-radius: 14px;
    background: rgba(235, 244, 253, 0.86);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      0 8px 18px rgba(8, 39, 101, 0.1);
    backdrop-filter: blur(14px) saturate(132%);
    transform: none;
  }

  .site-header .language-btn {
    min-width: 0;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 11px;
  }

  .site-nav {
    top: 100px;
  }
}

@media (max-width: 360px) {
  .site-header .language-switcher {
    right: 8px;
    max-width: calc(100vw - 16px);
  }

  .site-header .language-btn {
    min-height: 26px;
    padding: 0 8px;
    font-size: 10px;
  }
}


/* Russian language layout tuning, 20260708. */
body.is-lang-ru {
  font-family: var(--font-sans);
}

body.is-lang-ru .hero h1 {
  font-size: clamp(32px, 4.7vw, 68px);
  line-height: 1.08;
  max-width: 980px;
}

body.is-lang-ru .hero-lead {
  max-width: 820px;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.5;
}

body.is-lang-ru .section-header h2,
body.is-lang-ru .company-copy h2,
body.is-lang-ru .contact-copy h2 {
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.09;
}

body.is-lang-ru .product-copy h3,
body.is-lang-ru .detail-header h3 {
  font-size: clamp(25px, 2.45vw, 40px);
  line-height: 1.12;
}

body.is-lang-ru .model-note p,
body.is-lang-ru .detail-summary strong {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}

body.is-lang-ru .visual-config-heading h4,
body.is-lang-ru .detail-section-title h4,
body.is-lang-ru .shaft-intro h4 {
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.12;
}

body.is-lang-ru .visual-card h5,
body.is-lang-ru .spec-block h4,
body.is-lang-ru .quality-strip h4,
body.is-lang-ru .capability-title h3,
body.is-lang-ru .company-focus-title strong {
  font-size: clamp(21px, 1.85vw, 30px);
  line-height: 1.16;
}

body.is-lang-ru .visual-card p,
body.is-lang-ru .spec-table p,
body.is-lang-ru .quality-strip li,
body.is-lang-ru .capability-grid p,
body.is-lang-ru .company-focus-grid p,
body.is-lang-ru .contact-copy p {
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.52;
}

body.is-lang-ru .spec-highlight-grid strong {
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 1.08;
}

body.is-lang-ru .visual-card span,
body.is-lang-ru .eyebrow,
body.is-lang-ru .product-label {
  letter-spacing: .01em;
}

body.is-lang-ru .spec-table div {
  grid-template-columns: minmax(150px, .68fr) 1.32fr;
}

body.is-lang-ru .language-btn {
  font-size: 13px;
}

@media (max-width: 640px) {
  body.is-lang-ru .hero h1 {
    font-size: clamp(30px, 8.6vw, 42px);
  }

  body.is-lang-ru .hero-lead {
    font-size: 15px;
    line-height: 1.5;
  }

  body.is-lang-ru .section-header h2,
  body.is-lang-ru .company-copy h2,
  body.is-lang-ru .contact-copy h2 {
    font-size: clamp(27px, 7.4vw, 37px);
  }

  body.is-lang-ru .product-copy h3,
  body.is-lang-ru .detail-header h3 {
    font-size: clamp(23px, 6.4vw, 32px);
  }

  body.is-lang-ru .model-note p,
  body.is-lang-ru .detail-summary strong,
  body.is-lang-ru .visual-card p,
  body.is-lang-ru .spec-table p,
  body.is-lang-ru .quality-strip li {
    font-size: 15px;
    line-height: 1.5;
  }

  body.is-lang-ru .visual-card h5,
  body.is-lang-ru .spec-block h4,
  body.is-lang-ru .quality-strip h4 {
    font-size: clamp(21px, 5.6vw, 29px);
  }

  body.is-lang-ru .spec-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body.is-lang-ru .site-header .language-btn {
    font-size: 10px;
    padding: 0 7px;
  }

  body.is-lang-ru .mobile-product-switch strong {
    font-size: 11px;
  }
}

/* Russian overflow protection, 20260708. */
body.is-lang-ru h1,
body.is-lang-ru h2,
body.is-lang-ru h3,
body.is-lang-ru h4,
body.is-lang-ru h5,
body.is-lang-ru p,
body.is-lang-ru li,
body.is-lang-ru strong,
body.is-lang-ru span {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

body.is-lang-ru .visual-card,
body.is-lang-ru .spec-block,
body.is-lang-ru .quality-strip,
body.is-lang-ru .company-focus-card,
body.is-lang-ru .capability-item {
  min-width: 0;
}

body.is-lang-ru .product-actions,
body.is-lang-ru .language-switcher {
  min-width: 0;
}

/* Russian font balance refinements, 20260708. */
body.is-lang-ru {
  font-size: 15px;
}

body.is-lang-ru .company-brand-card p {
  max-width: 100%;
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: break-word;
}

body.is-lang-ru .company-brand-card p span {
  margin: 0 4px;
}

body.is-lang-ru .spec-highlight-grid {
  gap: 12px;
}

body.is-lang-ru .spec-highlight-grid div {
  padding: 14px;
}

body.is-lang-ru .spec-highlight-grid span,
body.is-lang-ru .spec-note span {
  font-size: clamp(10px, 0.76vw, 12px);
  line-height: 1.22;
  letter-spacing: 0;
}

body.is-lang-ru .spec-highlight-grid strong {
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.is-lang-ru .spec-highlight-grid p,
body.is-lang-ru .spec-note p {
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.45;
}

body.is-lang-ru .spec-block h4,
body.is-lang-ru .visual-card h5,
body.is-lang-ru .quality-strip h4,
body.is-lang-ru .capability-title h3,
body.is-lang-ru .company-focus-title strong {
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.18;
}

body.is-lang-ru .visual-card p,
body.is-lang-ru .spec-table p,
body.is-lang-ru .quality-strip li,
body.is-lang-ru .capability-grid p,
body.is-lang-ru .company-focus-grid p,
body.is-lang-ru .contact-copy p {
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.5;
}

body.is-lang-ru .section-header h2,
body.is-lang-ru .company-copy h2,
body.is-lang-ru .contact-copy h2 {
  font-size: clamp(28px, 3vw, 48px);
}

@media (max-width: 900px) {
  body.is-lang-ru .spec-highlight-grid strong {
    font-size: clamp(22px, 5.4vw, 31px);
  }

  body.is-lang-ru .company-brand-card p {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  body.is-lang-ru {
    font-size: 14px;
  }

  body.is-lang-ru .spec-highlight-grid div {
    padding: 14px 13px;
    min-height: 96px;
  }

  body.is-lang-ru .spec-highlight-grid strong {
    font-size: clamp(22px, 7vw, 29px);
    line-height: 1.12;
  }

  body.is-lang-ru .spec-highlight-grid p,
  body.is-lang-ru .spec-note p,
  body.is-lang-ru .visual-card p,
  body.is-lang-ru .spec-table p,
  body.is-lang-ru .quality-strip li {
    font-size: 14px;
    line-height: 1.45;
  }

  body.is-lang-ru .visual-card h5,
  body.is-lang-ru .spec-block h4,
  body.is-lang-ru .quality-strip h4 {
    font-size: clamp(20px, 5.2vw, 27px);
    line-height: 1.18;
  }

  body.is-lang-ru .company-brand-card p {
    font-size: 9.5px;
    line-height: 1.3;
  }
}

/* Turkish language layout tuning, 20260708. */
body.is-lang-tr {
  font-size: 15px;
}

body.is-lang-tr h1,
body.is-lang-tr h2,
body.is-lang-tr h3,
body.is-lang-tr h4,
body.is-lang-tr h5,
body.is-lang-tr p,
body.is-lang-tr li,
body.is-lang-tr strong,
body.is-lang-tr span {
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

body.is-lang-tr .company-brand-card p {
  max-width: 100%;
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 1.35;
  white-space: normal;
}

body.is-lang-tr .company-brand-card p span {
  margin: 0 4px;
}

body.is-lang-tr .spec-highlight-grid {
  gap: 12px;
}

body.is-lang-tr .spec-highlight-grid div {
  padding: 14px;
}

body.is-lang-tr .spec-highlight-grid span,
body.is-lang-tr .spec-note span {
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.22;
}

body.is-lang-tr .spec-highlight-grid strong {
  font-size: clamp(22px, 1.65vw, 32px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

body.is-lang-tr .spec-highlight-grid p,
body.is-lang-tr .spec-note p {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.45;
}

body.is-lang-tr .spec-block h4,
body.is-lang-tr .visual-card h5,
body.is-lang-tr .quality-strip h4,
body.is-lang-tr .capability-title h3,
body.is-lang-tr .company-focus-title strong {
  font-size: clamp(20px, 1.5vw, 27px);
  line-height: 1.18;
}

body.is-lang-tr .visual-card p,
body.is-lang-tr .spec-table p,
body.is-lang-tr .quality-strip li,
body.is-lang-tr .capability-grid p,
body.is-lang-tr .company-focus-grid p,
body.is-lang-tr .contact-copy p {
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.5;
}

body.is-lang-tr .section-header h2,
body.is-lang-tr .company-copy h2,
body.is-lang-tr .contact-copy h2 {
  font-size: clamp(28px, 3vw, 48px);
}

body.is-lang-tr .language-btn {
  min-width: 92px;
}

@media (max-width: 900px) {
  body.is-lang-tr .spec-highlight-grid strong {
    font-size: clamp(22px, 5.4vw, 31px);
  }

  body.is-lang-tr .company-brand-card p {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  body.is-lang-tr {
    font-size: 14px;
  }

  body.is-lang-tr .spec-highlight-grid div {
    padding: 14px 13px;
    min-height: 96px;
  }

  body.is-lang-tr .spec-highlight-grid strong {
    font-size: clamp(22px, 7vw, 29px);
    line-height: 1.12;
  }

  body.is-lang-tr .spec-highlight-grid p,
  body.is-lang-tr .spec-note p,
  body.is-lang-tr .visual-card p,
  body.is-lang-tr .spec-table p,
  body.is-lang-tr .quality-strip li {
    font-size: 14px;
    line-height: 1.45;
  }

  body.is-lang-tr .visual-card h5,
  body.is-lang-tr .spec-block h4,
  body.is-lang-tr .quality-strip h4 {
    font-size: clamp(20px, 5.2vw, 27px);
    line-height: 1.18;
  }

  body.is-lang-tr .company-brand-card p {
    font-size: 9.5px;
    line-height: 1.3;
  }

  body.is-lang-tr .language-btn {
    min-width: 74px;
    padding-inline: 12px;
  }
}


/* Arabic language layout tuning, 20260708. */
body.is-lang-ar {
  direction: rtl;
  font-family: "Inter", "Arial", "Tahoma", sans-serif;
}

body.is-lang-ar .site-header,
body.is-lang-ar .hero,
body.is-lang-ar .product-grid,
body.is-lang-ar .detail-panel,
body.is-lang-ar .company-focus,
body.is-lang-ar .capabilities,
body.is-lang-ar .contact-section,
body.is-lang-ar footer {
  text-align: right;
}

body.is-lang-ar .brand,
body.is-lang-ar .language-switcher,
body.is-lang-ar .nav-whatsapp,
body.is-lang-ar .hero-media,
body.is-lang-ar .product-media,
body.is-lang-ar .visual-card figure,
body.is-lang-ar .quality-strip figure,
body.is-lang-ar .gallery-card figure,
body.is-lang-ar .spec-highlight-grid,
body.is-lang-ar .spec-table,
body.is-lang-ar .company-brand-card,
body.is-lang-ar .contact-meta {
  direction: ltr;
}

body.is-lang-ar h1,
body.is-lang-ar h2,
body.is-lang-ar h3,
body.is-lang-ar h4,
body.is-lang-ar h5,
body.is-lang-ar p,
body.is-lang-ar li,
body.is-lang-ar strong,
body.is-lang-ar span {
  letter-spacing: 0;
}

body.is-lang-ar .hero h1 {
  font-size: clamp(2.55rem, 5vw, 5.4rem);
  line-height: 1.08;
}

body.is-lang-ar .hero-lead,
body.is-lang-ar .section-header p,
body.is-lang-ar .detail-summary p,
body.is-lang-ar .visual-card p,
body.is-lang-ar .spec-table p,
body.is-lang-ar .quality-strip li,
body.is-lang-ar .capability-grid p,
body.is-lang-ar .company-focus-grid p,
body.is-lang-ar .contact-copy p {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

body.is-lang-ar .section-header h2,
body.is-lang-ar .company-copy h2,
body.is-lang-ar .contact-copy h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.12;
}

body.is-lang-ar .product-copy h3,
body.is-lang-ar .detail-header h3,
body.is-lang-ar .shaft-copy h4 {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.14;
}

body.is-lang-ar .visual-card h5,
body.is-lang-ar .spec-block h4,
body.is-lang-ar .quality-strip h4,
body.is-lang-ar .capability-title h3,
body.is-lang-ar .company-focus-title strong {
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.3;
}

body.is-lang-ar .spec-highlight-grid strong {
  direction: ltr;
  text-align: left;
  font-size: clamp(1.75rem, 3.3vw, 3rem);
  line-height: 1.05;
}

body.is-lang-ar .spec-highlight-grid span,
body.is-lang-ar .spec-note span,
body.is-lang-ar .eyebrow,
body.is-lang-ar .product-label,
body.is-lang-ar .visual-card span {
  font-size: 0.82rem;
  letter-spacing: 0;
}

body.is-lang-ar .language-btn {
  min-width: 5.4rem;
  font-size: 0.95rem;
}

body.is-lang-ar .spec-table div,
body.is-lang-ar .spec-block,
body.is-lang-ar .quality-strip,
body.is-lang-ar .visual-card,
body.is-lang-ar .company-focus-card,
body.is-lang-ar .capability-item {
  overflow-wrap: anywhere;
}

body.is-lang-ar .mobile-product-switch {
  right: auto;
  left: 0.6rem;
}

body.is-lang-ar .mobile-product-switch strong {
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  body.is-lang-ar {
    text-align: right;
  }

  body.is-lang-ar .hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  body.is-lang-ar .hero-lead,
  body.is-lang-ar .visual-card p,
  body.is-lang-ar .spec-table p,
  body.is-lang-ar .quality-strip li,
  body.is-lang-ar .capability-grid p,
  body.is-lang-ar .company-focus-grid p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  body.is-lang-ar .section-header h2,
  body.is-lang-ar .company-copy h2,
  body.is-lang-ar .contact-copy h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.8rem);
  }

  body.is-lang-ar .spec-highlight-grid strong {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  body.is-lang-ar .site-header .language-switcher {
    max-width: min(96vw, 23rem);
  }

  body.is-lang-ar .site-header .language-btn {
    min-width: 4.6rem;
    padding-inline: 0.7rem;
    font-size: 0.85rem;
  }
}

/* Russian final typography balance, 20260709: keep longer technical terms inside cards. */
body.is-lang-ru .hero h1 {
  font-size: clamp(30px, 4.15vw, 58px);
  line-height: 1.08;
}

body.is-lang-ru .hero-lead,
body.is-lang-ru .detail-header p:not(.eyebrow),
body.is-lang-ru .section-header p {
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.5;
}

body.is-lang-ru .section-header h2,
body.is-lang-ru .company-copy h2,
body.is-lang-ru .contact-copy h2 {
  font-size: clamp(26px, 2.75vw, 42px);
  line-height: 1.1;
}

body.is-lang-ru .product-copy h3,
body.is-lang-ru .detail-header h3 {
  font-size: clamp(22px, 2.05vw, 34px);
  line-height: 1.12;
}

body.is-lang-ru .visual-config-heading h4,
body.is-lang-ru .detail-section-title h4,
body.is-lang-ru .shaft-intro h4 {
  font-size: clamp(21px, 1.85vw, 31px);
  line-height: 1.14;
}

body.is-lang-ru .spec-highlight-grid strong {
  font-size: clamp(19px, 1.32vw, 25px);
  line-height: 1.12;
}

body.is-lang-ru .spec-highlight-grid span,
body.is-lang-ru .spec-note span,
body.is-lang-ru .product-label,
body.is-lang-ru .eyebrow {
  font-size: clamp(9.5px, 0.68vw, 11px);
  line-height: 1.22;
}

body.is-lang-ru .visual-card h5,
body.is-lang-ru .spec-block h4,
body.is-lang-ru .quality-strip h4,
body.is-lang-ru .capability-title h3,
body.is-lang-ru .company-focus-title strong,
body.is-lang-ru .shaft-benefits h5,
body.is-lang-ru .shaft-real-photo-card figcaption strong {
  font-size: clamp(18px, 1.28vw, 23px);
  line-height: 1.18;
}

body.is-lang-ru .visual-card p,
body.is-lang-ru .spec-table p,
body.is-lang-ru .quality-strip li,
body.is-lang-ru .capability-grid p,
body.is-lang-ru .company-focus-grid p,
body.is-lang-ru .contact-copy p,
body.is-lang-ru .shaft-banner figcaption p,
body.is-lang-ru .shaft-real-photo-card figcaption p,
body.is-lang-ru .shaft-benefits p {
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.48;
}

body.is-lang-ru .spec-highlight-grid div {
  min-height: 104px;
  padding: 13px;
}

@media (max-width: 900px) {
  body.is-lang-ru .section-header h2,
  body.is-lang-ru .company-copy h2,
  body.is-lang-ru .contact-copy h2 {
    font-size: clamp(25px, 5.8vw, 34px);
  }

  body.is-lang-ru .product-copy h3,
  body.is-lang-ru .detail-header h3 {
    font-size: clamp(21px, 5vw, 30px);
  }

  body.is-lang-ru .spec-highlight-grid strong {
    font-size: clamp(19px, 4.7vw, 26px);
  }
}

@media (max-width: 640px) {
  body.is-lang-ru .hero h1 {
    font-size: clamp(28px, 7.8vw, 38px);
  }

  body.is-lang-ru .section-header h2,
  body.is-lang-ru .company-copy h2,
  body.is-lang-ru .contact-copy h2 {
    font-size: clamp(24px, 6.4vw, 31px);
  }

  body.is-lang-ru .product-copy h3,
  body.is-lang-ru .detail-header h3 {
    font-size: clamp(21px, 5.8vw, 28px);
  }

  body.is-lang-ru .visual-config-heading h4,
  body.is-lang-ru .detail-section-title h4,
  body.is-lang-ru .shaft-intro h4,
  body.is-lang-ru .visual-card h5,
  body.is-lang-ru .spec-block h4,
  body.is-lang-ru .quality-strip h4 {
    font-size: clamp(18px, 5vw, 24px);
  }

  body.is-lang-ru .spec-highlight-grid div {
    min-height: auto;
    padding: 12px;
  }

  body.is-lang-ru .spec-highlight-grid strong {
    font-size: clamp(20px, 6.2vw, 26px);
  }

  body.is-lang-ru .visual-card p,
  body.is-lang-ru .spec-table p,
  body.is-lang-ru .quality-strip li,
  body.is-lang-ru .capability-grid p,
  body.is-lang-ru .company-focus-grid p,
  body.is-lang-ru .contact-copy p,
  body.is-lang-ru .shaft-banner figcaption p,
  body.is-lang-ru .shaft-real-photo-card figcaption p,
  body.is-lang-ru .shaft-benefits p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Turkish and Arabic final typography balance, 20260709: keep translated text compact and readable. */
body.is-lang-tr .hero h1,
body.is-lang-ar .hero h1 {
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 1.08;
}

body.is-lang-tr .hero-lead,
body.is-lang-tr .detail-header p:not(.eyebrow),
body.is-lang-tr .section-header p,
body.is-lang-ar .hero-lead,
body.is-lang-ar .detail-header p:not(.eyebrow),
body.is-lang-ar .section-header p {
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.5;
}

body.is-lang-tr .section-header h2,
body.is-lang-tr .company-copy h2,
body.is-lang-tr .contact-copy h2,
body.is-lang-ar .section-header h2,
body.is-lang-ar .company-copy h2,
body.is-lang-ar .contact-copy h2 {
  font-size: clamp(26px, 2.75vw, 42px);
  line-height: 1.1;
}

body.is-lang-tr .product-copy h3,
body.is-lang-tr .detail-header h3,
body.is-lang-ar .product-copy h3,
body.is-lang-ar .detail-header h3 {
  font-size: clamp(22px, 2.05vw, 34px);
  line-height: 1.12;
}

body.is-lang-tr .visual-config-heading h4,
body.is-lang-tr .detail-section-title h4,
body.is-lang-tr .shaft-intro h4,
body.is-lang-ar .visual-config-heading h4,
body.is-lang-ar .detail-section-title h4,
body.is-lang-ar .shaft-intro h4,
body.is-lang-ar .shaft-copy h4 {
  font-size: clamp(21px, 1.85vw, 31px);
  line-height: 1.14;
}

body.is-lang-tr .spec-highlight-grid strong,
body.is-lang-ar .spec-highlight-grid strong {
  font-size: clamp(19px, 1.32vw, 25px);
  line-height: 1.12;
}

body.is-lang-tr .spec-highlight-grid span,
body.is-lang-tr .spec-note span,
body.is-lang-tr .product-label,
body.is-lang-tr .eyebrow,
body.is-lang-ar .spec-highlight-grid span,
body.is-lang-ar .spec-note span,
body.is-lang-ar .product-label,
body.is-lang-ar .eyebrow {
  font-size: clamp(9.5px, 0.68vw, 11px);
  line-height: 1.22;
}

body.is-lang-tr .visual-card h5,
body.is-lang-tr .spec-block h4,
body.is-lang-tr .quality-strip h4,
body.is-lang-tr .capability-title h3,
body.is-lang-tr .company-focus-title strong,
body.is-lang-tr .shaft-benefits h5,
body.is-lang-tr .shaft-real-photo-card figcaption strong,
body.is-lang-ar .visual-card h5,
body.is-lang-ar .spec-block h4,
body.is-lang-ar .quality-strip h4,
body.is-lang-ar .capability-title h3,
body.is-lang-ar .company-focus-title strong,
body.is-lang-ar .shaft-benefits h5,
body.is-lang-ar .shaft-real-photo-card figcaption strong {
  font-size: clamp(18px, 1.28vw, 23px);
  line-height: 1.18;
}

body.is-lang-tr .visual-card p,
body.is-lang-tr .spec-table p,
body.is-lang-tr .quality-strip li,
body.is-lang-tr .capability-grid p,
body.is-lang-tr .company-focus-grid p,
body.is-lang-tr .contact-copy p,
body.is-lang-tr .shaft-banner figcaption p,
body.is-lang-tr .shaft-real-photo-card figcaption p,
body.is-lang-tr .shaft-benefits p,
body.is-lang-ar .visual-card p,
body.is-lang-ar .spec-table p,
body.is-lang-ar .quality-strip li,
body.is-lang-ar .capability-grid p,
body.is-lang-ar .company-focus-grid p,
body.is-lang-ar .contact-copy p,
body.is-lang-ar .shaft-banner figcaption p,
body.is-lang-ar .shaft-real-photo-card figcaption p,
body.is-lang-ar .shaft-benefits p {
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.48;
}

body.is-lang-tr .spec-highlight-grid div,
body.is-lang-ar .spec-highlight-grid div {
  min-height: 104px;
  padding: 13px;
}

body.is-lang-ar .spec-highlight-grid strong {
  text-align: inherit;
}

@media (max-width: 900px) {
  body.is-lang-tr .section-header h2,
  body.is-lang-tr .company-copy h2,
  body.is-lang-tr .contact-copy h2,
  body.is-lang-ar .section-header h2,
  body.is-lang-ar .company-copy h2,
  body.is-lang-ar .contact-copy h2 {
    font-size: clamp(25px, 5.8vw, 34px);
  }

  body.is-lang-tr .product-copy h3,
  body.is-lang-tr .detail-header h3,
  body.is-lang-ar .product-copy h3,
  body.is-lang-ar .detail-header h3 {
    font-size: clamp(21px, 5vw, 30px);
  }

  body.is-lang-tr .spec-highlight-grid strong,
  body.is-lang-ar .spec-highlight-grid strong {
    font-size: clamp(19px, 4.7vw, 26px);
  }
}

@media (max-width: 640px) {
  body.is-lang-tr .hero h1,
  body.is-lang-ar .hero h1 {
    font-size: clamp(28px, 7.8vw, 38px);
  }

  body.is-lang-tr .section-header h2,
  body.is-lang-tr .company-copy h2,
  body.is-lang-tr .contact-copy h2,
  body.is-lang-ar .section-header h2,
  body.is-lang-ar .company-copy h2,
  body.is-lang-ar .contact-copy h2 {
    font-size: clamp(24px, 6.4vw, 31px);
  }

  body.is-lang-tr .product-copy h3,
  body.is-lang-tr .detail-header h3,
  body.is-lang-ar .product-copy h3,
  body.is-lang-ar .detail-header h3 {
    font-size: clamp(21px, 5.8vw, 28px);
  }

  body.is-lang-tr .visual-config-heading h4,
  body.is-lang-tr .detail-section-title h4,
  body.is-lang-tr .shaft-intro h4,
  body.is-lang-tr .visual-card h5,
  body.is-lang-tr .spec-block h4,
  body.is-lang-tr .quality-strip h4,
  body.is-lang-ar .visual-config-heading h4,
  body.is-lang-ar .detail-section-title h4,
  body.is-lang-ar .shaft-intro h4,
  body.is-lang-ar .visual-card h5,
  body.is-lang-ar .spec-block h4,
  body.is-lang-ar .quality-strip h4 {
    font-size: clamp(18px, 5vw, 24px);
  }

  body.is-lang-tr .spec-highlight-grid div,
  body.is-lang-ar .spec-highlight-grid div {
    min-height: auto;
    padding: 12px;
  }

  body.is-lang-tr .spec-highlight-grid strong,
  body.is-lang-ar .spec-highlight-grid strong {
    font-size: clamp(20px, 6.2vw, 26px);
  }

  body.is-lang-tr .visual-card p,
  body.is-lang-tr .spec-table p,
  body.is-lang-tr .quality-strip li,
  body.is-lang-tr .capability-grid p,
  body.is-lang-tr .company-focus-grid p,
  body.is-lang-tr .contact-copy p,
  body.is-lang-tr .shaft-banner figcaption p,
  body.is-lang-tr .shaft-real-photo-card figcaption p,
  body.is-lang-tr .shaft-benefits p,
  body.is-lang-ar .visual-card p,
  body.is-lang-ar .spec-table p,
  body.is-lang-ar .quality-strip li,
  body.is-lang-ar .capability-grid p,
  body.is-lang-ar .company-focus-grid p,
  body.is-lang-ar .contact-copy p,
  body.is-lang-ar .shaft-banner figcaption p,
  body.is-lang-ar .shaft-real-photo-card figcaption p,
  body.is-lang-ar .shaft-benefits p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Arabic homepage hero edge spacing, 20260709: keep RTL copy away from page edges. */
body.is-lang-ar .hero-content {
  width: min(980px, calc(100% - clamp(56px, 12vw, 176px)));
  max-width: none;
  margin-left: auto;
  margin-right: clamp(28px, 5vw, 88px);
  padding-inline: 0;
  text-align: right;
}

body.is-lang-ar .hero .eyebrow,
body.is-lang-ar .hero h1,
body.is-lang-ar .hero-lead {
  max-width: 100%;
}

body.is-lang-ar .hero h1 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

body.is-lang-ar .hero-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 900px) {
  body.is-lang-ar .hero-content {
    width: min(760px, calc(100% - 56px));
    margin-right: 28px;
  }
}

@media (max-width: 640px) {
  body.is-lang-ar .hero-content {
    width: auto;
    margin-left: 18px;
    margin-right: 18px;
    padding-inline: 0;
  }

  body.is-lang-ar .hero h1 {
    font-size: clamp(27px, 8vw, 35px);
    line-height: 1.14;
  }

  body.is-lang-ar .hero-lead {
    max-width: 100%;
  }
}

/* Arabic hero company name emphasis, 20260709: keep English factory name readable in RTL layout. */
body.is-lang-ar .hero .eyebrow {
  direction: ltr;
  unicode-bidi: isolate;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  font-size: clamp(14px, 1.42vw, 20px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0.035em;
  opacity: 0.98;
}

@media (max-width: 640px) {
  body.is-lang-ar .hero .eyebrow {
    font-size: clamp(13px, 3.4vw, 16px);
    line-height: 1.25;
    letter-spacing: 0.025em;
  }
}

/* Hero company name size alignment, 20260709: make the factory name readable in every language. */
.hero .eyebrow {
  font-size: clamp(14px, 1.36vw, 20px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0.035em;
  opacity: 0.98;
}

body.is-lang-ru .hero .eyebrow,
body.is-lang-tr .hero .eyebrow {
  font-size: clamp(14px, 1.32vw, 19px);
  line-height: 1.25;
}

body.is-lang-ar .hero .eyebrow {
  direction: ltr;
  unicode-bidi: isolate;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  font-size: clamp(14px, 1.42vw, 20px);
  line-height: 1.24;
}

@media (max-width: 640px) {
  .hero .eyebrow {
    font-size: clamp(13px, 3.35vw, 16px);
    line-height: 1.25;
    letter-spacing: 0.025em;
  }

  body.is-lang-ru .hero .eyebrow,
  body.is-lang-tr .hero .eyebrow,
  body.is-lang-ar .hero .eyebrow {
    font-size: clamp(13px, 3.4vw, 16px);
    line-height: 1.25;
  }
}


/* Final language switcher reset, 20260709.
   Keep the header language control consistent across all translated pages. */
.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  width: auto;
  max-width: none;
  margin-left: 12px;
  padding: 4px;
  border: 1px solid rgba(188, 207, 230, 0.92);
  border-radius: 18px;
  background: rgba(236, 246, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 22px rgba(8, 39, 101, 0.1);
  backdrop-filter: blur(12px) saturate(130%);
  transform: none;
  white-space: nowrap;
}

.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn {
  min-width: 74px;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  color: #26354c;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #bd122d 0%, #9d0e24 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(169, 15, 34, 0.18);
}

.site-header .language-btn:not(.is-active):hover {
  color: #0d5db8;
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    margin-left: 8px;
    padding: 3px;
    border-radius: 16px;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn {
    min-width: 58px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 11.5px;
  }
}

@media (max-width: 640px) {
  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    position: absolute;
    top: 64px;
    right: 10px;
    left: auto;
    z-index: 52;
    max-width: calc(100vw - 20px);
    margin: 0;
    gap: 1px;
    border-radius: 15px;
    overflow-x: auto;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn {
    min-width: 0;
    min-height: 26px;
    padding: 0 7px;
    border-radius: 11px;
    font-size: 10px;
  }
}


/* Integrated language segmented control, 20260709. Final override. */
.language-switcher,
.site-header .language-switcher,
body.is-lang-ru .language-switcher,
body.is-lang-tr .language-switcher,
body.is-lang-ar .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin-left: 12px !important;
  padding: 4px !important;
  border: 1px solid rgba(188, 207, 230, 0.94) !important;
  border-radius: 18px !important;
  background: rgba(236, 246, 255, 0.93) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(8, 39, 101, 0.12) !important;
  backdrop-filter: blur(12px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(135%) !important;
  transform: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

button.language-btn,
.language-btn,
.site-header .language-btn,
body.is-lang-ru .language-btn,
body.is-lang-tr .language-btn,
body.is-lang-ar .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 76px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: #26354c !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  cursor: pointer !important;
}

button.language-btn + button.language-btn,
.language-btn + .language-btn {
  margin-left: 2px !important;
}

button.language-btn.is-active,
.language-btn.is-active,
.site-header .language-btn.is-active,
body.is-lang-ru .language-btn.is-active,
body.is-lang-tr .language-btn.is-active,
body.is-lang-ar .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #bd122d 0%, #a20f25 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 18px rgba(169, 15, 34, 0.18) !important;
}

button.language-btn:not(.is-active):hover,
.language-btn:not(.is-active):hover {
  color: #0d5db8 !important;
  background: rgba(255, 255, 255, 0.52) !important;
}

@media (max-width: 980px) {
  .language-switcher,
  .site-header .language-switcher,
  body.is-lang-ru .language-switcher,
  body.is-lang-tr .language-switcher,
  body.is-lang-ar .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    margin-left: 8px !important;
    padding: 3px !important;
    border-radius: 16px !important;
  }

  button.language-btn,
  .language-btn,
  .site-header .language-btn,
  body.is-lang-ru .language-btn,
  body.is-lang-tr .language-btn,
  body.is-lang-ar .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn {
    min-width: 58px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border-radius: 12px !important;
    font-size: 11.5px !important;
  }
}

@media (max-width: 640px) {
  .language-switcher,
  .site-header .language-switcher,
  body.is-lang-ru .language-switcher,
  body.is-lang-tr .language-switcher,
  body.is-lang-ar .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    position: absolute !important;
    top: 64px !important;
    right: 10px !important;
    left: auto !important;
    z-index: 52 !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 !important;
    border-radius: 15px !important;
    overflow-x: auto !important;
  }

  button.language-btn,
  .language-btn,
  .site-header .language-btn,
  body.is-lang-ru .language-btn,
  body.is-lang-tr .language-btn,
  body.is-lang-ar .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn {
    min-width: 0 !important;
    min-height: 26px !important;
    padding: 0 7px !important;
    border-radius: 11px !important;
    font-size: 10px !important;
  }
}


/* Mobile language bar scroll behavior, 20260709. */
@media (max-width: 640px) {
  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    will-change: opacity, transform !important;
  }

  body.is-mobile-lang-hidden .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ru .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-tr .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ar .site-header .language-switcher {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) scale(0.98) !important;
  }
}


/* Desktop header navigation balance, 20260709. */
@media (min-width: 981px) {
  .site-header {
    justify-content: flex-start;
    gap: 30px;
  }

  .site-header .site-nav {
    margin-left: auto;
    transform: translateX(18px);
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    margin-left: 28px !important;
  }
}

/* === JETMECH final multilingual polish 2026-07-10 === */
:root {
  --jetmech-blue-deep: #082a68;
  --jetmech-blue: #1267bd;
  --jetmech-blue-soft: #eaf4ff;
  --jetmech-red: #b5122b;
  --jetmech-copy: #526278;
}

.site-header {
  background: rgba(232, 243, 255, 0.72) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
}

.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 4px !important;
  border: 1px solid rgba(188, 207, 230, 0.95) !important;
  border-radius: 18px !important;
  background: rgba(236, 246, 255, 0.95) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 12px 26px rgba(8, 39, 101, 0.14) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.site-header button.language-btn,
.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 78px !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: transparent !important;
  color: #23344e !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

.site-header button.language-btn.is-active,
.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #c41833 0%, #9f0d23 100%) !important;
  box-shadow: 0 10px 22px rgba(171, 18, 43, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

@media (min-width: 981px) {
  .site-header {
    padding-inline: clamp(28px, 4vw, 78px) !important;
  }

  .site-header .site-nav {
    margin-left: clamp(96px, 10vw, 188px) !important;
    transform: translateX(24px) !important;
  }

  .site-header .site-nav a {
    font-size: 16px !important;
    letter-spacing: 0 !important;
  }

  .site-header .nav-whatsapp {
    margin-left: clamp(20px, 3vw, 46px) !important;
  }

  .site-header .language-switcher {
    margin-left: clamp(24px, 3.2vw, 54px) !important;
  }
}

body.is-lang-ru,
body.is-lang-tr,
body.is-lang-ar {
  --translated-heading: #082a68;
  --translated-copy: #506278;
}

body.is-lang-ru .hero .eyebrow,
body.is-lang-tr .hero .eyebrow,
body.is-lang-ar .hero .eyebrow {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: clamp(16px, 1.28vw, 22px) !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em !important;
  max-width: min(1100px, 92vw) !important;
  overflow-wrap: break-word !important;
}

body.is-lang-ru .hero h1,
body.is-lang-tr .hero h1,
body.is-lang-ar .hero h1 {
  color: #ffffff !important;
  font-size: clamp(36px, 4.2vw, 66px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
  max-width: min(1120px, 92vw) !important;
}

body.is-lang-ru .hero-lead,
body.is-lang-tr .hero-lead,
body.is-lang-ar .hero-lead {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(16px, 1.25vw, 22px) !important;
  line-height: 1.72 !important;
  font-weight: 420 !important;
  max-width: min(1020px, 92vw) !important;
}

body.is-lang-ar .hero-content {
  width: min(1080px, calc(100% - clamp(58px, 10vw, 180px))) !important;
  margin-left: auto !important;
  margin-right: clamp(36px, 6vw, 116px) !important;
  padding-inline: clamp(14px, 2.4vw, 34px) !important;
  text-align: right !important;
}

body.is-lang-ru .section-header h2,
body.is-lang-tr .section-header h2,
body.is-lang-ar .section-header h2,
body.is-lang-ru .company-copy h2,
body.is-lang-tr .company-copy h2,
body.is-lang-ar .company-copy h2,
body.is-lang-ru .contact-copy h2,
body.is-lang-tr .contact-copy h2,
body.is-lang-ar .contact-copy h2 {
  color: var(--translated-heading) !important;
  font-size: clamp(26px, 2.2vw, 40px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.is-lang-ru .detail-header h3,
body.is-lang-tr .detail-header h3,
body.is-lang-ar .detail-header h3,
body.is-lang-ru .product-copy h3,
body.is-lang-tr .product-copy h3,
body.is-lang-ar .product-copy h3 {
  color: var(--translated-heading) !important;
  font-size: clamp(25px, 2vw, 38px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.is-lang-ru .visual-card h5,
body.is-lang-tr .visual-card h5,
body.is-lang-ar .visual-card h5,
body.is-lang-ru .spec-block h4,
body.is-lang-tr .spec-block h4,
body.is-lang-ar .spec-block h4,
body.is-lang-ru .quality-strip h4,
body.is-lang-tr .quality-strip h4,
body.is-lang-ar .quality-strip h4,
body.is-lang-ru .capability-title h3,
body.is-lang-tr .capability-title h3,
body.is-lang-ar .capability-title h3,
body.is-lang-ru .company-focus-title strong,
body.is-lang-tr .company-focus-title strong,
body.is-lang-ar .company-focus-title strong {
  color: var(--translated-heading) !important;
  font-size: clamp(19px, 1.25vw, 26px) !important;
  line-height: 1.22 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

body.is-lang-ru p,
body.is-lang-tr p,
body.is-lang-ar p,
body.is-lang-ru li,
body.is-lang-tr li,
body.is-lang-ar li,
body.is-lang-ru .visual-card p,
body.is-lang-tr .visual-card p,
body.is-lang-ar .visual-card p,
body.is-lang-ru .quality-strip li,
body.is-lang-tr .quality-strip li,
body.is-lang-ar .quality-strip li,
body.is-lang-ru .capability-grid p,
body.is-lang-tr .capability-grid p,
body.is-lang-ar .capability-grid p,
body.is-lang-ru .company-focus-grid p,
body.is-lang-tr .company-focus-grid p,
body.is-lang-ar .company-focus-grid p {
  color: var(--translated-copy) !important;
  font-size: clamp(15px, 1.03vw, 19px) !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

body.is-lang-ru .spec-highlight-grid strong,
body.is-lang-tr .spec-highlight-grid strong,
body.is-lang-ar .spec-highlight-grid strong {
  color: var(--translated-heading) !important;
  font-size: clamp(22px, 1.65vw, 34px) !important;
  line-height: 1.08 !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
}

body.is-lang-ru .spec-highlight-grid p,
body.is-lang-tr .spec-highlight-grid p,
body.is-lang-ar .spec-highlight-grid p,
body.is-lang-ru .detail-summary strong,
body.is-lang-tr .detail-summary strong,
body.is-lang-ar .detail-summary strong {
  font-weight: 480 !important;
}

body.is-lang-ru .eyebrow,
body.is-lang-tr .eyebrow,
body.is-lang-ar .eyebrow,
body.is-lang-ru .product-label,
body.is-lang-tr .product-label,
body.is-lang-ar .product-label {
  font-size: clamp(12px, 0.82vw, 15px) !important;
  line-height: 1.22 !important;
  letter-spacing: 0.02em !important;
  white-space: normal !important;
}

body.is-lang-ar .section-header,
body.is-lang-ar .detail-header,
body.is-lang-ar .visual-card,
body.is-lang-ar .quality-strip,
body.is-lang-ar .spec-block,
body.is-lang-ar .company-focus,
body.is-lang-ar .capabilities,
body.is-lang-ar .contact-section {
  text-align: right !important;
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(120, 153, 192, 0.58) !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher {
    position: absolute !important;
    top: 66px !important;
    right: 10px !important;
    left: auto !important;
    max-width: calc(100vw - 20px) !important;
    padding: 3px !important;
    border-radius: 14px !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
  }

  .site-header button.language-btn,
  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn {
    min-width: auto !important;
    min-height: 26px !important;
    padding: 0 8px !important;
    border-radius: 10px !important;
    font-size: 10.5px !important;
    font-weight: 820 !important;
  }

  body.is-mobile-lang-hidden .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ru .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-tr .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ar .site-header .language-switcher {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;
  }

  body.is-lang-ru .hero-content,
  body.is-lang-tr .hero-content,
  body.is-lang-ar .hero-content {
    width: calc(100% - 34px) !important;
    max-width: calc(100% - 34px) !important;
    margin-left: 17px !important;
    margin-right: 17px !important;
    padding-inline: 8px !important;
  }

  body.is-lang-ar .hero-content {
    text-align: right !important;
  }

  body.is-lang-ru .hero .eyebrow,
  body.is-lang-tr .hero .eyebrow,
  body.is-lang-ar .hero .eyebrow {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  body.is-lang-ru .hero h1,
  body.is-lang-tr .hero h1,
  body.is-lang-ar .hero h1 {
    font-size: clamp(32px, 12vw, 46px) !important;
    line-height: 1.08 !important;
  }

  body.is-lang-ar .hero h1 {
    font-size: clamp(30px, 11vw, 43px) !important;
  }

  body.is-lang-ru .hero-lead,
  body.is-lang-tr .hero-lead,
  body.is-lang-ar .hero-lead {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  body.is-lang-ru .section-header h2,
  body.is-lang-tr .section-header h2,
  body.is-lang-ar .section-header h2,
  body.is-lang-ru .detail-header h3,
  body.is-lang-tr .detail-header h3,
  body.is-lang-ar .detail-header h3 {
    font-size: clamp(24px, 8.2vw, 34px) !important;
    line-height: 1.15 !important;
  }

  body.is-lang-ru p,
  body.is-lang-tr p,
  body.is-lang-ar p,
  body.is-lang-ru li,
  body.is-lang-tr li,
  body.is-lang-ar li,
  body.is-lang-ru .visual-card p,
  body.is-lang-tr .visual-card p,
  body.is-lang-ar .visual-card p,
  body.is-lang-ru .quality-strip li,
  body.is-lang-tr .quality-strip li,
  body.is-lang-ar .quality-strip li {
    font-size: 15px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
  }

  body.is-lang-ru .spec-highlight-grid strong,
  body.is-lang-tr .spec-highlight-grid strong,
  body.is-lang-ar .spec-highlight-grid strong {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Four-language switcher fixed layout - 2026-07-11 */
.site-header,
body.is-lang-ru .site-header,
body.is-lang-tr .site-header,
body.is-lang-ar .site-header,
html[dir="rtl"] .site-header {
  direction: ltr !important;
  display: grid !important;
  grid-template-columns: auto minmax(120px, 1fr) auto auto !important;
  align-items: center !important;
  column-gap: clamp(6px, .75vw, 12px) !important;
  width: 100% !important;
  max-width: none !important;
  padding-left: clamp(12px, 1.6vw, 26px) !important;
  padding-right: clamp(12px, 1.6vw, 26px) !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.site-header .brand,
body.is-lang-ru .site-header .brand,
body.is-lang-tr .site-header .brand,
body.is-lang-ar .site-header .brand,
html[dir="rtl"] .site-header .brand {
  grid-column: 1 !important;
  justify-self: start !important;
  min-width: 0 !important;
}

.site-header .site-nav,
body.is-lang-ru .site-header .site-nav,
body.is-lang-tr .site-header .site-nav,
body.is-lang-ar .site-header .site-nav,
html[dir="rtl"] .site-header .site-nav {
  grid-column: 2 !important;
  justify-self: start !important;
  direction: ltr !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(8px, .85vw, 16px) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  max-width: 92px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: clamp(11px, .68vw, 13px) !important;
}

.site-header .site-nav .nav-whatsapp {
  display: none !important;
}

.site-header .header-whatsapp,
body.is-lang-ru .site-header .header-whatsapp,
body.is-lang-tr .site-header .header-whatsapp,
body.is-lang-ar .site-header .header-whatsapp,
html[dir="rtl"] .site-header .header-whatsapp {
  grid-column: 3 !important;
  justify-self: end !important;
  direction: ltr !important;
  flex: none !important;
  width: clamp(132px, 10vw, 166px) !important;
  min-width: 132px !important;
  max-width: 166px !important;
  white-space: nowrap !important;
}

.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher,
html[dir="rtl"] .site-header .language-switcher {
  grid-column: 4 !important;
  justify-self: end !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  translate: none !important;
  order: initial !important;
  flex: none !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: 258px !important;
  min-width: 258px !important;
  max-width: 258px !important;
  height: 34px !important;
  padding: 3px !important;
  margin: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  border-radius: 18px !important;
  border: 1px solid rgba(147, 181, 220, .78) !important;
  background: rgba(236, 245, 255, .92) !important;
  box-shadow: 0 8px 20px rgba(18, 73, 136, .12) !important;
}

.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn,
html[dir="rtl"] .site-header .language-btn {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  appearance: none !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  translate: none !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  height: 24px !important;
  min-height: 24px !important;
  padding: 0 4px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 13px !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 9.4px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  color: #22324a !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .language-btn::before,
.site-header .language-btn::after {
  display: none !important;
  content: none !important;
}

.site-header .language-btn[dir="rtl"],
body.is-lang-ar .site-header .language-btn[dir="rtl"],
html[dir="rtl"] .site-header .language-btn[dir="rtl"] {
  direction: rtl !important;
  font-family: Arial, Tahoma, sans-serif !important;
  font-size: 9.2px !important;
}

.site-header .language-btn[data-lang="en"] {
  order: 1 !important;
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
}

.site-header .language-btn[data-lang="ru"] {
  order: 2 !important;
  width: 66px !important;
  min-width: 66px !important;
  max-width: 66px !important;
}

.site-header .language-btn[data-lang="tr"] {
  order: 3 !important;
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
}

.site-header .language-btn[data-lang="ar"] {
  order: 4 !important;
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
}

.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active,
html[dir="rtl"] .site-header .language-btn.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #c7102f, #9d0821) !important;
  box-shadow: 0 7px 18px rgba(157, 8, 33, .22) !important;
}

@media (max-width: 1260px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: auto minmax(90px, 1fr) auto auto !important;
    column-gap: 6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    gap: 7px !important;
  }

  .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
    max-width: 76px !important;
    font-size: 10.5px !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: 142px !important;
    min-width: 126px !important;
    max-width: 150px !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    height: 32px !important;
    padding: 3px !important;
    gap: 3px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 22px !important;
    min-height: 22px !important;
    font-size: 8.2px !important;
    padding: 0 3px !important;
  }

  .site-header .language-btn[dir="rtl"],
  body.is-lang-ar .site-header .language-btn[dir="rtl"],
  html[dir="rtl"] .site-header .language-btn[dir="rtl"] {
    font-size: 8px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 52px !important; min-width: 52px !important; max-width: 52px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 62px !important; min-width: 62px !important; max-width: 62px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 50px !important; min-width: 50px !important; max-width: 50px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 48px !important; min-width: 48px !important; max-width: 48px !important; }
}

@media (max-width: 860px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto !important;
    row-gap: 6px !important;
    column-gap: 8px !important;
    padding: 11px 12px 8px !important;
  }

  .site-header .brand,
  body.is-lang-ru .site-header .brand,
  body.is-lang-tr .site-header .brand,
  body.is-lang-ar .site-header .brand,
  html[dir="rtl"] .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    overflow: visible !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    width: min(158px, 40vw) !important;
    min-width: 118px !important;
    max-width: 158px !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: end !important;
    width: min(214px, calc(100vw - 24px)) !important;
    min-width: 206px !important;
    max-width: 214px !important;
    height: 23px !important;
    padding: 2px !important;
    gap: 2px !important;
    border-radius: 13px !important;
    transition: opacity .2s ease, transform .2s ease, height .2s ease, padding .2s ease, margin .2s ease !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 19px !important;
    min-height: 19px !important;
    font-size: 7.2px !important;
    padding: 0 2px !important;
    border-radius: 10px !important;
  }

  .site-header .language-btn[dir="rtl"],
  body.is-lang-ar .site-header .language-btn[dir="rtl"],
  html[dir="rtl"] .site-header .language-btn[dir="rtl"] {
    font-size: 7px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 48px !important; min-width: 48px !important; max-width: 48px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 55px !important; min-width: 55px !important; max-width: 55px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 48px !important; min-width: 48px !important; max-width: 48px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 45px !important; min-width: 45px !important; max-width: 45px !important; }

  body.is-mobile-lang-hidden .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ru .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-tr .site-header .language-switcher,
  body.is-mobile-lang-hidden.is-lang-ar .site-header .language-switcher {
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: -6px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 380px) {
  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: min(205px, calc(100vw - 20px)) !important;
    min-width: 198px !important;
    max-width: 205px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    font-size: 6.8px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 46px !important; min-width: 46px !important; max-width: 46px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 52px !important; min-width: 52px !important; max-width: 52px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 45px !important; min-width: 45px !important; max-width: 45px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 42px !important; min-width: 42px !important; max-width: 42px !important; }
}

/* Four-language switcher final fixed layout - 2026-07-11 */
.site-header,
body.is-lang-ru .site-header,
body.is-lang-tr .site-header,
body.is-lang-ar .site-header,
html[dir="rtl"] .site-header {
  direction: ltr !important;
  grid-template-columns: auto minmax(210px, 1fr) auto auto !important;
  column-gap: 12px !important;
  align-items: center !important;
  overflow: visible !important;
}

.site-header .brand,
body.is-lang-ru .site-header .brand,
body.is-lang-tr .site-header .brand,
body.is-lang-ar .site-header .brand,
html[dir="rtl"] .site-header .brand {
  grid-column: 1 !important;
  justify-self: start !important;
  direction: ltr !important;
}

.site-header .site-nav,
body.is-lang-ru .site-header .site-nav,
body.is-lang-tr .site-header .site-nav,
body.is-lang-ar .site-header .site-nav,
html[dir="rtl"] .site-header .site-nav {
  grid-column: 2 !important;
  justify-self: end !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  gap: 14px !important;
  min-width: 0 !important;
  direction: ltr !important;
}

.site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
  font-size: 14px !important;
  padding: 8px 0 !important;
  white-space: nowrap !important;
}

.site-header .header-whatsapp,
body.is-lang-ru .site-header .header-whatsapp,
body.is-lang-tr .site-header .header-whatsapp,
body.is-lang-ar .site-header .header-whatsapp,
html[dir="rtl"] .site-header .header-whatsapp {
  grid-column: 3 !important;
  justify-self: end !important;
  width: 176px !important;
  min-width: 176px !important;
  max-width: 176px !important;
  height: 42px !important;
  padding: 0 12px !important;
  direction: ltr !important;
  text-align: center !important;
}

.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher,
html[dir="rtl"] .site-header .language-switcher {
  grid-column: 4 !important;
  justify-self: end !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  direction: ltr !important;
  width: 238px !important;
  min-width: 238px !important;
  max-width: 238px !important;
  height: 34px !important;
  padding: 3px !important;
  gap: 4px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  background: rgba(238, 247, 255, 0.93) !important;
  border: 1px solid rgba(148, 180, 220, 0.72) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 28px rgba(12, 55, 105, 0.12) !important;
}

.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn,
html[dir="rtl"] .site-header .language-btn {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  height: 26px !important;
  padding: 0 5px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  border: 0 !important;
  background: transparent !important;
  color: #22344c !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  direction: ltr !important;
}

.site-header .language-btn[data-lang="en"] { width: 58px !important; order: 1 !important; }
.site-header .language-btn[data-lang="ru"] { width: 64px !important; order: 2 !important; }
.site-header .language-btn[data-lang="tr"] { width: 54px !important; order: 3 !important; }
.site-header .language-btn[data-lang="ar"] { width: 42px !important; order: 4 !important; direction: rtl !important; font-size: 10.5px !important; }

.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active,
html[dir="rtl"] .site-header .language-btn.is-active {
  background: linear-gradient(135deg, #c6162e, #9f0f22) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(177, 16, 38, 0.2) !important;
}

@media (max-width: 1240px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: auto minmax(150px, 1fr) auto auto !important;
    column-gap: 8px !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    gap: 9px !important;
  }

  .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
    font-size: 12px !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
    height: 38px !important;
    font-size: 12px !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: 224px !important;
    min-width: 224px !important;
    max-width: 224px !important;
    height: 32px !important;
    gap: 3px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 24px !important;
    font-size: 10px !important;
    padding: 0 4px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 54px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 60px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 50px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 40px !important; font-size: 9.6px !important; }
}

@media (max-width: 860px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto !important;
    column-gap: 8px !important;
    row-gap: 4px !important;
    padding: 10px 12px 6px !important;
  }

  .site-header .brand,
  body.is-lang-ru .site-header .brand,
  body.is-lang-tr .site-header .brand,
  body.is-lang-ar .site-header .brand,
  html[dir="rtl"] .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 144px !important;
    min-width: 144px !important;
    max-width: 144px !important;
    height: 36px !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: end !important;
    width: 206px !important;
    min-width: 206px !important;
    max-width: 206px !important;
    height: 22px !important;
    padding: 2px !important;
    gap: 2px !important;
    border-radius: 12px !important;
    background: rgba(238, 247, 255, 0.82) !important;
    box-shadow: 0 8px 18px rgba(12, 55, 105, 0.08) !important;
    transition: transform 0.22s ease, opacity 0.22s ease !important;
  }

  body.is-mobile-lang-hidden .site-header .language-switcher {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 18px !important;
    font-size: 7.4px !important;
    padding: 0 2px !important;
    border-radius: 10px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 46px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 54px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 44px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 38px !important; font-size: 7.1px !important; }
}

@media (max-width: 380px) {
  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: 196px !important;
    min-width: 196px !important;
    max-width: 196px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    font-size: 6.8px !important;
  }

  .site-header .language-btn[data-lang="en"] { width: 43px !important; }
  .site-header .language-btn[data-lang="ru"] { width: 51px !important; }
  .site-header .language-btn[data-lang="tr"] { width: 42px !important; }
  .site-header .language-btn[data-lang="ar"] { width: 36px !important; font-size: 6.5px !important; }
}

/* Header language group international layout - local only 2026-07-11 */
.site-header,
body.is-lang-ru .site-header,
body.is-lang-tr .site-header,
body.is-lang-ar .site-header,
html[dir="rtl"] .site-header {
  direction: ltr !important;
  display: grid !important;
  grid-template-columns: minmax(126px, 172px) minmax(320px, 1fr) minmax(164px, 188px) minmax(314px, 348px) !important;
  column-gap: clamp(10px, 1.15vw, 18px) !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-left: clamp(18px, 2.2vw, 34px) !important;
  padding-right: clamp(18px, 2.2vw, 34px) !important;
  overflow: visible !important;
}

.site-header .brand,
body.is-lang-ru .site-header .brand,
body.is-lang-tr .site-header .brand,
body.is-lang-ar .site-header .brand,
html[dir="rtl"] .site-header .brand {
  grid-column: 1 !important;
  justify-self: start !important;
  min-width: 0 !important;
  direction: ltr !important;
}

.site-header .site-nav,
body.is-lang-ru .site-header .site-nav,
body.is-lang-tr .site-header .site-nav,
body.is-lang-ar .site-header .site-nav,
html[dir="rtl"] .site-header .site-nav {
  grid-column: 2 !important;
  justify-self: start !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(18px, 2vw, 34px) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
  direction: ltr !important;
}

.site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
  flex: 0 0 auto !important;
  max-width: none !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1 !important;
  padding: 10px 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.site-header .site-nav .nav-whatsapp {
  display: none !important;
}

.site-header .header-whatsapp,
body.is-lang-ru .site-header .header-whatsapp,
body.is-lang-tr .site-header .header-whatsapp,
body.is-lang-ar .site-header .header-whatsapp,
html[dir="rtl"] .site-header .header-whatsapp {
  grid-column: 3 !important;
  justify-self: end !important;
  width: clamp(160px, 12vw, 188px) !important;
  min-width: 160px !important;
  max-width: 188px !important;
  height: 42px !important;
  padding: 0 12px !important;
  box-sizing: border-box !important;
  direction: ltr !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.site-header .header-whatsapp span,
body.is-lang-ru .site-header .header-whatsapp span,
body.is-lang-tr .site-header .header-whatsapp span,
body.is-lang-ar .site-header .header-whatsapp span,
html[dir="rtl"] .site-header .header-whatsapp span {
  font-size: 11px !important;
  letter-spacing: 0.05em !important;
}

.site-header .header-whatsapp strong,
body.is-lang-ru .site-header .header-whatsapp strong,
body.is-lang-tr .site-header .header-whatsapp strong,
body.is-lang-ar .site-header .header-whatsapp strong,
html[dir="rtl"] .site-header .header-whatsapp strong {
  font-size: 16px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher,
html[dir="rtl"] .site-header .language-switcher {
  grid-column: 4 !important;
  justify-self: end !important;
  width: clamp(314px, 22vw, 348px) !important;
  min-width: 314px !important;
  max-width: 348px !important;
  height: 40px !important;
  padding: 4px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 5px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  direction: ltr !important;
  background: rgba(236, 247, 255, 0.94) !important;
  border: 1px solid rgba(126, 166, 210, 0.58) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 30px rgba(18, 74, 135, 0.13) !important;
  margin: 0 !important;
}

.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn,
html[dir="rtl"] .site-header .language-btn {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 30px !important;
  padding: 0 6px !important;
  border-radius: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  font-size: clamp(11px, 0.78vw, 13px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  color: #22334c !important;
  background: transparent !important;
  box-shadow: none !important;
  direction: ltr !important;
  border: 0 !important;
  margin: 0 !important;
}

.site-header .language-btn[data-lang="ar"],
body.is-lang-ar .site-header .language-btn[data-lang="ar"],
html[dir="rtl"] .site-header .language-btn[data-lang="ar"] {
  direction: rtl !important;
}

.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active,
html[dir="rtl"] .site-header .language-btn.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #c6102e 0%, #a4071f 100%) !important;
  box-shadow: 0 8px 18px rgba(171, 8, 32, 0.22) !important;
}

@media (max-width: 1280px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: minmax(112px, 150px) minmax(250px, 1fr) minmax(150px, 174px) minmax(288px, 318px) !important;
    column-gap: 10px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    gap: clamp(14px, 1.45vw, 24px) !important;
  }

  .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
    font-size: clamp(13px, 1vw, 16px) !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: clamp(150px, 12vw, 174px) !important;
    min-width: 150px !important;
    max-width: 174px !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: clamp(288px, 23vw, 318px) !important;
    min-width: 288px !important;
    max-width: 318px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    font-size: clamp(10px, 0.86vw, 12px) !important;
    padding: 0 4px !important;
  }
}

@media (max-width: 1120px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: minmax(104px, 136px) minmax(210px, 1fr) minmax(140px, 158px) minmax(264px, 292px) !important;
    column-gap: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .site-header .site-nav,
  body.is-lang-ru .site-header .site-nav,
  body.is-lang-tr .site-header .site-nav,
  body.is-lang-ar .site-header .site-nav,
  html[dir="rtl"] .site-header .site-nav {
    gap: 12px !important;
  }

  .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ru .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-tr .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  body.is-lang-ar .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product),
  html[dir="rtl"] .site-header .site-nav > a:not(.nav-whatsapp):not(.nav-mobile-product) {
    font-size: 13px !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
    height: 38px !important;
    padding: 0 8px !important;
  }

  .site-header .header-whatsapp strong,
  body.is-lang-ru .site-header .header-whatsapp strong,
  body.is-lang-tr .site-header .header-whatsapp strong,
  body.is-lang-ar .site-header .header-whatsapp strong,
  html[dir="rtl"] .site-header .header-whatsapp strong {
    font-size: 14px !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: clamp(264px, 25vw, 292px) !important;
    min-width: 264px !important;
    max-width: 292px !important;
    height: 36px !important;
    padding: 3px !important;
    gap: 3px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 28px !important;
    font-size: 10px !important;
    padding: 0 3px !important;
  }
}

@media (max-width: 860px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: auto 1fr auto !important;
    grid-template-rows: auto auto !important;
    column-gap: 8px !important;
    row-gap: 6px !important;
    padding: 10px 12px 8px !important;
    align-items: center !important;
  }

  .site-header .brand,
  body.is-lang-ru .site-header .brand,
  body.is-lang-tr .site-header .brand,
  body.is-lang-ar .site-header .brand,
  html[dir="rtl"] .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    width: min(170px, 44vw) !important;
    min-width: 132px !important;
    max-width: 170px !important;
    height: 38px !important;
  }

  .site-header .menu-toggle,
  body.is-lang-ru .site-header .menu-toggle,
  body.is-lang-tr .site-header .menu-toggle,
  body.is-lang-ar .site-header .menu-toggle,
  html[dir="rtl"] .site-header .menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: min(336px, calc(100vw - 24px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 24px) !important;
    height: 30px !important;
    padding: 3px !important;
    gap: 3px !important;
    border-radius: 18px !important;
    transition: opacity 0.18s ease, transform 0.18s ease, max-height 0.18s ease, padding 0.18s ease, border-width 0.18s ease !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 24px !important;
    font-size: 9px !important;
    padding: 0 2px !important;
    border-radius: 14px !important;
  }

  body.is-mobile-lang-hidden .site-header .language-switcher {
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-width: 0 !important;
  }
}

@media (max-width: 380px) {
  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    font-size: 8.3px !important;
    letter-spacing: 0 !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: min(150px, 42vw) !important;
    min-width: 122px !important;
  }
}

/* Header toolbar refinement - local only 2026-07-11 */
.site-header,
body.is-lang-ru .site-header,
body.is-lang-tr .site-header,
body.is-lang-ar .site-header,
html[dir="rtl"] .site-header {
  display: grid !important;
  grid-template-columns: minmax(128px, 166px) minmax(252px, 1fr) 268px 178px !important;
  column-gap: clamp(14px, 1.45vw, 24px) !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding-left: clamp(26px, 3vw, 46px) !important;
  padding-right: clamp(26px, 3vw, 46px) !important;
  background: rgba(229, 241, 252, .76) !important;
  border-bottom: 1px solid rgba(132, 166, 205, .34) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  direction: ltr !important;
  overflow: visible !important;
}

.site-header .brand,
body.is-lang-ru .site-header .brand,
body.is-lang-tr .site-header .brand,
body.is-lang-ar .site-header .brand,
html[dir="rtl"] .site-header .brand {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: min(166px, 14.2vw) !important;
  max-width: 166px !important;
  min-width: 116px !important;
  margin: 0 !important;
  direction: ltr !important;
}

.site-header .brand img {
  display: block !important;
  width: 100% !important;
  max-width: 166px !important;
  height: auto !important;
}

.site-header .site-nav,
body.is-lang-ru .site-header .site-nav,
body.is-lang-tr .site-header .site-nav,
body.is-lang-ar .site-header .site-nav,
html[dir="rtl"] .site-header .site-nav {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(18px, 2vw, 36px) !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 40px !important;
  margin: 0 !important;
  overflow: visible !important;
  direction: ltr !important;
}

@media (min-width: 901px) {
  .site-header .site-nav .nav-mobile-product,
  .site-header .site-nav .nav-whatsapp {
    display: none !important;
  }
}

.site-header .site-nav a:not(.nav-whatsapp):not(.nav-mobile-product) {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: clamp(13px, .92vw, 15px) !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  color: #24354a !important;
}

.site-header .site-nav a:not(.nav-whatsapp):not(.nav-mobile-product)::after {
  bottom: -8px !important;
  height: 2px !important;
  border-radius: 0 !important;
}

.site-header .language-switcher,
body.is-lang-ru .site-header .language-switcher,
body.is-lang-tr .site-header .language-switcher,
body.is-lang-ar .site-header .language-switcher,
html[dir="rtl"] .site-header .language-switcher {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  width: 268px !important;
  min-width: 268px !important;
  max-width: 268px !important;
  height: 34px !important;
  padding: 3px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: center !important;
  gap: 3px !important;
  border-radius: 7px !important;
  border: 1px solid rgba(39, 91, 151, .24) !important;
  background: rgba(239, 247, 255, .88) !important;
  box-shadow: 0 8px 22px rgba(16, 49, 89, .08), inset 0 1px 0 rgba(255,255,255,.82) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  direction: ltr !important;
  margin: 0 !important;
}

.site-header .language-btn,
body.is-lang-ru .site-header .language-btn,
body.is-lang-tr .site-header .language-btn,
body.is-lang-ar .site-header .language-btn,
html[dir="rtl"] .site-header .language-btn {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 26px !important;
  padding: 0 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #25364d !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  transform: none !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.site-header .language-btn[dir="rtl"] {
  direction: rtl !important;
  font-family: var(--font-arabic), var(--font-sans) !important;
  font-size: 9.6px !important;
}

.site-header .language-btn.is-active,
body.is-lang-ru .site-header .language-btn.is-active,
body.is-lang-tr .site-header .language-btn.is-active,
body.is-lang-ar .site-header .language-btn.is-active,
html[dir="rtl"] .site-header .language-btn.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #c30d23 0%, #a9091c 100%) !important;
  box-shadow: 0 5px 12px rgba(160, 9, 28, .18), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.site-header .header-whatsapp,
body.is-lang-ru .site-header .header-whatsapp,
body.is-lang-tr .site-header .header-whatsapp,
body.is-lang-ar .site-header .header-whatsapp,
html[dir="rtl"] .site-header .header-whatsapp {
  grid-column: 4 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  align-self: center !important;
  width: 178px !important;
  height: 42px !important;
  min-height: 0 !important;
  border-radius: 7px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  line-height: 1.08 !important;
  direction: ltr !important;
  box-sizing: border-box !important;
}

.site-header .header-whatsapp span {
  font-size: 9px !important;
  line-height: 1 !important;
  letter-spacing: .06em !important;
}

.site-header .header-whatsapp strong {
  font-size: 15px !important;
  line-height: 1.1 !important;
  letter-spacing: .02em !important;
  white-space: nowrap !important;
}

.site-header .menu-toggle {
  justify-self: end !important;
  margin: 0 !important;
}

html[dir="rtl"] .site-header *,
body.is-lang-ar .site-header * {
  direction: ltr;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: minmax(116px, 138px) minmax(196px, 1fr) 236px 152px !important;
    column-gap: 12px !important;
    padding-left: clamp(18px, 2.2vw, 28px) !important;
    padding-right: clamp(18px, 2.2vw, 28px) !important;
  }

  .site-header .brand {
    width: min(138px, 13vw) !important;
    min-width: 108px !important;
  }

  .site-header .site-nav {
    gap: clamp(12px, 1.4vw, 20px) !important;
  }

  .site-header .site-nav a:not(.nav-whatsapp):not(.nav-mobile-product) {
    font-size: clamp(11px, .9vw, 13px) !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    width: 236px !important;
    min-width: 236px !important;
    max-width: 236px !important;
    height: 32px !important;
    padding: 3px !important;
    gap: 2px !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 24px !important;
    font-size: 8.9px !important;
    padding: 0 2px !important;
  }

  .site-header .language-btn[dir="rtl"] {
    font-size: 8.6px !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    width: 152px !important;
    height: 38px !important;
    padding: 0 9px !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 13px !important;
  }
}

@media (max-width: 900px) {
  .site-header,
  body.is-lang-ru .site-header,
  body.is-lang-tr .site-header,
  body.is-lang-ar .site-header,
  html[dir="rtl"] .site-header {
    grid-template-columns: minmax(112px, 1fr) minmax(132px, 168px) 38px !important;
    grid-template-rows: 38px 18px !important;
    column-gap: 8px !important;
    row-gap: 4px !important;
    padding: 8px 10px 7px !important;
    background: rgba(191, 214, 238, .58) !important;
    border-bottom: 1px solid rgba(121, 159, 196, .28) !important;
    backdrop-filter: blur(16px) saturate(142%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(142%) !important;
  }

  .site-header .brand,
  body.is-lang-ru .site-header .brand,
  body.is-lang-tr .site-header .brand,
  body.is-lang-ar .site-header .brand,
  html[dir="rtl"] .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: clamp(122px, 35vw, 154px) !important;
    min-width: 112px !important;
    max-width: 154px !important;
  }

  .site-header .header-whatsapp,
  body.is-lang-ru .site-header .header-whatsapp,
  body.is-lang-tr .site-header .header-whatsapp,
  body.is-lang-ar .site-header .header-whatsapp,
  html[dir="rtl"] .site-header .header-whatsapp {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    width: clamp(132px, 41vw, 168px) !important;
    height: 32px !important;
    border-radius: 7px !important;
    padding: 0 8px !important;
  }

  .site-header .header-whatsapp span {
    font-size: 7.2px !important;
    letter-spacing: .055em !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 11.6px !important;
  }

  .site-header .menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .site-header .site-nav {
    grid-column: 1 / 4 !important;
    grid-row: 3 !important;
  }

  .site-header .language-switcher,
  body.is-lang-ru .site-header .language-switcher,
  body.is-lang-tr .site-header .language-switcher,
  body.is-lang-ar .site-header .language-switcher,
  html[dir="rtl"] .site-header .language-switcher {
    grid-column: 1 / 4 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    width: min(238px, calc(100vw - 28px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 28px) !important;
    height: 18px !important;
    padding: 2px !important;
    gap: 2px !important;
    border-radius: 4px !important;
    background: rgba(238, 247, 255, .70) !important;
    box-shadow: 0 4px 12px rgba(18, 45, 79, .08), inset 0 1px 0 rgba(255,255,255,.72) !important;
    transition: opacity .22s ease, transform .22s ease !important;
  }

  .site-header .language-btn,
  body.is-lang-ru .site-header .language-btn,
  body.is-lang-tr .site-header .language-btn,
  body.is-lang-ar .site-header .language-btn,
  html[dir="rtl"] .site-header .language-btn {
    height: 12px !important;
    min-height: 0 !important;
    border-radius: 2px !important;
    font-size: 6.7px !important;
    line-height: 1 !important;
    padding: 0 1px !important;
  }

  .site-header .language-btn[dir="rtl"] {
    font-size: 6.4px !important;
  }

  .site-header .language-btn.is-active {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16) !important;
  }

  body.is-mobile-lang-hidden .site-header .language-switcher {
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
  }
}

/* Header refinement 2026-07-11 */
@media (min-width: 901px) {
  .site-header {
    gap: 22px;
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }

  .brand img {
    width: 196px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(18px, 1.8vw, 30px);
    margin-left: auto;
  }

  .site-nav a:not(.nav-whatsapp):not(.nav-mobile-product) {
    white-space: nowrap;
  }

  .site-nav .nav-whatsapp {
    min-width: 196px;
    min-height: 42px;
    margin-left: clamp(6px, 1vw, 16px);
    padding: 7px 16px;
    border-radius: 8px;
  }

  .site-nav .nav-whatsapp span {
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 1.05;
  }

  .site-nav .nav-whatsapp strong {
    font-size: 13px;
    letter-spacing: .02em;
    line-height: 1.05;
  }
}

@media (max-width: 900px) {
  .brand img {
    width: 176px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
  }

  .header-whatsapp span {
    letter-spacing: .04em;
  }

  .header-whatsapp strong {
    letter-spacing: .01em;
  }
}
/* End header refinement 2026-07-11 */

/* === Header cleanup: English-only layout === */
.language-switcher,
.is-mobile-lang-hidden .language-switcher {
  display: none !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1200 !important;
  min-height: 78px !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
  background: rgba(232, 242, 252, 0.88) !important;
  border-bottom: 1px solid rgba(177, 199, 224, 0.7) !important;
  box-shadow: 0 10px 30px rgba(18, 44, 76, 0.08) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.site-header .header-inner {
  width: min(100% - 56px, 1320px) !important;
  margin: 0 auto !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

.site-header .brand {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  text-decoration: none !important;
}

.site-header .brand img {
  width: clamp(190px, 20vw, 282px) !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

.site-header .site-nav {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(24px, 3vw, 46px) !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  inset: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header .site-nav a {
  text-decoration: none !important;
  font-weight: 760 !important;
  white-space: nowrap !important;
}

.site-header .site-nav a:not(.nav-whatsapp) {
  color: #1f2d40 !important;
  padding: 12px 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .site-nav a:not(.nav-whatsapp):hover,
.site-header .site-nav a.is-active:not(.nav-whatsapp) {
  color: #0f61b8 !important;
}

.site-header .site-nav a::after {
  display: none !important;
}

.site-header .site-nav .nav-whatsapp {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 230px !important;
  padding: 10px 18px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #1e73c9, #0a438f) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(14, 78, 152, 0.24) !important;
  border: 0 !important;
}

.site-header .site-nav .nav-whatsapp span {
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  color: #fff !important;
}

.site-header .site-nav .nav-whatsapp strong {
  margin-top: 4px !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}

.site-header .header-whatsapp,
.site-header .menu-toggle {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px !important;
    background: rgba(205, 224, 242, 0.76) !important;
  }

  .site-header .header-inner {
    width: 100% !important;
    min-height: 64px !important;
    padding: 8px 10px !important;
    gap: 8px !important;
  }

  .site-header .brand img {
    width: clamp(132px, 36vw, 172px) !important;
    max-height: 46px !important;
  }

  .site-header .header-whatsapp {
    margin-left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 126px !important;
    padding: 6px 10px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(245, 253, 255, 0.9), rgba(119, 221, 237, 0.76)) !important;
    color: #103354 !important;
    border: 1px solid rgba(255, 255, 255, 0.74) !important;
    box-shadow: 0 8px 22px rgba(21, 135, 176, 0.22), inset 0 1px 10px rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  .site-header .header-whatsapp span {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    color: #103354 !important;
  }

  .site-header .header-whatsapp strong {
    margin-top: 3px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    color: #103354 !important;
  }

  .site-header .menu-toggle {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    margin-left: 2px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow: 0 8px 20px rgba(22, 54, 91, 0.16) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 0 !important;
  }

  .site-header .menu-toggle span {
    width: 19px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #15345b !important;
    display: block !important;
  }

  .site-header .site-nav {
    position: absolute !important;
    right: 10px !important;
    left: auto !important;
    top: calc(100% + 8px) !important;
    width: min(240px, calc(100vw - 20px)) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: rgba(246, 250, 255, 0.96) !important;
    border: 1px solid rgba(180, 204, 231, 0.75) !important;
    box-shadow: 0 18px 34px rgba(15, 40, 72, 0.18) !important;
    z-index: 1300 !important;
  }

  .site-header .site-nav.is-open {
    display: flex !important;
  }

  .site-header .site-nav a:not(.nav-whatsapp) {
    width: 100% !important;
    padding: 11px 12px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    color: #16345b !important;
    background: rgba(232, 242, 252, 0.72) !important;
  }

  .site-header .site-nav .nav-whatsapp {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand img {
    width: 122px !important;
  }

  .site-header .header-whatsapp {
    min-width: 118px !important;
    padding: 5px 8px !important;
  }

  .site-header .header-whatsapp span {
    font-size: 9px !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 11px !important;
  }

  .site-header .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }
}

/* Final English-only header layout */
.language-switcher,
.language-selector,
.language-tabs,
.language-panel,
.language-menu,
.lang-switcher,
.lang-tabs,
.lang-toggle,
[data-language-switcher],
[data-language-tabs],
[data-lang-switcher],
[data-lang-tabs] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(224, 237, 249, 0.78) !important;
  border-bottom: 1px solid rgba(111, 143, 184, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 44px));
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.brand img {
  display: block;
  width: 250px;
  max-width: 26vw;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  user-select: none;
  -webkit-user-drag: none;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: 8px;
}

.site-nav > a:not(.nav-whatsapp) {
  position: relative;
  padding: 10px 0;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1;
  color: #243348;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.site-nav > a:not(.nav-whatsapp):hover,
.site-nav > a:not(.nav-whatsapp).active {
  color: #0f5fb7;
  border-bottom-color: #b80f2c;
}

.header-whatsapp {
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 218px;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #176fc8, #063b88) !important;
  box-shadow: 0 10px 24px rgba(16, 82, 158, 0.24);
}

.header-whatsapp span,
.nav-whatsapp span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-whatsapp strong,
.nav-whatsapp strong {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.menu-toggle { display: none; }
.nav-whatsapp { display: none !important; }

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 20px, 100%);
    min-height: 72px;
    padding: 8px 0;
    gap: 8px;
    position: relative;
  }

  .brand img {
    width: 132px;
    max-width: 36vw;
  }

  .header-whatsapp {
    min-width: 142px;
    padding: 7px 9px;
    border-radius: 11px;
    box-shadow: 0 0 16px rgba(51, 171, 215, 0.24), inset 0 1px rgba(255, 255, 255, 0.5);
  }

  .header-whatsapp span { font-size: 9px; }
  .header-whatsapp strong { font-size: 12px; }

  .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(134, 161, 194, 0.45);
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 6px 16px rgba(18, 48, 95, 0.16);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: #12305f;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    z-index: 1002;
    width: min(238px, calc(100vw - 20px));
    margin: 0;
    padding: 8px;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(246, 251, 255, 0.98);
    border: 1px solid rgba(125, 155, 190, 0.35);
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(23, 47, 80, 0.2);
  }

  .site-nav.is-open { display: flex !important; }

  .site-nav > a:not(.nav-whatsapp) {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    text-align: left;
    color: #142a4d;
  }

  .site-nav > a:not(.nav-whatsapp):hover { background: rgba(15, 95, 183, 0.09); }

  .site-nav .nav-whatsapp {
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(135deg, #176fc8, #063b88);
  }

  .site-nav .nav-whatsapp span { font-size: 10px; }
  .site-nav .nav-whatsapp strong { font-size: 14px; }
}

@media (max-width: 390px) {
  .brand img { width: 118px; }
  .header-whatsapp {
    min-width: 128px;
    padding: 6px 7px;
  }
  .header-whatsapp strong { font-size: 11px; }
  .menu-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 981px) {
  .site-nav { display: flex !important; }
  .menu-toggle { display: none !important; }
  .site-nav .nav-whatsapp { display: none !important; }
}
/* End final English-only header layout */

/* Header logo transparent size fix 20260712 */
.site-header .brand {
  width: clamp(245px, 20vw, 330px) !important;
  max-width: 330px !important;
  min-width: 205px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header .brand img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

@media (max-width: 700px) {
  .site-header .brand {
    width: clamp(152px, 36vw, 190px) !important;
    max-width: 190px !important;
    min-width: 152px !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand {
    width: 142px !important;
    max-width: 142px !important;
    min-width: 142px !important;
  }
}
/* End header logo transparent size fix 20260712 */

/* Header refinement 2026-07-12: transparent logo and compact WhatsApp button */
.site-header {
  height: 72px;
  padding: 0 clamp(28px, 4vw, 56px);
}

.site-header .header-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .brand img {
  width: clamp(220px, 18vw, 300px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-header .site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 14px;
}

.site-header .site-nav a {
  padding: 26px 0;
}

.site-header .site-nav .nav-whatsapp {
  min-height: 36px;
  min-width: 172px;
  padding: 6px 13px 7px;
  border-radius: 11px;
  gap: 3px;
  background: linear-gradient(135deg, #1c6fc4 0%, #0d4a96 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 8px 18px rgba(14, 78, 159, 0.16);
}

.site-header .site-nav .nav-whatsapp span {
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: 0.13em;
  opacity: 0.9;
}

.site-header .site-nav .nav-whatsapp strong {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.035em;
}

@media (min-width: 981px) {
  .site-header .header-whatsapp {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .site-header .header-inner {
    gap: 10px;
  }

  .site-header .brand img {
    width: clamp(150px, 42vw, 205px);
    max-height: 42px;
  }

  .site-header .header-whatsapp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 40px;
    padding: 5px 10px 6px;
    border-radius: 16px;
    margin-left: auto;
  }

  .site-header .header-whatsapp span {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .site-header .header-whatsapp strong {
    font-size: 12.5px;
    letter-spacing: 0.02em;
  }

  .site-header .site-nav {
    top: 72px;
    left: auto;
    right: 12px;
    width: min(270px, calc(100vw - 24px));
    padding: 8px;
    border-radius: 14px;
  }

  .site-header .site-nav a,
  .site-header .site-nav .nav-whatsapp {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 10px;
  }

  .site-header .site-nav .nav-whatsapp {
    min-height: 44px;
    margin-top: 6px;
  }
}

@media (max-width: 420px) {
  .site-header .brand img {
    width: 145px;
  }

  .site-header .header-whatsapp {
    min-width: 138px;
    padding-inline: 8px;
  }

  .site-header .header-whatsapp strong {
    font-size: 12px;
  }
}

/* Header final polish 2026-07-12: transparent logo and compact WhatsApp */
.site-header {
  height: 68px !important;
  padding: 0 clamp(24px, 3.4vw, 52px) !important;
  background: rgba(232, 241, 250, 0.82) !important;
  backdrop-filter: blur(14px);
}

.site-header .header-inner {
  width: min(100%, 1460px) !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(18px, 2.6vw, 36px) !important;
}

.site-header .brand {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .brand img {
  width: clamp(260px, 19vw, 340px) !important;
  max-width: 340px !important;
  max-height: 56px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  background: transparent !important;
}

@media (min-width: 981px) {
  .site-header .site-nav {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(18px, 1.8vw, 30px) !important;
  }

  .site-header .site-nav > a:not(.nav-whatsapp) {
    padding: 22px 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .site-header .site-nav .nav-whatsapp {
    min-width: 154px !important;
    min-height: 32px !important;
    padding: 5px 11px 6px !important;
    border-radius: 10px !important;
    gap: 3px !important;
    flex: 0 0 auto !important;
    background: linear-gradient(135deg, #1b73c9 0%, #0d4f9d 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    box-shadow: 0 7px 16px rgba(13, 78, 151, 0.15) !important;
  }

  .site-header .site-nav .nav-whatsapp span {
    font-size: 7.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    opacity: 0.9 !important;
  }

  .site-header .site-nav .nav-whatsapp strong {
    font-size: 12px !important;
    line-height: 1.05 !important;
    letter-spacing: 0.025em !important;
  }

  .site-header .header-whatsapp {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 64px !important;
    padding: 0 12px !important;
  }

  .site-header .header-inner {
    gap: 8px !important;
  }

  .site-header .brand img {
    width: clamp(150px, 42vw, 205px) !important;
    max-height: 42px !important;
  }

  .site-header .header-whatsapp {
    min-width: 138px !important;
    min-height: 38px !important;
    padding: 5px 9px 6px !important;
    border-radius: 14px !important;
  }

  .site-header .header-whatsapp span {
    font-size: 7.5px !important;
    line-height: 1 !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 12px !important;
    line-height: 1.05 !important;
  }

  .site-header .site-nav {
    top: 64px !important;
    left: auto !important;
    right: 12px !important;
    width: min(270px, calc(100vw - 24px)) !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand img {
    width: 150px !important;
  }

  .site-header .header-whatsapp {
    min-width: 132px !important;
    padding-inline: 8px !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 11.5px !important;
  }
}

/* Final header polish 20260712 - English only */
.language-switcher,
.language-selector,
.language-tabs,
.language-panel,
.language-menu,
.lang-switcher,
.lang-tabs,
.lang-toggle,
[data-language-switcher],
[data-language-tabs],
[data-lang-switcher],
[data-lang-tabs] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  min-height: 72px !important;
  background: rgba(222, 236, 249, 0.78) !important;
  border-bottom: 1px solid rgba(103, 134, 174, 0.24) !important;
  backdrop-filter: blur(18px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
}

.site-header .header-inner {
  width: min(1360px, calc(100% - 48px)) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(22px, 2.4vw, 40px) !important;
}

.site-header .brand {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-header .brand img {
  display: block !important;
  width: clamp(272px, 20vw, 360px) !important;
  max-width: 360px !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .site-nav {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(18px, 2.1vw, 34px) !important;
  min-width: 0 !important;
}

.site-header .site-nav a:not(.nav-whatsapp) {
  font-size: clamp(16px, 1.12vw, 19px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #233247 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  padding: 10px 0 !important;
}

.site-header .site-nav a:not(.nav-whatsapp)::after {
  height: 3px !important;
  bottom: 2px !important;
  background: #b20f24 !important;
}

.site-header .site-nav .nav-whatsapp {
  flex: 0 0 auto !important;
  width: 188px !important;
  min-width: 188px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 6px 13px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1f83da 0%, #0758aa 100%) !important;
  border: 1px solid rgba(255,255,255,0.42) !important;
  box-shadow: 0 10px 24px rgba(19, 88, 164, 0.22) !important;
  text-decoration: none !important;
}

.site-header .site-nav .nav-whatsapp span {
  font-size: 8px !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  opacity: 0.92 !important;
  white-space: nowrap !important;
}

.site-header .site-nav .nav-whatsapp strong {
  font-size: 13px !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.site-header .header-whatsapp {
  display: none !important;
}

.site-header .menu-toggle {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px !important;
  }

  .site-header .header-inner {
    width: calc(100% - 20px) !important;
    min-height: 64px !important;
    padding: 6px 0 !important;
    gap: 8px !important;
  }

  .site-header .brand img {
    width: clamp(150px, 40vw, 190px) !important;
    max-height: 42px !important;
  }

  .site-header .header-whatsapp {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    width: clamp(126px, 34vw, 146px) !important;
    min-width: clamp(126px, 34vw, 146px) !important;
    height: 36px !important;
    padding: 5px 8px !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    color: #07315f !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(132,226,236,0.76)) !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
    box-shadow: 0 8px 22px rgba(59, 160, 199, 0.22), inset 0 1px 0 rgba(255,255,255,0.86) !important;
    text-decoration: none !important;
  }

  .site-header .header-whatsapp span {
    font-size: 7.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 11.2px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .site-header .menu-toggle {
    flex: 0 0 38px !important;
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(170, 193, 222, 0.55) !important;
    box-shadow: 0 6px 16px rgba(10,35,70,0.12) !important;
  }

  .site-header .site-nav {
    position: fixed !important;
    top: 68px !important;
    right: 10px !important;
    left: auto !important;
    width: min(250px, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: rgba(239, 246, 253, 0.96) !important;
    border: 1px solid rgba(141, 168, 204, 0.45) !important;
    box-shadow: 0 16px 32px rgba(12, 36, 68, 0.18) !important;
    overflow: hidden !important;
  }

  .site-header .site-nav.is-open,
  .site-header .site-nav[data-open="true"] {
    display: flex !important;
  }

  .site-header .site-nav a:not(.nav-whatsapp) {
    display: block !important;
    width: 100% !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    background: rgba(255,255,255,0.66) !important;
    border: 1px solid rgba(170, 193, 222, 0.36) !important;
  }

  .site-header .site-nav .nav-whatsapp {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand img {
    width: clamp(136px, 38vw, 160px) !important;
  }

  .site-header .header-whatsapp {
    width: 126px !important;
    min-width: 126px !important;
  }

  .site-header .header-whatsapp strong {
    font-size: 10.6px !important;
  }
}

/* 20260713 final header compact polish */
.site-header { padding: 10px clamp(26px, 3.6vw, 58px) !important; }

.site-header .header-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(22px, 3vw, 46px) !important;
  width: 100% !important;
}

.site-header .brand {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.site-header .brand img {
  width: clamp(300px, 20vw, 388px) !important;
  max-height: 92px !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  display: block !important;
}

.site-header .site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(18px, 2.1vw, 32px) !important;
  min-width: 0 !important;
}

.site-header .site-nav a:not(.nav-whatsapp) { white-space: nowrap !important; }

.site-header .nav-whatsapp {
  margin-left: clamp(8px, 1.2vw, 18px) !important;
  width: 182px !important;
  min-width: 182px !important;
  max-width: 182px !important;
  padding: 7px 12px !important;
  border-radius: 10px !important;
  line-height: 1.08 !important;
  text-align: center !important;
  box-shadow: 0 8px 18px rgba(6,79,163,.18) !important;
}

.site-header .nav-whatsapp span {
  font-size: 8px !important;
  letter-spacing: .10em !important;
  display: block !important;
}

.site-header .nav-whatsapp strong {
  font-size: 15px !important;
  letter-spacing: .015em !important;
  display: block !important;
}

.site-header .header-whatsapp { display: none !important; }

@media (max-width: 1100px) {
  .site-header .brand img { width: clamp(230px, 24vw, 310px) !important; }
  .site-header .site-nav { gap: 18px !important; }
  .site-header .nav-whatsapp {
    width: 166px !important;
    min-width: 166px !important;
    max-width: 166px !important;
  }
  .site-header .nav-whatsapp strong { font-size: 13.5px !important; }
}

@media (max-width: 900px) {
  .site-header { padding: 8px 12px !important; }
  .site-header .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto !important;
    gap: 8px !important;
  }
  .site-header .brand img {
    width: clamp(170px, 43vw, 210px) !important;
    max-height: 62px !important;
  }
  .site-header .nav-whatsapp { display: none !important; }
  .site-header .header-whatsapp {
    display: flex !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    padding: 5px 7px !important;
    border-radius: 12px !important;
    line-height: 1.1 !important;
  }
  .site-header .header-whatsapp span {
    font-size: 7px !important;
    letter-spacing: .08em !important;
  }
  .site-header .header-whatsapp strong {
    font-size: 11px !important;
    letter-spacing: .005em !important;
  }
  .site-header .site-nav { justify-content: flex-start !important; }
  .site-header .site-nav.is-open {
    left: auto !important;
    right: 12px !important;
    width: min(238px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    transform: none !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand img { width: 158px !important; }
  .site-header .header-whatsapp {
    width: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
  }
  .site-header .header-whatsapp strong { font-size: 10px !important; }
}

/* Header refinement 2026-07-18: final visual source of truth */
.site-header[data-header] {
  height: 76px !important;
  min-height: 76px !important;
  padding: 0 clamp(20px, 3.2vw, 44px) !important;
  background: rgba(246, 250, 255, 0.94) !important;
  border-bottom: 1px solid rgba(24, 67, 119, 0.12) !important;
  box-shadow: 0 8px 28px rgba(11, 42, 82, 0.08) !important;
}

.site-header[data-header] .header-inner {
  width: min(1360px, 100%) !important;
  min-height: 76px !important;
  padding: 8px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(18px, 2vw, 32px) !important;
}

.site-header[data-header] .brand img {
  width: clamp(210px, 17vw, 270px) !important;
  height: auto !important;
  max-height: 52px !important;
  filter: none !important;
  opacity: 1 !important;
}

.site-header[data-header] .site-nav {
  margin-left: auto !important;
  gap: clamp(8px, 1vw, 14px) !important;
}

.site-header[data-header] .site-nav a:not(.nav-whatsapp) {
  padding: 10px 14px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  color: #15324f !important;
  transition: color 160ms ease, background 160ms ease !important;
}

.site-header[data-header] .site-nav a:not(.nav-whatsapp):hover,
.site-header[data-header] .site-nav a:not(.nav-whatsapp).is-active {
  color: #0759a7 !important;
  background: rgba(13, 103, 184, 0.08) !important;
}

.site-header[data-header] .site-nav a:not(.nav-whatsapp)::after {
  display: none !important;
}

.site-header[data-header] .site-nav .nav-whatsapp {
  width: 174px !important;
  min-width: 174px !important;
  height: 44px !important;
  margin-left: 4px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #1484d4 0%, #0755a2 100%) !important;
  box-shadow: 0 8px 18px rgba(7, 85, 162, 0.22) !important;
}

@media (max-width: 900px) {
  .site-header[data-header] {
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 10px !important;
  }

  .site-header[data-header] .header-inner {
    min-height: 68px !important;
    padding: 7px 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 8px !important;
  }

  .site-header[data-header] .brand {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .site-header[data-header] .brand img {
    width: min(100%, 166px) !important;
    max-width: 166px !important;
    max-height: 42px !important;
  }

  .site-header[data-header] .header-whatsapp {
    width: 122px !important;
    min-width: 122px !important;
    height: 40px !important;
    padding: 5px 8px !important;
    border-radius: 12px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1484d4 0%, #0755a2 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.46) !important;
    box-shadow: 0 7px 16px rgba(7, 85, 162, 0.2) !important;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 7.5px !important;
    letter-spacing: 0.08em !important;
    opacity: 0.86 !important;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 10.5px !important;
    line-height: 1.1 !important;
  }

  .site-header[data-header] .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(32, 77, 127, 0.2) !important;
    box-shadow: 0 6px 14px rgba(11, 42, 82, 0.1) !important;
  }

  .site-header[data-header] .menu-toggle span {
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #123b66 !important;
  }

  .site-header[data-header] .site-nav {
    top: 76px !important;
    right: 10px !important;
    width: min(260px, calc(100vw - 20px)) !important;
    padding: 10px !important;
    gap: 7px !important;
    border-radius: 16px !important;
    background: rgba(248, 251, 255, 0.98) !important;
  }

  .site-header[data-header] .site-nav a:not(.nav-whatsapp) {
    padding: 12px 14px !important;
    font-size: 14px !important;
    background: #fff !important;
  }
}

@media (max-width: 390px) {
  .site-header[data-header] .brand img {
    width: min(100%, 142px) !important;
    max-width: 142px !important;
  }

  .site-header[data-header] .header-whatsapp {
    width: 104px !important;
    min-width: 104px !important;
    padding-inline: 6px !important;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 9.2px !important;
  }
}

/* Waterjet module synchronized from the independent site, 20260718. */
.detail-intro-points {
  max-width: 780px;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.detail-intro-points li {
  position: relative;
  padding-left: 18px;
  color: #53647a;
  font-size: 14.5px;
  line-height: 1.62;
}

.detail-intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.visual-card-grid-views .visual-card > .protected-image-frame {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #eef4fa;
  line-height: 0;
}

.visual-card-grid-views .visual-card > .protected-image-frame img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef4fa;
}
@media (max-width: 760px) {
  .visual-card-grid-views .visual-card .protected-image-frame {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .visual-card-grid-views .visual-card img,
  .visual-card-grid-config .visual-card img {
    width: calc(100% + 24px);
    max-width: none;
    margin: -12px -12px 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .visual-card-grid-views .visual-card .protected-image-frame img {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 !important;
    background: transparent;
  }
}
.frame-structure-heading {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-top: 24px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.96)),
    linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.08), transparent 42%);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.16);
  border-radius: 8px;
  box-shadow:
    0 14px 32px rgba(7, 31, 88, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.frame-structure-heading h4 {
  max-width: none;
}

.frame-structure-heading p:not(.eyebrow) {
  max-width: none;
}

.frame-structure-grid {
  width: 100%;
  margin-top: 14px;
}

.frame-structure-grid.visual-card-grid-views .visual-card > .protected-image-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.frame-structure-grid .visual-card h5 {
  font-size: 17px;
}

.frame-structure-grid .visual-card p {
  color: #536377;
}

@media (max-width: 760px) {
  .frame-structure-heading {
    margin-top: 18px;
    padding: 17px 16px;
  }

  .frame-structure-grid.visual-card-grid-views .visual-card > .protected-image-frame img {
    aspect-ratio: 16 / 9;
  }
}
/* Cam and electronic shedding reference, 20260718. */
.shedding-system-panel {
  margin: 42px 0 44px;
  padding: 8px 0 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.shedding-system-panel + .visual-config-subheading {
  margin-top: 0;
}

.shedding-system-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.shedding-system-heading h4 {
  margin: 0;
  color: #082967;
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 900;
  line-height: 1.14;
  text-wrap: balance;
}

.shedding-system-heading > p {
  max-width: 920px;
  margin: 0;
  color: #536579;
  font-size: 14.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

.shedding-system-visual {
  width: min(100%, 640px);
  margin: 22px auto 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.shedding-system-visual .protected-image-frame {
  width: 100%;
  padding: 10px 0 3px;
  background: transparent;
}

.shedding-system-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 200 / 81;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.shedding-system-visual figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 7px;
  align-items: baseline;
  justify-content: flex-end;
  padding: 10px 4px 0;
  background: transparent;
  border-top: 0;
  direction: ltr;
  text-align: right;
}

.shedding-system-visual figcaption span {
  color: #a81024;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.shedding-system-visual figcaption strong {
  color: #183d71;
  font-size: 13px;
  line-height: 1.25;
}

.shedding-spec-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(var(--panel-accent-rgb), 0.24);
  border-radius: 7px;
  box-shadow:
    0 12px 26px rgba(9, 42, 99, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  overscroll-behavior-inline: contain;
  scrollbar-color: #8fa8c4 #edf3f8;
  scrollbar-width: thin;
}

.shedding-spec-table-wrap:focus-visible {
  outline: 3px solid rgba(31, 101, 174, 0.3);
  outline-offset: 3px;
}

.shedding-spec-table {
  width: 100%;
  min-width: 790px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  color: #263a52;
  font-variant-numeric: tabular-nums;
}

.shedding-spec-table th,
.shedding-spec-table td {
  border-inline-end: 1px solid #d5e0eb;
}

.shedding-spec-table tr > :last-child {
  border-inline-end: 0;
}

.shedding-spec-table thead th {
  padding: 10px 9px;
  background: #123f76;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.shedding-spec-table thead th:first-child {
  width: 20%;
  background: #0a3263;
  text-align: left;
}

.shedding-spec-table tbody th,
.shedding-spec-table tbody td {
  padding: 8px 9px;
  border-top: 1px solid #dbe4ed;
  font-size: 11.75px;
  line-height: 1.24;
}

.shedding-spec-table tbody th {
  background: #f2f6fa;
  color: #23384f;
  font-weight: 800;
  text-align: left;
}

.shedding-spec-table tbody td {
  background: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.shedding-spec-table tbody tr:nth-child(even) th {
  background: #e9f0f6;
}

.shedding-spec-table tbody tr:nth-child(even) td {
  background: #f6f9fc;
}

.shedding-system-note {
  margin: 13px 2px 0;
  color: #6a7889;
  font-size: 11.5px;
  line-height: 1.5;
}

html[lang="ar"] .shedding-system-heading,
html[lang="ar"] .shedding-system-note {
  text-align: right;
}

html[lang="ar"] .shedding-spec-table thead th:first-child,
html[lang="ar"] .shedding-spec-table tbody th {
  text-align: right;
}

@media (max-width: 980px) {
  .shedding-system-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

}

@media (max-width: 760px) {
  .shedding-system-panel {
    margin: 44px 0 42px;
    padding: 22px 0 20px;
    border-top: 1px solid rgba(18, 63, 118, 0.16);
    border-bottom: 1px solid rgba(18, 63, 118, 0.16);
  }

  .shedding-system-heading h4 {
    font-size: clamp(21px, 6.3vw, 27px);
    line-height: 1.16;
  }

  .shedding-system-heading > p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .shedding-system-visual {
    width: calc(70% + 17px);
    margin: 16px auto 0;
  }

  .shedding-system-visual .protected-image-frame {
    padding: 9px 0 2px;
  }

  .shedding-system-visual figcaption {
    padding: 9px 2px 0;
  }

  .shedding-spec-table-wrap {
    width: 100%;
    margin: 16px 0 0;
    overflow-x: hidden;
    border-color: rgba(18, 63, 118, 0.24);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(9, 42, 99, 0.09);
    scroll-snap-type: none;
    touch-action: auto;
  }

  .shedding-spec-table {
    width: 100%;
    min-width: 0;
  }

  .shedding-spec-table thead th {
    padding: 5px 2px;
    font-size: 6.6px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .shedding-spec-table tbody th,
  .shedding-spec-table tbody td {
    padding: 4px 2px;
    font-size: 6.9px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .shedding-spec-table thead th:first-child {
    width: 24%;
    font-size: 6.2px;
    line-height: 1.1;
  }

  .shedding-spec-table tbody th {
    padding-inline: 2px;
    font-size: 6.9px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .shedding-spec-table thead th:first-child,
  .shedding-spec-table tbody th {
    position: static;
    inset-inline-start: auto;
    z-index: auto;
    box-shadow: none;
  }

  html[dir="rtl"] .shedding-spec-table thead th:first-child,
  html[dir="rtl"] .shedding-spec-table tbody th {
    box-shadow: none;
  }

  .shedding-system-note {
    margin-top: 12px;
  }
}

/* Per-image art direction keeps each configuration component in its clearest view. */
.visual-card-grid-config .visual-card img {
  object-position: var(--config-focus-desktop, 50% 50%);
}

.visual-card-grid-config img[src*="waterjet-config-copper-components"] {
  --config-focus-desktop: 52% 50%;
  --config-focus-mobile: 52% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-planetary-leno"] {
  --config-focus-desktop: 50% 49%;
  --config-focus-mobile: 50% 47%;
}

.visual-card-grid-config img[src*="waterjet-config-bearings"] {
  --config-focus-desktop: 50% 48%;
  --config-focus-mobile: 50% 48%;
}

.visual-card-grid-config img[src*="waterjet-config-temple-support"] {
  --config-focus-desktop: 52% 50%;
  --config-focus-mobile: 52% 48%;
}

.visual-card-grid-config img[src*="waterjet-config-cnc-water-guide"] {
  --config-focus-desktop: 50% 51%;
  --config-focus-mobile: 50% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-aluminum-blower"] {
  --config-focus-desktop: 56% 50%;
  --config-focus-mobile: 55% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-hmi"] {
  --config-focus-desktop: 50% 54%;
  --config-focus-mobile: 50% 52%;
}

.visual-card-grid-config img[src*="waterjet-config-weft-feeder"] {
  --config-focus-desktop: 50% 50%;
  --config-focus-mobile: 50% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-water-jet-valve"] {
  --config-focus-desktop: 57% 50%;
  --config-focus-mobile: 56% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-angle-sensor"] {
  --config-focus-desktop: 50% 62%;
  --config-focus-mobile: 50% 62%;
}

.visual-card-grid-config img[src*="waterjet-config-elo-etu"] {
  --config-focus-desktop: 50% 50%;
  --config-focus-mobile: 50% 50%;
}

.visual-card-grid-config img[src*="waterjet-config-direct-drive-motor"] {
  --config-focus-desktop: 50% 54%;
  --config-focus-mobile: 50% 52%;
}

@media (max-width: 760px) {
  .visual-card-grid-config .visual-card img {
    object-position: var(--config-focus-mobile, var(--config-focus-desktop, 50% 50%));
  }
}


/* Single WhatsApp header layout 2026-07-18 */
.site-header[data-header] .header-whatsapp {
  flex: 0 0 174px !important;
  display: inline-flex !important;
  width: 174px !important;
  min-width: 174px !important;
  height: 44px !important;
  padding: 6px 12px !important;
  border-radius: 12px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1689d8 0%, #07519c 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 8px 18px rgba(7, 81, 156, 0.22) !important;
  transition: transform 160ms ease, box-shadow 160ms ease !important;
}

.site-header[data-header] .header-whatsapp:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 11px 22px rgba(7, 81, 156, 0.26) !important;
}

.site-header[data-header] .header-whatsapp span {
  font-size: 8px !important;
  line-height: 1 !important;
  letter-spacing: 0.11em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  opacity: 0.88 !important;
  white-space: nowrap !important;
}

.site-header[data-header] .header-whatsapp strong {
  font-size: 13px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  .site-header[data-header] .header-whatsapp {
    flex-basis: 122px !important;
    width: 122px !important;
    min-width: 122px !important;
    height: 40px !important;
    padding: 5px 8px !important;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 7.5px !important;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 10.5px !important;
  }
}

@media (max-width: 390px) {
  .site-header[data-header] .header-whatsapp {
    flex-basis: 104px !important;
    width: 104px !important;
    min-width: 104px !important;
    padding-inline: 6px !important;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 9.2px !important;
  }
}
