:root {
  --blue: #062b63;
  --blue-2: #0f4c8c;
  --red: #a91322;
  --green: #147d6a;
  --ink: #142236;
  --muted: #5d6f83;
  --line: #d5dfeb;
  --soft: #eef4f8;
  --paper: #f6f9fc;
  --surface: #ffffff;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(6, 24, 52, 0.12);
  --shadow-soft: 0 10px 28px rgba(6, 24, 52, 0.08);
  --shadow-hover: 0 18px 36px rgba(6, 24, 52, 0.15);
  --fabric-x: repeating-linear-gradient(90deg, rgba(6, 43, 99, 0.035) 0 1px, transparent 1px 16px);
  --fabric-y: repeating-linear-gradient(0deg, rgba(20, 125, 106, 0.026) 0 1px, transparent 1px 14px);
  --fabric-diagonal: repeating-linear-gradient(45deg, rgba(6, 43, 99, 0.014) 0 1px, transparent 1px 12px);
  --fabric-section:
    linear-gradient(180deg, rgba(244, 249, 252, 0.94), rgba(231, 240, 247, 0.94)),
    repeating-linear-gradient(90deg, rgba(6, 43, 99, 0.05) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(20, 125, 106, 0.034) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(45deg, rgba(6, 43, 99, 0.02) 0 1px, transparent 1px 12px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  padding-top: 72px;
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(249, 252, 254, 0.96), rgba(238, 244, 248, 0.96)),
    var(--fabric-x),
    var(--fabric-y),
    var(--fabric-diagonal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

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

main {
  background: var(--fabric-section);
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  user-select: text;
  -webkit-user-select: text;
  -webkit-touch-callout: default;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 40px;
  background: rgba(248, 251, 253, 0.94);
  border-bottom: 1px solid rgba(205, 218, 232, 0.9);
  box-shadow: 0 6px 18px rgba(6, 24, 52, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(232px, 17vw, 274px);
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-dark {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7)) drop-shadow(0 2px 5px rgba(5, 42, 88, 0.1));
}

.brand-logo-light {
  display: none;
  filter: drop-shadow(0 0 4px rgba(145, 210, 255, 0.2)) drop-shadow(0 2px 4px rgba(0, 10, 28, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #294057;
  font-size: 0.94rem;
  font-weight: 720;
  border-radius: 6px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: #e8f0f8;
}

.language-options {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 5px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(231, 240, 249, 0.94)),
    rgba(234, 242, 251, 0.92);
  border: 1px solid rgba(196, 213, 231, 0.95);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 10px 22px rgba(9, 34, 72, 0.08);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #24364d;
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.language-option.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #bd102a, #a90d22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 8px 18px rgba(174, 13, 34, 0.18);
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 6px 14px rgba(7, 29, 64, 0.1);
  transform: translateY(-1px);
}

.language-option.is-active:hover,
.language-option.is-active:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #c5142f, #a90d22);
}

.mobile-language-options.language-options {
  display: none;
}

.header-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  margin-left: 12px;
  padding: 0 14px;
  color: #20364d;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 249, 255, 0.54));
  border: 1px solid rgba(118, 161, 210, 0.72);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -3px 0 rgba(58, 146, 231, 0.24),
    0 8px 18px rgba(6, 24, 52, 0.1),
    0 0 18px rgba(43, 129, 215, 0.14);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-whatsapp::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 3px;
  height: 36%;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.header-whatsapp::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(106, 198, 255, 0.42), transparent);
  pointer-events: none;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  color: var(--blue);
  background: rgba(232, 240, 248, 0.9);
  border-color: rgba(6, 43, 99, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -3px 0 rgba(25, 111, 201, 0.34),
    0 10px 22px rgba(6, 24, 52, 0.12),
    0 0 22px rgba(43, 129, 215, 0.24);
}

.header-whatsapp strong {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-weight: 850;
}

.header-whatsapp span {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(3, 18, 42, 0.86) 0%, rgba(4, 25, 55, 0.7) 33%, rgba(4, 25, 55, 0.23) 64%, rgba(4, 25, 55, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(3, 18, 42, 0.1)),
    url("assets/factory-hero-textile-rolls-wide-light.jpg") center center / cover no-repeat,
    #04152d;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 18, 46, 0.02), rgba(3, 18, 46, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
  z-index: -1;
}

.hero-inner {
  width: min(1180px, calc(100% - 56px));
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 0 46px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 780px;
  padding-top: 0;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: #d72134;
  font-size: 0.82rem;
  font-weight: 860;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

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

p,
li,
td {
  text-wrap: pretty;
}

p {
  line-height: 1.52;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #f8fbff;
  font-size: 3.28rem;
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 18px;
  padding-bottom: 0.05em;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.3),
    0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 2.12rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  color: #18283c;
  font-size: 1.03rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 14px;
  color: rgba(236, 245, 255, 0.9);
  font-size: 1.04rem;
  font-weight: 450;
  line-height: 1.56;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #8e101b);
  box-shadow: 0 12px 24px rgba(165, 20, 32, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #8c101a;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 146px);
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-metrics div {
  height: 72px;
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 48, 92, 0.24), rgba(8, 28, 58, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(1px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.16rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
}

.hero-metrics span {
  color: #d9e7f5;
  font-size: 0.86rem;
  font-weight: 700;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.metric-tuck-in span,
.metric-spare-parts span {
  white-space: nowrap;
}

html[lang="tr"] .hero-metrics div,
html[lang="ru"] .hero-metrics div,
html[lang="ar"] .hero-metrics div {
  height: auto;
  min-height: 78px;
}

html[lang="tr"] .hero-metrics strong,
html[lang="ru"] .hero-metrics strong,
html[lang="ar"] .hero-metrics strong,
html[lang="tr"] .hero-metrics span,
html[lang="ru"] .hero-metrics span,
html[lang="ar"] .hero-metrics span {
  white-space: normal;
}

html[lang="tr"] .hero-metrics strong,
html[lang="ru"] .hero-metrics strong,
html[lang="ar"] .hero-metrics strong {
  line-height: 1.08;
}

html[lang="tr"] .hero-metrics span,
html[lang="ru"] .hero-metrics span,
html[lang="ar"] .hero-metrics span {
  line-height: 1.18;
}

.hero-metrics .metric-tuck-in {
  grid-column: auto;
}

.hero-metrics .metric-spare-parts {
  grid-column: 3 / span 2;
}

.hero-origin-note {
  width: min(100%, 614px);
  max-width: min(100%, 614px);
  margin: 0;
  padding: 0;
  color: #ffd96a;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.01em;
  line-height: 1.28;
  text-align: left;
  text-shadow:
    0 1px 9px rgba(0, 0, 0, 0.42),
    0 0 10px rgba(255, 217, 106, 0.18);
}

.hero-origin-note span {
  display: block;
}

.hero-origin-country {
  white-space: nowrap;
}

html[lang="ar"] .hero-copy,
html[lang="ar"] .section-heading,
html[lang="ar"] .intro-stack,
html[lang="ar"] .gallery-card div,
html[lang="ar"] .workshop-card div,
html[lang="ar"] .spec-copy,
html[lang="ar"] .fabric-range-inline,
html[lang="ar"] .support-stack,
html[lang="ar"] .faq-item,
html[lang="ar"] .inquiry-copy,
html[lang="ar"] .media-rights {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] .hero-origin-note {
  text-align: right;
}

@media (min-width: 861px) {
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 760px;
    font-size: 3.08rem;
    line-height: 1.1;
  }

  html[lang="ar"] .hero-copy {
    width: min(700px, 54vw);
    max-width: min(700px, 54vw);
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-72px);
  }

  html[lang="ar"] .hero h1 {
    max-width: 700px;
    font-size: 3rem;
    line-height: 1.16;
  }

  html[lang="ar"] .hero-text,
  html[lang="ar"] .hero-origin-note {
    max-width: min(100%, 620px);
  }

  html[lang="ar"] .hero-metrics {
    grid-template-columns: repeat(4, 132px);
    width: max-content;
    margin-left: 0;
    margin-right: 0;
  }
}

html[lang="ar"] .check-list li {
  padding-left: 0;
  padding-right: 24px;
}

html[lang="ar"] .check-list li::before {
  left: auto;
  right: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.intro-band {
  background:
    linear-gradient(135deg, rgba(6, 43, 99, 0.98), rgba(9, 58, 112, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  padding: 42px 0;
  align-items: start;
}

.intro-grid h2,
.intro-grid .section-kicker {
  color: var(--white);
}

.intro-grid .section-kicker {
  color: #ffccd1;
}

.intro-stack {
  display: grid;
  gap: 10px;
}

.intro-stack p {
  margin: 0;
  color: #dce7f4;
  font-size: 1rem;
  line-height: 1.46;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #edf4fb;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.48;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 2px;
  transform: translateY(-50%);
}

.feature-section,
.applications {
  padding: 46px 0;
  background: var(--fabric-section);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-heading p:last-child {
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.feature-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.application-grid article {
  min-height: 152px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 253, 0.86)),
    var(--fabric-x),
    var(--fabric-y);
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  column-gap: 12px;
  row-gap: 9px;
  box-shadow: var(--shadow-soft), 0 2px 0 rgba(3, 42, 105, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 35%),
    linear-gradient(315deg, rgba(22, 128, 108, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c5d3e5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 254, 0.94)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow:
    var(--shadow-hover),
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 -2px 0 rgba(6, 24, 52, 0.05) inset;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card .feature-number,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-number {
  grid-column: 1;
  grid-row: 1;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0d6b5b);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(20, 125, 106, 0.22);
  font-weight: 900;
}

.feature-card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
}

.feature-card p {
  grid-column: 1 / -1;
}

.feature-card p,
.application-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.46;
}

.spec-band {
  padding: 40px 0;
  background: var(--fabric-section);
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.spec-copy {
  position: sticky;
  top: 104px;
}

.spec-copy p {
  color: #4b5f75;
  font-size: 0.98rem;
  line-height: 1.5;
}

.fabric-range-inline {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.fabric-range-inline .section-kicker {
  margin: 0 0 1px;
  color: var(--red);
  font-size: 0.78rem;
}

.fabric-range-inline article {
  position: relative;
  overflow: hidden;
  padding: 11px 14px 11px 16px;
  border: 1px solid #d6e2ef;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.9)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: 0 10px 24px rgba(6, 43, 99, 0.065);
}

.fabric-range-inline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.fabric-range-inline article:nth-of-type(2)::before {
  background: var(--green);
}

.fabric-range-inline article:nth-of-type(3)::before {
  background: var(--red);
}

.fabric-range-inline h3 {
  margin: 0 0 5px;
  color: #16263a;
  font-size: 0.98rem;
  line-height: 1.18;
}

.fabric-range-inline article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.32;
}

.spec-table-wrap {
  overflow: auto;
  border: 1px solid #cedceb;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 252, 254, 0.88)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.spec-table th,
.spec-table td {
  padding: 9px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:not(.spec-group):hover th,
.spec-table tr:not(.spec-group):hover td {
  background: #f8fbfd;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 32%;
  color: var(--blue);
  background: #f5f8fb;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.spec-table .spec-group th {
  width: auto;
  padding: 9px 14px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
}

.spec-table td {
  color: #26384f;
  font-size: 0.95rem;
  font-weight: 620;
}

.factory-gallery-section {
  padding: 48px 0;
  background: var(--fabric-section);
}

.gallery-heading {
  max-width: 760px;
}

.gallery-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 253, 0.86)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft), 0 2px 0 rgba(3, 42, 105, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(3, 42, 105, 0.1), transparent 44%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: #c5d3e5;
  box-shadow:
    var(--shadow-hover),
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 -2px 0 rgba(6, 24, 52, 0.05) inset;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card.is-image-selectable,
.workshop-card.is-image-selectable {
  --image-selection-rgb: 15, 91, 154;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.gallery-card.is-image-selectable:focus-visible,
.workshop-card.is-image-selectable:focus-visible {
  outline: 3px solid rgba(var(--image-selection-rgb), 0.28);
  outline-offset: 3px;
}

.gallery-card.is-image-selectable.is-image-selected,
.workshop-card.is-image-selectable.is-image-selected {
  border-color: rgba(var(--image-selection-rgb), 0.68);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 28px -22px rgba(8, 39, 101, 0.72),
    0 17px 24px -17px rgba(var(--image-selection-rgb), 0.66),
    inset 0 -3px 0 rgba(var(--image-selection-rgb), 0.15),
    inset 0 0 0 1px rgba(var(--image-selection-rgb), 0.1);
}

.gallery-card.is-image-selectable.is-image-selected::after {
  opacity: 0.42;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card.is-image-selectable,
  .workshop-card.is-image-selectable {
    transition: none;
  }
}

.gallery-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  background: #e7eff5;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-wide img {
  height: 268px;
}

.gallery-card-portrait {
  grid-row: span 2;
}

.gallery-card-portrait img {
  width: 100%;
  height: 532px;
  margin: 0;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  border-radius: 0;
}

.gallery-card-fabric-edge img {
  height: 188px;
  object-position: center 64%;
}

.gallery-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 16px 15px;
}

.gallery-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
}

.factory-video-panel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(203, 215, 230, 0.9);
}

.video-heading {
  max-width: 780px;
}

.video-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.factory-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 253, 0.86)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft), 0 2px 0 rgba(3, 42, 105, 0.04);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0e1f34;
  cursor: zoom-in;
  object-fit: cover;
}

.video-card video.video-focus-upper {
  object-position: center 38%;
}

.video-card video.video-focus-left-higher {
  object-position: center 34%;
}

.video-card video.video-focus-lower {
  object-position: center 58%;
}

.video-card div {
  padding: 13px 16px 15px;
}

.video-card h3 {
  margin-bottom: 5px;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
}

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

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 16, 31, 0.88);
  backdrop-filter: blur(10px);
}

.video-lightbox figure {
  width: min(1280px, 96vw);
  margin: 0;
}

.video-lightbox video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 112px);
  background: #0e1f34;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.video-lightbox figcaption {
  margin: 10px 0 0;
  color: #eef4f8;
  font-size: 0.96rem;
  font-weight: 760;
  text-align: center;
}

.video-lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 15px;
  color: var(--white);
  background: rgba(169, 19, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
}

.video-lightbox-close:hover,
.video-lightbox-close:focus-visible {
  background: #8e101b;
}

body.modal-open {
  overflow: hidden;
}

.workshop-section {
  padding: 48px 0;
  background: var(--fabric-section);
}

.workshop-heading {
  max-width: 790px;
}

.workshop-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.workshop-showcase {
  display: grid;
  gap: 14px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.workshop-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 253, 0.86)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft), 0 2px 0 rgba(3, 42, 105, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workshop-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: var(--workshop-image-height, 238px);
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(6, 43, 99, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(20, 125, 106, 0.11), transparent 46%),
    rgba(245, 249, 252, 0.04);
  mix-blend-mode: soft-light;
}

.workshop-card:hover {
  transform: translateY(-5px);
  border-color: #c5d3e5;
  box-shadow:
    var(--shadow-hover),
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 -2px 0 rgba(6, 24, 52, 0.05) inset;
}

.workshop-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  background: #e7eff5;
  filter: saturate(0.82) contrast(0.96) brightness(1.04);
}

.workshop-card-tall {
  --workshop-image-height: 410px;
}

.workshop-card-tall img {
  height: 410px;
  object-position: center 48%;
}

.workshop-card div {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 16px 15px;
}

.workshop-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.workshop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
}

.application-grid article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-top: 5px solid var(--blue-2);
  box-shadow: var(--shadow-soft), 0 2px 0 rgba(3, 42, 105, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.application-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), transparent 35%),
    linear-gradient(315deg, rgba(3, 42, 105, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.application-grid article h3,
.application-grid article p {
  position: relative;
  z-index: 1;
}

.application-grid article:hover {
  transform: translateY(-6px);
  border-color: #c5d3e5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 254, 0.94)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow:
    var(--shadow-hover),
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 -2px 0 rgba(6, 24, 52, 0.05) inset;
}

.application-grid article:hover::after {
  opacity: 1;
}

.application-grid article:nth-child(2) {
  border-top-color: var(--green);
}

.application-grid article:nth-child(3) {
  border-top-color: var(--red);
}

.proof-band {
  padding: 46px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 39, 59, 0.98), rgba(14, 49, 79, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 16px);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  align-items: start;
}

.proof-layout h2,
.proof-layout .section-kicker {
  color: var(--white);
}

.proof-layout .section-kicker {
  color: #f3a0aa;
}

.support-stack > p {
  margin: 0;
  color: #d7e0ec;
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.support-points article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(198, 219, 237, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.support-points h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 0.98rem;
}

.support-points p {
  margin: 0;
  color: rgba(222, 232, 243, 0.9);
  font-size: 0.9rem;
  line-height: 1.44;
}

.faq-section {
  padding: 48px 0;
  background: var(--fabric-section);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.faq-layout .section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 253, 0.84)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.48;
}

.inquiry-section {
  padding: 48px 0;
  background: var(--fabric-section);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
}

.inquiry-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

address {
  margin-top: 14px;
  color: #2f455f;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.factory-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 12px;
  color: #173b34;
  background: rgba(20, 125, 106, 0.1);
  border: 1px solid rgba(20, 125, 106, 0.24);
  border-radius: 8px;
  font-weight: 800;
}

.factory-whatsapp a {
  color: var(--green);
  font-weight: 900;
}

.factory-whatsapp a:hover,
.factory-whatsapp a:focus-visible {
  color: #0d6d5d;
  text-decoration: underline;
}

.inquiry-form {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 252, 254, 0.88)),
    var(--fabric-x),
    var(--fabric-y);
  box-shadow: var(--shadow-soft);
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: #26384f;
  font-size: 0.94rem;
  font-weight: 760;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cbd7e6;
  border-radius: 6px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 112px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(3, 42, 105, 0.1);
}

.form-button {
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 760;
}

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: var(--blue);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-product-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.18rem, 2.1vw, 1.5rem);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.footer-product-model {
  margin: 0;
  color: #d7e5f8;
  font-size: clamp(0.88rem, 1.45vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
}

.media-rights {
  margin-top: 14px;
  padding-top: 12px;
  color: rgba(215, 229, 248, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.48;
}

@media (max-width: 1080px) {
  .hero {
    min-height: 590px;
  }

  .hero-inner {
    min-height: 590px;
  }

  h1 {
    max-width: 700px;
    font-size: 3.15rem;
  }

  h2 {
    font-size: 1.98rem;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(560px, 100%);
  }

  .factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-wide {
    grid-column: span 2;
  }

  .gallery-card-wide img {
    height: 270px;
  }

  .gallery-card-portrait {
    grid-row: auto;
  }

  .gallery-card-portrait img {
    width: 100%;
    height: 500px;
    margin: 0;
  }

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

  .workshop-card-tall {
    --workshop-image-height: 340px;
  }

  .workshop-card-tall img {
    height: 340px;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 66px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(172px, 208px) minmax(0, 1fr) 40px;
    grid-template-areas:
      "brand contact menu"
      "language language language";
    align-items: center;
    column-gap: 10px;
    row-gap: 7px;
    min-height: 66px;
    padding: 10px 18px;
    background:
      linear-gradient(90deg, rgba(5, 20, 43, 0.44), rgba(8, 43, 80, 0.3)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 8px 20px rgba(3, 18, 42, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(14px) saturate(126%);
    -webkit-backdrop-filter: blur(14px) saturate(126%);
  }

  .site-header.is-language-hidden {
    row-gap: 0;
  }

  .brand {
    grid-area: brand;
    width: 100%;
    min-width: 0;
    flex: initial;
  }

  .brand-logo {
    width: min(100%, 194px);
    max-height: 24px;
  }

  .brand-logo-dark {
    display: none;
  }

  .brand-logo-light {
    display: block;
  }

  .header-whatsapp {
    grid-area: contact;
    order: 2;
    width: fit-content;
    max-width: min(100%, 264px);
    min-width: 0;
    min-height: 32px;
    margin: 0;
    padding: 0 6px;
    justify-self: center;
    justify-content: center;
    gap: 3px;
    color: rgba(245, 250, 255, 0.94);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045));
    border-color: rgba(178, 224, 255, 0.34);
    border-radius: 7px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -3px 0 rgba(94, 189, 255, 0.46),
      0 7px 16px rgba(0, 0, 0, 0.1),
      0 0 18px rgba(83, 174, 255, 0.24);
    font-size: 0.76rem;
    font-weight: 820;
  }

  .header-whatsapp span {
    color: rgba(207, 221, 236, 0.82);
  }

  .header-whatsapp strong {
    color: #ffffff;
    font-weight: 860;
    text-shadow: 0 1px 8px rgba(91, 188, 255, 0.24);
  }

  .header-whatsapp:hover,
  .header-whatsapp:focus-visible {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    border-color: rgba(177, 224, 255, 0.58);
  }

  .nav-toggle {
    grid-area: menu;
    order: 3;
    display: block;
    margin-left: 0;
    justify-self: end;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -2px 0 rgba(91, 177, 255, 0.2),
      0 0 12px rgba(83, 174, 255, 0.12);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(179, 224, 255, 0.68);
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
      inset 0 -2px 0 rgba(91, 177, 255, 0.36),
      0 0 18px rgba(83, 174, 255, 0.28);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 120px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background:
      linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(237, 244, 249, 0.96)),
      var(--fabric-x),
      var(--fabric-y);
    border: 1px solid rgba(190, 205, 222, 0.9);
    border-radius: 8px;
    box-shadow:
      0 20px 46px rgba(3, 18, 42, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.32) inset;
    z-index: 90;
    transition: top 180ms ease;
  }

  .site-header.is-language-hidden .site-nav {
    top: 72px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav a {
    min-height: 46px;
  }

  .site-nav > .language-options {
    display: none;
  }

  .mobile-language-options.language-options {
    grid-area: language;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: calc(100% + 36px);
    margin: -2px -18px -10px;
    padding: 2px 18px 3px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-height: 38px;
    overflow: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      max-height 180ms ease,
      margin 180ms ease,
      padding 180ms ease,
      border-color 180ms ease;
  }

  .site-header.is-language-hidden .language-options {
    max-height: 0;
    margin-top: 0;
    margin-bottom: -10px;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .language-option {
    min-height: 28px;
    padding: 0 6px;
    color: rgba(236, 246, 255, 0.9);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 6px;
    font-size: clamp(0.64rem, 2.35vw, 0.78rem);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  }

  .language-option:hover,
  .language-option:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.16) inset,
      0 4px 10px rgba(3, 18, 42, 0.08);
  }

  .language-option.is-active,
  .language-option.is-active:hover,
  .language-option.is-active:focus-visible {
    color: #ffffff;
    background: linear-gradient(180deg, #c5142f, #a40d22);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 6px 14px rgba(125, 8, 24, 0.16);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(31, 52, 70, 0.48), rgba(93, 112, 125, 0.2) 48%, rgba(35, 57, 75, 0.38)),
      linear-gradient(90deg, rgba(20, 43, 65, 0.66), rgba(106, 125, 137, 0.12) 58%, rgba(52, 75, 91, 0.18)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px),
      url("assets/factory-hero-textile-rolls-wide-light.jpg") 62% center / cover no-repeat,
      #8d9ba5;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(235, 241, 244, 0.12), rgba(30, 51, 69, 0.05)),
      repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 14px);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 36px);
    max-width: 720px;
    padding: 58px 0 34px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 12px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  .hero-title-line {
    white-space: normal;
  }

  h1 {
    max-width: 620px;
    font-size: 2.75rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-text {
    margin-bottom: 12px;
    font-size: 1rem;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .hero-metrics .metric-tuck-in,
  .hero-metrics .metric-spare-parts {
    grid-column: auto;
  }

  .hero-metrics div {
    min-height: 74px;
  }

  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    font-size: 1.04rem;
    line-height: 1.08;
    white-space: normal;
  }

  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .hero-origin-note {
    max-width: min(100%, 560px);
    font-size: 0.82rem;
  }

  .section-shell {
    width: calc(100% - 36px);
    max-width: 720px;
  }

  .intro-grid,
  .proof-layout,
  .faq-layout,
  .spec-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-grid,
  .feature-section,
  .factory-gallery-section,
  .workshop-section,
  .spec-band,
  .applications,
  .proof-band,
  .faq-section,
  .inquiry-section {
    padding: 38px 0;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading p:last-child {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .feature-grid,
  .factory-gallery,
  .factory-video-grid,
  .workshop-grid,
  .support-points,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .gallery-card-wide img {
    height: 232px;
  }

  .gallery-card-portrait img {
    width: 100%;
    height: 430px;
    margin: 0;
  }

  .workshop-grid {
    gap: 14px;
  }

  .workshop-card {
    --workshop-image-height: 230px;
  }

  .workshop-card img {
    height: 230px;
  }

  .workshop-card-tall {
    --workshop-image-height: 330px;
  }

  .workshop-card-tall img {
    height: 330px;
  }

  .feature-card,
  .application-grid article {
    min-height: 0;
  }

  .feature-number {
    margin: 0;
  }

  .spec-copy {
    position: static;
  }

}

@media (max-width: 520px) {
  body {
    padding-top: 64px;
  }

  section[id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(136px, 144px) minmax(0, 1fr) 36px;
    grid-template-areas:
      "brand contact menu"
      "language language language";
    align-items: center;
    column-gap: 6px;
    row-gap: 6px;
    min-height: 64px;
    padding: 9px 8px;
    overflow: visible;
  }

  .site-header.is-language-hidden {
    row-gap: 0;
  }

  .brand {
    grid-area: brand;
    flex: initial;
    width: 100%;
    min-width: 0;
  }

  .brand-logo {
    width: 100%;
    max-height: 22px;
  }

  .header-whatsapp {
    grid-area: contact;
    order: 2;
    flex: 0 0 auto;
    justify-content: center;
    gap: 2px;
    width: max-content;
    max-width: calc(100% - 2px);
    min-width: 0;
    min-height: 31px;
    margin: 0;
    padding: 0 2px;
    justify-self: end;
    color: rgba(248, 252, 255, 0.94);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(178, 224, 255, 0.34);
    border-radius: 7px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -3px 0 rgba(82, 184, 255, 0.48),
      0 7px 16px rgba(0, 0, 0, 0.1),
      0 0 18px rgba(72, 168, 255, 0.25);
    font-size: clamp(0.56rem, 2vw, 0.66rem);
    font-weight: 840;
    line-height: 1;
    white-space: nowrap;
  }

  .header-whatsapp span {
    display: inline;
    color: rgba(216, 232, 247, 0.88);
    font-size: 0.78em;
  }

  .header-whatsapp strong {
    flex: 0 0 auto;
    font-size: clamp(0.68rem, 2.2vw, 0.74rem);
    letter-spacing: 0;
  }

  .nav-toggle {
    grid-area: menu;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin-left: 0;
    justify-self: end;
  }

  .mobile-language-options.language-options {
    gap: 3px;
    width: calc(100% + 16px);
    margin: -2px -8px -8px;
    padding: 2px 8px 3px;
    max-height: 32px;
  }

  .mobile-language-options .language-option {
    min-height: 25px;
    padding: 0 3px;
    font-size: clamp(0.58rem, 2.25vw, 0.7rem);
  }

  .hero {
    min-height: 790px;
    background:
      linear-gradient(180deg, rgba(3, 18, 42, 0.86) 0%, rgba(4, 22, 50, 0.75) 37%, rgba(4, 20, 45, 0.82) 100%),
      radial-gradient(ellipse at 70% 52%, rgba(255, 255, 255, 0.11), transparent 42%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 18px),
      #04152d;
  }

  .hero::before {
    inset: 246px 0 auto;
    height: 284px;
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(3, 18, 42, 0.42) 0%, rgba(3, 18, 42, 0.08) 22%, rgba(3, 18, 42, 0.025) 72%, rgba(3, 18, 42, 0.26) 100%),
      linear-gradient(180deg, rgba(3, 18, 42, 0.16) 0%, rgba(3, 18, 42, 0.02) 36%, rgba(3, 18, 42, 0.08) 72%, rgba(3, 18, 42, 0.32) 100%),
      url("assets/factory-hero-textile-rolls-wide-light.jpg") 76% center / auto 284px no-repeat;
    opacity: 1;
    filter: brightness(1.07) contrast(1.03) saturate(1.03);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
  }

  .hero::after {
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(3, 18, 46, 0.05)),
      repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 14px);
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 82px);
    overflow: auto;
  }

  .hero-inner {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
    min-height: 790px;
    padding: 28px 0 22px;
    justify-content: flex-start;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 380px);
    gap: 8px;
    margin-top: 300px;
  }

  .hero-metrics .metric-tuck-in,
  .hero-metrics .metric-spare-parts {
    grid-column: auto;
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(2n),
  .hero-metrics div:nth-last-child(-n + 2) {
    height: auto;
    min-height: 62px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
    backdrop-filter: blur(6px);
  }

  .hero-origin-note {
    width: fit-content;
    max-width: min(100%, 380px);
    margin-top: 0;
    padding: 0;
    font-size: 0.76rem;
    line-height: 1.34;
    letter-spacing: 0.01em;
    text-align: left;
    background: none;
    backdrop-filter: none;
  }

  h1 {
    font-size: clamp(1.72rem, 7.1vw, 2rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 1.42rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    line-height: 1.46;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 11px;
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .hero-metrics strong {
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.76rem;
  }

  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 70px;
    padding: 9px 9px;
  }

  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    font-size: 0.9rem;
    line-height: 1.08;
  }

  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .intro-grid,
  .feature-section,
  .factory-gallery-section,
  .workshop-section,
  .spec-band,
  .applications,
  .proof-band,
  .faq-section,
  .inquiry-section {
    padding: 26px 0;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading p:last-child,
  .spec-copy p,
  .inquiry-copy p {
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .feature-card,
  .application-grid article {
    padding: 14px;
  }

  .feature-card {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
  }

  .feature-card h3,
  .gallery-card h3,
  .workshop-card h3 {
    font-size: 0.98rem;
    line-height: 1.26;
  }

  .feature-card p,
  .gallery-card p,
  .video-card p,
  .workshop-card p,
  .application-grid p {
    font-size: 0.89rem;
    line-height: 1.46;
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
  }

  .fabric-range-inline {
    gap: 8px;
    margin-top: 12px;
  }

  .fabric-range-inline article {
    padding: 10px 12px 10px 15px;
  }

  .fabric-range-inline h3 {
    margin-bottom: 4px;
    font-size: 0.94rem;
  }

  .fabric-range-inline article p {
    font-size: 0.81rem;
    line-height: 1.34;
  }

  .spec-table {
    min-width: 0;
  }

  .spec-table,
  .spec-table tbody {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    display: grid;
    width: 100%;
  }

  .spec-table tr:not(.spec-group) {
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-table tr:not(.spec-group):last-child {
    border-bottom: 0;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .spec-table tr:not(.spec-group) th {
    padding: 9px 10px;
    background: rgba(245, 248, 251, 0.74);
    font-size: 0.76rem;
    line-height: 1.24;
  }

  .spec-table tr:not(.spec-group) td {
    padding: 9px 10px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .spec-table .spec-group th {
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .gallery-card img {
    height: 172px;
  }

  .gallery-card-wide img {
    height: 188px;
  }

  .gallery-card-fabric-edge img {
    height: 172px;
  }

  .gallery-card-portrait img {
    width: 100%;
    height: 370px;
    margin: 0;
  }

  .workshop-card {
    --workshop-image-height: 190px;
  }

  .workshop-card img {
    height: 190px;
  }

  .workshop-card-tall {
    --workshop-image-height: 300px;
  }

  .workshop-card-tall img {
    height: 300px;
  }

  .inquiry-form {
    padding: 16px;
  }

  .inquiry-form label {
    font-size: 0.9rem;
  }

  .media-rights {
    font-size: 0.78rem;
  }
}

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

  .brand {
    width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(98px, 106px) minmax(0, 1fr) 32px;
    gap: 5px;
    padding-inline: 7px;
  }

  .header-whatsapp {
    width: max-content;
    max-width: calc(100% - 2px);
    gap: 2px;
    min-height: 30px;
    padding: 0 2px;
    justify-self: end;
    font-size: clamp(0.54rem, 2.25vw, 0.6rem);
  }

  .header-whatsapp span {
    display: inline;
  }
}

/* 2026-08-07: cohesive responsive refinement without changing the page structure. */
:root {
  --section-space-desktop: 54px;
  --section-space-mobile: 30px;
  --media-card-radius: 7px;
}

.gallery-card,
.video-card,
.workshop-card {
  border-radius: var(--media-card-radius);
  box-shadow:
    0 10px 24px rgba(8, 34, 66, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.gallery-card div,
.video-card div,
.workshop-card div {
  padding: 14px 16px 16px;
}

.gallery-card h3,
.video-card h3,
.workshop-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-card p,
.video-card p,
.workshop-card p {
  font-size: 0.9rem;
  line-height: 1.48;
}

.gallery-card img,
.workshop-card img,
.video-card video {
  cursor: default;
}

.intro-grid,
.feature-section,
.factory-gallery-section,
.workshop-section,
.spec-band,
.applications,
.proof-band,
.faq-section,
.inquiry-section {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading p:last-child,
.inquiry-copy > p:not(.section-kicker):not(.factory-whatsapp) {
  max-width: 68ch;
  line-height: 1.55;
}

.inquiry-copy h2 {
  max-width: 620px;
}

@media (min-width: 861px) {
  .hero-copy {
    max-width: 720px;
  }

  .hero-metrics {
    margin-top: 16px;
  }

  .hero-metrics > div,
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    height: auto;
    min-height: 76px;
  }
}

@media (max-width: 860px) {
  .site-header[data-header] .mobile-language-options.language-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
  }

  .site-header[data-header] .mobile-language-options .language-option {
    width: 100%;
    min-width: 0;
    padding-inline: 2px;
    overflow: hidden;
    text-overflow: clip;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    width: calc(100% - 28px);
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero .eyebrow {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(1.76rem, 8.4vw, 2.2rem);
    line-height: 1.07;
  }

  .hero-text {
    margin-bottom: 8px;
    font-size: 0.91rem;
    line-height: 1.45;
  }

  .hero-origin-note {
    margin-bottom: 4px;
    font-size: 0.76rem;
    line-height: 1.24;
  }

  .hero-machine-stage {
    height: 154px;
    margin: 0 -10px 5px;
    background-size: auto 154px;
    filter: brightness(1.34) contrast(1.01) saturate(1.03);
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 6px;
    margin-top: 8px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    height: auto;
    min-height: 60px;
    padding: 7px 9px;
  }

  .hero-metrics strong,
  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    margin-bottom: 3px;
    font-size: clamp(0.78rem, 3.6vw, 0.9rem);
    line-height: 1.12;
  }

  .hero-metrics span,
  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: clamp(0.59rem, 2.7vw, 0.69rem);
    line-height: 1.18;
  }

  .intro-grid,
  .feature-section,
  .factory-gallery-section,
  .workshop-section,
  .spec-band,
  .applications,
  .proof-band,
  .faq-section,
  .inquiry-section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .section-heading {
    margin-bottom: 13px;
  }

  .section-heading h2,
  .inquiry-copy h2 {
    font-size: clamp(1.48rem, 7vw, 1.78rem);
    line-height: 1.14;
  }

  .section-heading p:last-child,
  .inquiry-copy > p:not(.section-kicker):not(.factory-whatsapp) {
    font-size: 0.91rem;
    line-height: 1.5;
  }

  .factory-gallery,
  .factory-video-grid,
  .workshop-grid {
    gap: 12px;
  }

  .gallery-card div,
  .video-card div,
  .workshop-card div {
    padding: 12px 14px 14px;
  }

  .gallery-card-wide img,
  .gallery-card img,
  .gallery-card-fabric-edge img,
  .workshop-card img {
    height: 220px;
  }

  .gallery-card-portrait img,
  .workshop-card-tall img {
    height: 330px;
  }
}

/* 2026-08-20: brighter footage with a deliberately visible aged-film surface. */
.hero > .hero-video {
  filter: brightness(1.07) contrast(1.09) saturate(0.68) sepia(0.12);
  animation: hero-frame-jump-strong 5.4s steps(1, end) infinite;
}

.hero::before {
  background:
    linear-gradient(90deg,
      rgba(2, 14, 33, 0.62) 0%,
      rgba(3, 21, 45, 0.46) 38%,
      rgba(3, 23, 48, 0.2) 70%,
      rgba(3, 23, 48, 0.06) 100%),
    linear-gradient(180deg, rgba(245, 221, 171, 0.035), rgba(2, 13, 29, 0.14));
}

.hero::after {
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(4, 8, 15, 0.25) 100%),
    linear-gradient(180deg, rgba(246, 218, 164, 0.075), rgba(31, 25, 18, 0.035)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 22px);
}

.hero-film-effect {
  mix-blend-mode: overlay;
}

.hero-film-effect::before {
  background-size: 126px 126px;
  opacity: 0.5;
  filter: contrast(1.75);
  animation: hero-film-grain-strong 0.14s steps(2, end) infinite;
}

.hero-film-effect::after {
  background:
    linear-gradient(90deg,
      transparent 0 8.6%,
      rgba(255, 255, 255, 0.25) 8.72%,
      transparent 8.9% 31.2%,
      rgba(8, 13, 19, 0.34) 31.32%,
      transparent 31.62% 63.8%,
      rgba(255, 255, 255, 0.2) 63.9%,
      transparent 64.08% 88.5%,
      rgba(9, 14, 20, 0.26) 88.64%,
      transparent 88.9%),
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle at 73% 68%, rgba(5, 10, 16, 0.42) 0 1.2px, transparent 2px),
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.075) 0,
      rgba(255, 255, 255, 0.075) 1px,
      rgba(5, 10, 16, 0.055) 1px,
      rgba(5, 10, 16, 0.055) 2px,
      transparent 2px,
      transparent 4px);
  background-size: calc(100% + 28px) 100%, 180px 132px, 238px 176px, 100% 4px;
  background-repeat: no-repeat, repeat, repeat, repeat;
  opacity: 0.7;
  animation:
    hero-film-surface 3.7s steps(1, end) infinite,
    hero-film-flicker-strong 1.9s steps(1, end) infinite;
}

@keyframes hero-film-grain-strong {
  0% { transform: translate3d(-3%, -4%, 0) rotate(0.15deg); }
  20% { transform: translate3d(4%, 2%, 0) rotate(-0.12deg); }
  40% { transform: translate3d(-2%, 5%, 0) rotate(0.1deg); }
  60% { transform: translate3d(5%, -3%, 0) rotate(-0.16deg); }
  80% { transform: translate3d(-5%, 3%, 0) rotate(0.12deg); }
  100% { transform: translate3d(3%, -5%, 0) rotate(-0.1deg); }
}

@keyframes hero-film-surface {
  0%, 28% { background-position: 0 0, 0 0, 0 0, 0 0; }
  29% { background-position: 2px 0, 24px -12px, -18px 16px, 0 1px; }
  30%, 61% { background-position: 0 0, 42px 18px, 20px -22px, 0 0; }
  62% { background-position: -3px 0, -18px 28px, 32px 14px, 0 -1px; }
  63%, 86% { background-position: 0 0, 14px -24px, -26px 30px, 0 0; }
  87% { background-position: 3px 0, 34px 10px, 16px -18px, 0 1px; }
  88%, 100% { background-position: 0 0, 0 0, 0 0, 0 0; }
}

@keyframes hero-film-flicker-strong {
  0%, 16%, 21%, 48%, 54%, 78%, 83%, 100% { opacity: 0.68; }
  18% { opacity: 0.86; }
  51% { opacity: 0.5; }
  81% { opacity: 0.8; }
}

@keyframes hero-frame-jump-strong {
  0%, 18%, 19%, 43%, 44%, 71%, 72%, 100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  18.2% { transform: scale(1.02) translate3d(-4px, 2px, 0); }
  18.45% { transform: scale(1.02) translate3d(3px, -1px, 0); }
  43.25% { transform: scale(1.02) translate3d(1px, 3px, 0); }
  71.25% { transform: scale(1.02) translate3d(4px, -1px, 0); }
  71.5% { transform: scale(1.02) translate3d(-2px, 1px, 0); }
}

@media (max-width: 640px) {
  .hero-video {
    filter: brightness(1.09) contrast(1.08) saturate(0.66) sepia(0.13);
  }

  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(2, 15, 34, 0.5) 0%,
        rgba(3, 22, 45, 0.32) 52%,
        rgba(2, 16, 35, 0.44) 100%),
      linear-gradient(90deg, rgba(2, 15, 35, 0.18), rgba(2, 15, 35, 0.04));
  }

  .hero-film-effect::before {
    opacity: 0.46;
  }

  .hero-film-effect::after {
    opacity: 0.64;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
    transform: scale(1.01);
  }

  .hero-film-effect::before,
  .hero-film-effect::after {
    animation: none;
  }
}

/* Final No.2: 1.5-second poster handoff and key figures inside the hero. */
.hero > .hero-video {
  opacity: 0;
  transition: opacity 650ms ease;
  animation-play-state: paused;
}

.hero > .hero-video.is-video-visible {
  opacity: 1;
  animation-play-state: running;
}

.hero > .hero-film-effect {
  opacity: 0;
  transition: opacity 650ms ease;
}

.hero > .hero-film-effect::before,
.hero > .hero-film-effect::after {
  animation-play-state: paused;
}

.hero > .hero-video.is-video-visible + .hero-film-effect {
  opacity: 1;
}

.hero > .hero-video.is-video-visible + .hero-film-effect::before,
.hero > .hero-video.is-video-visible + .hero-film-effect::after {
  animation-play-state: running;
}

.hero-bottom-metrics {
  position: absolute;
  right: auto;
  bottom: clamp(18px, 2vw, 26px);
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(60vw, 600px);
  max-width: 100%;
  margin: 0;
  padding: 8px 0;
  overflow: visible;
  isolation: isolate;
  direction: ltr;
  list-style: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  scroll-margin-top: 96px;
}

.hero-bottom-metrics::before {
  content: "";
  position: absolute;
  inset: -16px -44px -18px -32px;
  z-index: -1;
  border-radius: 22px;
  background: radial-gradient(
    ellipse at 28% 50%,
    rgba(2, 13, 31, 0.54) 0%,
    rgba(3, 18, 42, 0.34) 46%,
    rgba(3, 20, 45, 0.14) 68%,
    transparent 84%
  );
  filter: blur(6px);
  pointer-events: none;
}

.hero-bottom-metrics li {
  position: relative;
  min-width: 0;
  min-height: 48px;
  padding: 4px clamp(12px, 1.55vw, 20px);
  text-align: left;
}

.hero-bottom-metrics li + li::before {
  content: "";
  position: absolute;
  inset-block: 7px;
  right: auto;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(210, 32, 52, 0.82);
}

.hero-bottom-metrics strong,
.hero-bottom-metrics span {
  display: block;
}

.hero-bottom-metrics strong {
  color: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.42);
}

.hero-bottom-metrics span {
  margin-top: 5px;
  color: rgba(221, 238, 249, 0.9);
  font-size: clamp(0.7rem, 0.82vw, 0.79rem);
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: 0.012em;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.34);
}

html[lang="hi"] .hero-bottom-metrics {
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Kohinoor Devanagari", system-ui, sans-serif;
}

html[lang="ar"] .hero-bottom-metrics {
  font-family: "Noto Sans Arabic", "SF Arabic", "Geeza Pro", "Segoe UI", Tahoma, Arial, sans-serif;
}

html[lang="ar"] .hero-bottom-metrics::before {
  background: radial-gradient(
    ellipse at 72% 50%,
    rgba(2, 13, 31, 0.54) 0%,
    rgba(3, 18, 42, 0.34) 46%,
    rgba(3, 20, 45, 0.14) 68%,
    transparent 84%
  );
}

html[lang="ar"] .hero-bottom-metrics li {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] .hero-bottom-metrics li:nth-child(-n + 3) strong {
  direction: ltr;
  unicode-bidi: isolate;
}

html[lang="hi"] .hero-bottom-metrics strong,
html[lang="ar"] .hero-bottom-metrics strong {
  line-height: 1.18;
  letter-spacing: 0;
}

html[lang="hi"] .hero-bottom-metrics span,
html[lang="ar"] .hero-bottom-metrics span {
  line-height: 1.32;
  letter-spacing: 0;
}

.intro-band + .feature-section {
  padding-top: 18px;
}

@media (min-width: 861px) {
  .hero > .hero-inner {
    padding-bottom: 120px;
  }
}

@media (max-width: 860px) {
  html[lang] body main > .hero,
  .hero > .hero-inner {
    min-height: 0;
  }

  .hero > .hero-inner {
    justify-content: flex-start;
    padding-bottom: 24px;
  }

  .hero-bottom-metrics {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 342px);
    margin: 10px auto 0;
    padding: 3px 0;
    border-radius: 0;
    transform: none;
  }

  .hero-bottom-metrics::before {
    inset: -8px -14px -10px;
  }

  .hero-bottom-metrics li {
    min-height: 46px;
    padding: 4px 8px;
  }

  .hero-bottom-metrics li + li::before {
    display: none;
  }

  .hero-bottom-metrics li:nth-child(even)::before {
    display: block;
  }

  .hero-bottom-metrics li:nth-child(n + 3) {
    margin-top: 0;
  }

  .hero-bottom-metrics strong {
    font-size: clamp(0.92rem, 2.8vw, 1.05rem);
  }

  .hero-bottom-metrics span {
    margin-top: 3px;
    font-size: clamp(0.64rem, 1.9vw, 0.72rem);
  }

  .intro-band + .feature-section {
    padding-top: 14px;
  }
}

@media (max-width: 640px) {
  .hero > .hero-inner {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .hero-bottom-metrics {
    margin-top: 8px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero > .hero-video {
    visibility: hidden;
    opacity: 0;
    transition: none;
    animation-play-state: paused;
  }

  .hero > .hero-film-effect,
  .hero > .hero-video.is-video-visible + .hero-film-effect {
    opacity: 0;
    transition: none;
  }

  .hero > .hero-film-effect::before,
  .hero > .hero-film-effect::after,
  .hero > .hero-video.is-video-visible + .hero-film-effect::before,
  .hero > .hero-video.is-video-visible + .hero-film-effect::after {
    animation-play-state: paused;
  }
}

/* Final No.2 content flow: product image, compact benefits, then suitability notes. */
.product-image-showcase {
  padding-bottom: 8px;
}

.product-image-showcase + .feature-section {
  padding-top: 18px;
}

.feature-section {
  padding-bottom: 10px;
}

.feature-section .section-heading {
  max-width: 780px;
  margin-bottom: 11px;
}

.feature-section .section-kicker {
  margin-bottom: 5px;
  color: #b91f35;
}

.feature-section .section-heading h2 {
  color: #17354e;
  font-size: clamp(1.42rem, 1.85vw, 1.72rem);
  line-height: 1.18;
}

.feature-section .feature-grid {
  align-items: stretch;
  gap: 11px;
}

.feature-section .feature-card {
  min-height: 0;
  padding: 13px 14px;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 4px;
  border-color: rgba(111, 145, 169, 0.3);
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(31, 72, 102, 0.08);
}

.feature-section .feature-card:hover {
  transform: translateY(-3px);
}

.feature-section .feature-number {
  grid-row: 1 / span 2;
  align-self: start;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  font-size: 0.9rem;
  box-shadow: 0 7px 16px rgba(20, 125, 106, 0.18);
}

.feature-section .feature-card h3 {
  grid-column: 2;
  grid-row: 1;
  color: #182c46;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.22;
}

.feature-section .feature-card p {
  grid-column: 2;
  grid-row: 2;
  color: #5b7086;
  font-size: 0.9rem;
  line-height: 1.44;
}

.product-use-section {
  padding: 0 0 8px;
}

.product-use-section .product-image-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 2vw, 24px);
  margin: 0;
  padding: clamp(11px, 1.2vw, 14px) clamp(13px, 1.6vw, 18px);
  border: 1px solid rgba(91, 130, 157, 0.2);
  border-radius: 9px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.74), rgba(236, 245, 249, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-use-section .product-image-points li {
  min-width: 0;
  padding: 0;
  padding-inline-start: 18px;
  color: #284e69;
  font-size: clamp(0.9rem, 0.98vw, 0.95rem);
  font-weight: 700;
  line-height: 1.38;
  text-align: start;
  overflow-wrap: anywhere;
}

.product-use-section .product-image-points li::before {
  top: 0.69em;
  right: auto;
  left: auto;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c51e35;
}

html[lang="ar"] .product-use-section .product-image-points {
  direction: rtl;
}

html[lang="hi"] .feature-section .feature-card h3 {
  line-height: 1.36;
}

@media (max-width: 860px) {
  .product-image-showcase {
    padding-bottom: 6px;
  }

  .product-image-showcase + .feature-section {
    padding-top: 14px;
  }

  .feature-section {
    padding-bottom: 8px;
  }

  .feature-section .section-heading {
    margin-bottom: 9px;
  }

  .feature-section .feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .feature-section .feature-card {
    padding: 11px 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 3px;
  }

  .feature-section .feature-number {
    width: 34px;
    height: 34px;
    font-size: 0.84rem;
  }

  .product-use-section {
    padding-bottom: 6px;
  }

  .product-use-section .product-image-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 11px 13px;
  }
}

@media (max-width: 640px) {
  .feature-section .section-heading h2 {
    font-size: clamp(1.22rem, 4.2vw, 1.42rem);
    line-height: 1.18;
  }

  .feature-section .feature-grid {
    gap: 8px;
  }

  .feature-section .feature-card {
    border-radius: 8px;
  }

  .feature-section .feature-number {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    font-size: 0.82rem;
  }

  .feature-section .feature-card h3 {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .feature-section .feature-card p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .product-use-section .product-image-points {
    gap: 5px;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .product-use-section .product-image-points li {
    padding-inline-start: 17px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .product-use-section .product-image-points li::before {
    width: 6px;
    height: 6px;
  }
}

/* Final No.2 product composition: vertical key-figure rail to the left of the static image. */
.product-image-showcase .section-shell {
  display: grid;
  grid-template-columns: clamp(190px, 18vw, 224px) minmax(0, 1fr);
  grid-template-areas: "metrics image";
  align-items: stretch;
  gap: clamp(22px, 3vw, 38px);
}

.product-image-showcase .product-image-figure {
  grid-area: image;
  width: 100%;
  aspect-ratio: 2122 / 941;
}

.product-image-showcase .product-image-figure picture {
  width: 100%;
  height: 100%;
}

.product-image-showcase .product-image-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.product-image-showcase .section-shell > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  grid-area: metrics;
  position: static;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  width: auto;
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px) 0;
  gap: clamp(4px, 0.8vw, 10px);
  direction: ltr;
}

.product-image-showcase .section-shell > .product-image-metrics > li,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0 0 0 17px;
  text-align: left;
}

.product-image-showcase .section-shell > .product-image-metrics > li::before,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
  top: 50%;
  right: auto;
  left: 0;
  width: 3px;
  height: 25px;
  transform: translateY(-50%);
  background: #c51f37;
}

.product-image-showcase .section-shell > .product-image-metrics strong {
  font-size: clamp(0.9rem, 1.25vw, 1.04rem);
  line-height: 1.14;
}

.product-image-showcase .section-shell > .product-image-metrics span {
  margin-top: 5px;
  font-size: clamp(0.6rem, 0.75vw, 0.7rem);
  line-height: 1.22;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  direction: rtl;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
  align-items: flex-end;
  padding: 0 17px 0 0;
  text-align: right;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
  right: 0;
  left: auto;
}

@media (max-width: 860px) {
  .product-image-showcase .section-shell {
    grid-template-columns: clamp(148px, 24vw, 176px) minmax(0, 1fr);
    gap: 16px;
  }

  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    padding: 5px 0;
    gap: 2px;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    padding-left: 13px;
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    padding-right: 13px;
    padding-left: 0;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    width: 2px;
    height: 20px;
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: 0.82rem;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    margin-top: 3px;
    font-size: 0.57rem;
  }
}

@media (max-width: 640px) {
  .product-image-showcase .section-shell {
    grid-template-columns: minmax(98px, 29%) minmax(0, 1fr);
    gap: 10px;
  }

  .product-image-showcase .product-image-figure {
    aspect-ratio: 4 / 3;
  }

  .product-image-showcase .product-image-figure img {
    object-position: 72% center;
  }

  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    width: auto;
    margin: 0;
    padding: 2px 0;
    gap: 0;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    align-items: flex-start;
    padding: 0 0 0 10px;
    text-align: left;
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    align-items: flex-end;
    padding: 0 10px 0 0;
    text-align: right;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    right: auto;
    left: 0;
    width: 2px;
    height: 16px;
    transform: translateY(-50%);
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    right: 0;
    left: auto;
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    line-height: 1.14;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    margin-top: 2px;
    font-size: clamp(0.49rem, 2vw, 0.57rem);
    line-height: 1.15;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    width: calc(100% - 22px);
  }

  .hero-machine-stage {
    height: 146px;
    background-size: auto 146px;
  }

  .site-header[data-header] .mobile-language-options .language-option {
    font-size: 0.49rem;
  }
}

/* 2026-07-31: clearer first-buyer guidance and calmer technical typography. */
.buyer-checklist {
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(151, 174, 201, 0.52);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 20px rgba(8, 39, 101, 0.045);
}

html[dir="rtl"] .buyer-checklist {
  border-right: 4px solid var(--green);
  border-left-width: 1px;
}

.buyer-checklist .section-kicker {
  margin-bottom: 6px;
}

.buyer-checklist p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-card h3,
.gallery-card h3,
.video-card h3,
.workshop-card h3 {
  font-weight: 720;
  line-height: 1.22;
}

.feature-card p,
.gallery-card p,
.video-card p,
.workshop-card p {
  line-height: 1.52;
}

.gallery-card p,
.video-card p,
.workshop-card p {
  font-size: 0.94rem;
}

@media (min-width: 861px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 28, 60, 0.61) 0%, rgba(7, 41, 78, 0.43) 34%, rgba(8, 52, 90, 0.12) 66%, rgba(9, 59, 99, 0.02) 100%),
      linear-gradient(180deg, rgba(236, 249, 255, 0.25), rgba(4, 29, 59, 0.015)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") center center / cover no-repeat,
      #174b77;
  }

  .section-heading h2 {
    line-height: 1.15;
  }
}

@media (max-width: 640px) {
  .buyer-checklist {
    margin-top: 13px;
    padding: 13px 14px;
  }

  .buyer-checklist p:last-child {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .hero-machine-stage {
    filter: brightness(1.38) contrast(1.01) saturate(1.035);
  }

  .gallery-card p,
  .video-card p,
  .workshop-card p {
    font-size: 0.88rem;
    line-height: 1.48;
  }
}

/* Header controls: waterjet-inspired proportions in the existing airjet color system. */
@media (min-width: 861px) {
  .site-header {
    justify-content: flex-start;
  }

  .site-nav {
    margin-left: auto;
    gap: 4px;
  }

  .site-nav a {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .language-options {
    box-sizing: border-box;
    height: 42px;
    gap: 3px;
    margin-left: 10px;
    padding: 4px;
    background:
      linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(226, 238, 249, 0.96)),
      #e9f1f9;
    border: 1px solid rgba(163, 190, 218, 0.78);
    border-radius: 9px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 7px 16px rgba(6, 43, 99, 0.08);
  }

  .language-option {
    min-height: 32px;
    padding-inline: 9px;
    color: #29425e;
    border-radius: 7px;
    font-size: 0.74rem;
    font-weight: 800;
  }

  .language-option:hover,
  .language-option:focus-visible {
    color: #062b63;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 4px 10px rgba(6, 43, 99, 0.08);
  }

  .language-option.is-active,
  .language-option.is-active:hover,
  .language-option.is-active:focus-visible {
    color: #ffffff;
    background: linear-gradient(180deg, #bd1830, #9e0f21);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 6px 14px rgba(169, 19, 34, 0.18);
  }

  .header-whatsapp {
    min-width: 146px;
    min-height: 42px;
    flex-direction: column;
    gap: 1px;
    margin-left: 8px;
    padding: 5px 13px 6px;
    color: #ffffff;
    background:
      radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.34), rgba(107, 192, 255, 0.18) 33%, transparent 55%),
      linear-gradient(135deg, #1767ba, #062b63 72%);
    border-color: rgba(29, 105, 190, 0.64);
    border-radius: 8px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -8px 14px rgba(0, 23, 64, 0.18),
      0 9px 20px rgba(6, 43, 99, 0.2);
  }

  .header-whatsapp::before {
    left: 4px;
    right: 4px;
    top: 2px;
    height: 40%;
    border-radius: 6px 6px 4px 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  }

  .header-whatsapp::after {
    display: none;
  }

  .header-whatsapp span {
    color: rgba(229, 244, 255, 0.82);
    font-size: 0.56rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .header-whatsapp strong {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 880;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
  }

  .header-whatsapp:hover,
  .header-whatsapp:focus-visible {
    color: #ffffff;
    background:
      radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.4), rgba(120, 204, 255, 0.22) 34%, transparent 56%),
      linear-gradient(135deg, #1d76cf, #073774 72%);
    border-color: rgba(124, 207, 255, 0.64);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      inset 0 -8px 14px rgba(0, 23, 64, 0.14),
      0 10px 22px rgba(6, 43, 99, 0.26);
  }
}

@media (max-width: 860px) {
  .site-header {
    background:
      linear-gradient(90deg, rgba(4, 25, 55, 0.76), rgba(8, 58, 105, 0.48)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025));
    border-bottom-color: rgba(178, 218, 248, 0.24);
    box-shadow:
      0 8px 20px rgba(3, 18, 42, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.16) inset;
  }

  .header-whatsapp {
    min-width: 116px;
    max-width: 126px;
    min-height: 32px;
    flex-direction: column;
    gap: 0;
    padding: 3px 8px 4px;
    justify-self: end;
    color: #063867;
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.94), rgba(209, 239, 255, 0.44) 32%, transparent 52%),
      linear-gradient(135deg, rgba(229, 247, 255, 0.98), rgba(146, 210, 246, 0.92) 54%, rgba(70, 158, 221, 0.9));
    border-color: rgba(112, 198, 250, 0.76);
    border-radius: 9px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -7px 12px rgba(6, 74, 141, 0.14),
      0 6px 14px rgba(2, 40, 94, 0.18);
  }

  .header-whatsapp::before {
    left: 3px;
    right: 3px;
    top: 2px;
    height: 34%;
    border-radius: 7px 7px 4px 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  }

  .header-whatsapp::after {
    display: none;
  }

  .header-whatsapp span {
    display: block;
    color: rgba(5, 57, 103, 0.76);
    font-size: 0.44rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
  }

  .header-whatsapp strong {
    color: #063867;
    font-size: 0.63rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .mobile-language-options.language-options {
    gap: 5px;
    margin-bottom: -8px;
    padding-top: 3px;
    padding-bottom: 4px;
    background:
      linear-gradient(180deg, rgba(194, 224, 246, 0.18), rgba(6, 43, 99, 0.14));
    border-top: 1px solid rgba(207, 232, 250, 0.2);
    border-bottom: 1px solid rgba(4, 24, 55, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 6px 12px rgba(1, 16, 39, 0.06);
  }

  .mobile-language-options .language-option {
    min-height: 27px;
    padding-inline: 6px;
    color: rgba(239, 248, 255, 0.94);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(202, 231, 252, 0.16);
    border-radius: 7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: clamp(0.64rem, 2.25vw, 0.76rem);
    font-weight: 820;
  }

  .mobile-language-options .language-option:hover,
  .mobile-language-options .language-option:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(221, 243, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .mobile-language-options .language-option.is-active,
  .mobile-language-options .language-option.is-active:hover,
  .mobile-language-options .language-option.is-active:focus-visible {
    color: #ffffff;
    background: linear-gradient(180deg, #bd1830, #9e0f21);
    border-color: rgba(236, 126, 143, 0.4);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 5px 10px rgba(121, 6, 27, 0.18);
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 76px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .site-header {
    min-height: 76px;
    padding: 6px 10px;
    grid-template-columns: minmax(124px, 138px) minmax(100px, 1fr) 34px;
    grid-template-rows: 32px 24px;
    column-gap: 6px;
    row-gap: 4px;
  }

  .brand {
    min-width: 124px;
  }

  .brand-logo {
    width: min(100%, 138px);
    max-height: 27px;
  }

  .header-whatsapp {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    min-height: 30px;
    padding: 3px 6px 4px;
    border-radius: 8px;
  }

  .header-whatsapp span {
    font-size: 0.4rem;
  }

  .header-whatsapp strong {
    font-size: 0.59rem;
  }

  .nav-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .nav-toggle span {
    width: 15px;
    margin: 4px auto;
  }

  .mobile-language-options.language-options {
    gap: 4px;
    width: calc(100% + 20px);
    margin: -1px -10px -6px;
    padding: 3px 10px 3px;
    max-height: 28px;
  }

  .mobile-language-options .language-option {
    min-height: 21px;
    padding-inline: 3px;
    border-radius: 6px;
    font-size: clamp(0.56rem, 2.22vw, 0.68rem);
  }

  .site-nav {
    top: 76px;
    left: 10px;
    right: 10px;
    padding: 10px 12px 14px;
    border-radius: 0 0 12px 12px;
  }

  .site-header.is-language-hidden {
    min-height: 48px;
    padding-top: 7px;
    padding-bottom: 7px;
    grid-template-rows: 32px 0;
    row-gap: 0;
  }

  .site-header.is-language-hidden .site-nav {
    top: 48px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: minmax(108px, 116px) minmax(96px, 1fr) 30px;
    padding-inline: 8px;
    column-gap: 5px;
  }

  .brand,
  .brand-logo {
    min-width: 108px;
    width: 108px;
  }

  .header-whatsapp {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    padding-inline: 5px;
  }

  .header-whatsapp span {
    font-size: 0.37rem;
  }

  .header-whatsapp strong {
    font-size: 0.55rem;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
  }
}

/* 2026-07-19: unified visual system and responsive language-safe layout */
:root {
  --header-surface: rgba(242, 248, 253, 0.9);
  --header-line: rgba(166, 192, 218, 0.7);
  --hero-glass: rgba(5, 29, 64, 0.42);
  --hero-line: rgba(214, 235, 255, 0.24);
}

body {
  font-size: 16px;
  line-height: 1.55;
}

.site-header[data-header] {
  min-height: 68px;
  padding: 10px 42px;
  background:
    linear-gradient(104deg, rgba(247, 251, 254, 0.94), rgba(231, 241, 249, 0.88)),
    var(--header-surface);
  border-bottom-color: var(--header-line);
  box-shadow:
    0 6px 20px rgba(6, 35, 75, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.56);
}

.brand {
  width: clamp(210px, 15vw, 246px);
}

.brand-logo {
  max-height: 28px;
}

.site-nav {
  margin-left: auto;
  gap: 2px;
}

.site-nav a {
  min-height: 36px;
  padding-inline: 10px;
  font-size: 0.84rem;
  font-weight: 700;
}

.language-options {
  gap: 3px;
  margin-left: 6px;
  padding: 3px;
  border-color: rgba(170, 197, 222, 0.82);
  border-radius: 10px;
  background: rgba(237, 245, 252, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.language-option {
  min-height: 30px;
  padding-inline: 9px;
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 760;
}

.header-whatsapp {
  min-height: 36px;
  margin-left: 8px;
  padding-inline: 11px;
  color: #f8fcff;
  background:
    linear-gradient(135deg, rgba(18, 94, 163, 0.98), rgba(5, 43, 99, 0.98));
  border-color: rgba(33, 110, 183, 0.82);
  border-radius: 9px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -4px 9px rgba(0, 23, 62, 0.14),
    0 7px 16px rgba(6, 43, 99, 0.14);
  font-size: 0.75rem;
}

.header-whatsapp::before {
  left: 4px;
  right: 4px;
  top: 2px;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.header-whatsapp::after {
  display: none;
}

.header-whatsapp span {
  color: rgba(228, 242, 255, 0.83);
  font-size: 0.86em;
}

.header-whatsapp strong {
  color: #ffffff;
  font-weight: 840;
}

.hero {
  min-height: 628px;
  background:
    linear-gradient(90deg, rgba(2, 16, 39, 0.88) 0%, rgba(4, 27, 60, 0.72) 34%, rgba(4, 28, 60, 0.3) 61%, rgba(4, 28, 60, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(2, 16, 39, 0.08)),
    url("assets/factory-hero-textile-rolls-wide-light.jpg") 59% center / cover no-repeat,
    #04152d;
}

.hero::before {
  display: none;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(3, 18, 46, 0.01), rgba(3, 18, 46, 0.13)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 24px);
}

.hero-inner {
  width: min(1160px, calc(100% - 56px));
  min-height: 628px;
  padding: 64px 0 42px;
}

.hero-copy {
  max-width: 636px;
}

.hero-machine-stage {
  display: none;
}

.hero .eyebrow {
  margin-bottom: 13px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 15px;
  font-size: clamp(2.78rem, 4.15vw, 3.48rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.56;
}

.hero-origin-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 10px;
  width: min(100%, 580px);
  max-width: min(100%, 580px);
  font-size: 0.79rem;
  line-height: 1.35;
}

.hero-origin-note span {
  display: inline;
}

.hero-origin-country {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 217, 106, 0.5);
}

.hero-metrics {
  grid-template-columns: repeat(4, minmax(128px, 1fr));
  width: min(100%, 590px);
  margin-top: 16px;
  gap: 8px;
}

.hero-metrics div {
  height: 70px;
  min-height: 70px;
  padding: 12px 13px;
  border-color: var(--hero-line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(14, 50, 94, 0.35), rgba(5, 29, 64, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 7px 16px rgba(0, 0, 0, 0.045);
  backdrop-filter: blur(2px);
}

.hero-metrics strong {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.hero-metrics span {
  font-size: 0.82rem;
  line-height: 1.16;
}

.intro-band {
  position: relative;
  background:
    linear-gradient(135deg, #082e61, #11538d 64%, #0d477e),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 16px);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 28%);
}

.intro-grid {
  position: relative;
  gap: 44px;
  padding: 48px 0;
}

.intro-grid h2 {
  max-width: 510px;
  font-size: clamp(2rem, 3.1vw, 2.58rem);
  line-height: 1.15;
}

.intro-stack {
  gap: 13px;
}

.intro-stack p,
.check-list li {
  line-height: 1.52;
}

.feature-section,
.factory-gallery-section,
.workshop-section,
.spec-band,
.proof-band,
.faq-section,
.inquiry-section {
  position: relative;
}

.feature-section,
.factory-gallery-section,
.workshop-section,
.spec-band,
.proof-band,
.faq-section,
.inquiry-section {
  padding-block: 52px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.section-heading h2,
.spec-copy h2,
.proof-layout h2,
.faq-layout h2,
.inquiry-layout h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.45rem);
  line-height: 1.16;
}

.feature-grid,
.application-grid {
  gap: 16px;
}

.feature-card,
.application-grid article {
  min-height: 164px;
  padding: 19px;
  border-color: #d7e1ec;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.9)),
    var(--fabric-x),
    var(--fabric-y);
}

.feature-card {
  column-gap: 13px;
  row-gap: 10px;
}

.feature-card h3 {
  font-size: 1rem;
  line-height: 1.28;
}

.feature-card p,
.application-grid p {
  font-size: 0.91rem;
  line-height: 1.5;
}

.spec-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
}

.spec-copy {
  top: 92px;
}

.fabric-range-inline article {
  padding: 12px 15px 12px 17px;
}

.spec-table th,
.spec-table td {
  padding: 10px 14px;
  line-height: 1.4;
}

.gallery-card,
.workshop-card,
.video-card {
  border-color: #d3deeb;
  box-shadow: 0 10px 26px rgba(6, 43, 99, 0.075);
}

@media (min-width: 861px) {
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 625px;
    font-size: clamp(2.5rem, 3.65vw, 3.12rem);
    line-height: 1.11;
  }

  html[lang="tr"] .hero-title-line,
  html[lang="ru"] .hero-title-line,
  html[lang="ar"] .hero-title-line {
    white-space: normal;
  }

  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    width: min(100%, 590px);
    grid-template-columns: repeat(4, minmax(128px, 1fr));
  }

  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 82px;
    height: auto;
  }

  html[lang="ar"] .hero {
    background-position: 64% center;
  }

  html[lang="ar"] .hero-copy {
    width: min(545px, 43vw);
    max-width: min(545px, 43vw);
    margin-left: 0;
    margin-right: auto;
    transform: none;
  }

  html[lang="ar"] .hero h1 {
    max-width: 545px;
    font-size: clamp(2.35rem, 3.1vw, 2.85rem);
    line-height: 1.17;
  }

  html[lang="ar"] .hero-text,
  html[lang="ar"] .hero-origin-note {
    max-width: 540px;
  }

  html[lang="ar"] .hero-metrics {
    direction: ltr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(520px, 43vw);
    margin-left: 0;
    margin-right: 0;
  }

  html[lang="ar"] .hero-metrics div {
    direction: rtl;
    text-align: right;
  }

  html[lang="ar"] .hero-metrics > div:nth-child(4) {
    padding-inline: 9px;
  }

  html[lang="ar"] .hero-metrics > div:nth-child(4) strong {
    font-size: 0.92rem;
    white-space: nowrap;
  }

}

html[lang="ar"] .hero-metrics > div:nth-child(2) strong,
html[lang="ar"] .hero-metrics > div:nth-child(3) strong,
html[lang="ar"] .hero-metrics > div:nth-child(4) strong {
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 860px) {
  .spec-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .spec-table-wrap,
  .spec-table,
  .spec-table tbody {
    width: 100%;
    min-width: 0;
  }

  .spec-table-wrap {
    overflow: visible;
  }

  .site-header[data-header] {
    background:
      linear-gradient(94deg, rgba(4, 26, 57, 0.82), rgba(11, 66, 113, 0.6)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  }

  .mobile-language-options.language-options {
    background: rgba(3, 33, 72, 0.22);
    border-color: rgba(197, 226, 247, 0.18);
  }

  .mobile-language-options .language-option {
    color: rgba(244, 250, 255, 0.94);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 7vw, 2.88rem);
  }

  .hero-metrics {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .site-header[data-header] {
    min-height: 70px;
    padding: 6px 10px;
    grid-template-columns: minmax(132px, 145px) minmax(96px, 1fr) 32px;
    grid-template-rows: 31px 22px;
    column-gap: 6px;
    row-gap: 3px;
  }

  .brand,
  .brand-logo {
    width: min(100%, 145px);
    min-width: 0;
    max-height: 26px;
  }

  .header-whatsapp {
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    min-height: 29px;
    padding: 3px 5px 4px;
    border-radius: 8px;
    font-size: 0.61rem;
  }

  .header-whatsapp span {
    display: block;
    font-size: 0.41rem;
  }

  .header-whatsapp strong {
    display: block;
    font-size: 0.58rem;
  }

  .nav-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .mobile-language-options.language-options {
    width: calc(100% + 20px);
    max-height: 25px;
    margin: -1px -10px -6px;
    padding: 2px 10px;
    gap: 4px;
  }

  .mobile-language-options .language-option {
    min-height: 21px;
    padding-inline: 3px;
    border-radius: 6px;
    font-size: clamp(0.56rem, 2.22vw, 0.67rem);
  }

  .site-header.is-language-hidden {
    min-height: 44px;
    padding-top: 6px;
    padding-bottom: 6px;
    grid-template-rows: 31px 0;
  }

  .site-header.is-language-hidden .site-nav {
    top: 44px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, #071f44 0%, #082951 52%, #06244a 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 18px);
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 14px);
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: 0;
    margin-inline: 14px;
    padding: 23px 0 20px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.04rem, 9vw, 2.42rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .hero-origin-note {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 4px;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .hero-origin-note span {
    display: block;
  }

  .hero-origin-country {
    margin-top: 2px;
    padding-left: 0;
    border-left: 0;
  }

  .hero-machine-stage {
    display: block;
    height: 214px;
    margin: 2px -14px 8px;
    background:
      linear-gradient(90deg, rgba(7, 31, 68, 0.34), rgba(7, 31, 68, 0.04) 28%, rgba(7, 31, 68, 0.03) 72%, rgba(7, 31, 68, 0.25)),
      linear-gradient(180deg, rgba(7, 31, 68, 0.08), rgba(7, 31, 68, 0.16)),
      url("assets/factory-hero-textile-rolls-wide-light.jpg") 63% center / auto 214px no-repeat;
    filter: brightness(1.13) contrast(1.02) saturate(1.02);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 0;
    gap: 8px;
  }

  .hero-metrics div,
  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 76px;
    height: auto;
    padding: 11px 12px;
  }

  .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    margin-bottom: 4px;
    font-size: 0.98rem;
    line-height: 1.12;
  }

  .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.76rem;
    line-height: 1.18;
  }

  .intro-grid {
    gap: 18px;
    padding: 34px 0;
  }

  .intro-grid h2 {
    font-size: 1.72rem;
  }

  .intro-stack {
    gap: 11px;
  }

  .intro-stack p,
  .check-list li {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .feature-section,
  .factory-gallery-section,
  .workshop-section,
  .spec-band,
  .proof-band,
  .faq-section,
  .inquiry-section {
    padding-block: 38px;
  }

  .section-heading h2,
  .spec-copy h2,
  .proof-layout h2,
  .faq-layout h2,
  .inquiry-layout h2 {
    font-size: 1.72rem;
  }

  .feature-card,
  .application-grid article {
    min-height: 0;
    padding: 17px;
  }

  html[lang="ar"] .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
  }

  html[lang="ar"] .hero-metrics {
    direction: ltr;
  }

  html[lang="ar"] .hero-metrics div {
    direction: rtl;
    text-align: right;
  }
}

@media (max-width: 360px) {
  .site-header[data-header] {
    grid-template-columns: minmax(118px, 125px) minmax(90px, 1fr) 30px;
    padding-inline: 8px;
  }

  .brand,
  .brand-logo {
    width: min(100%, 125px);
  }

  .header-whatsapp {
    width: 98px;
    min-width: 98px;
    max-width: 98px;
  }

  .hero-machine-stage {
    height: 196px;
    background-size: auto 196px;
  }
}

/* Keep mobile section titles compact and visually consistent across languages. */
@media (max-width: 640px) {
  .section-heading h2,
  .spec-copy h2,
  .proof-layout h2,
  .faq-layout h2,
  .inquiry-layout h2 {
    max-width: 100%;
    font-size: 1.45rem;
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
  }
}

@media (max-width: 360px) {
  .section-heading h2,
  .spec-copy h2,
  .proof-layout h2,
  .faq-layout h2,
  .inquiry-layout h2 {
    font-size: 1.34rem;
  }
}

/* 2026-07-21: unobtrusive footer visit count */
.footer-visit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 9px;
}

.footer-visit-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(215, 229, 248, 0.48);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-visit-counter strong {
  color: rgba(231, 241, 248, 0.62);
  font-size: 0.74rem;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.035em;
}

.footer-daily-visit-count {
  min-width: 3ch;
  margin-left: 8px;
  opacity: 0.78;
  text-align: right;
}

html[dir="rtl"] .footer-daily-visit-count {
  margin-right: 8px;
  margin-left: 0;
}

@media (max-width: 640px) {
  .footer-visit-row {
    margin-top: 10px;
    padding-bottom: 1px;
  }

  .footer-visit-counter {
    gap: 5px;
    font-size: 0.62rem;
    opacity: 0.82;
  }

  .footer-visit-counter strong {
    font-size: 0.68rem;
  }

  .footer-daily-visit-count {
    margin-left: 6px;
  }

  html[dir="rtl"] .footer-daily-visit-count {
    margin-right: 6px;
    margin-left: 0;
  }
}

/* Compact the six mobile hero metrics without changing their shared structure. */
@media (max-width: 640px) {
  .hero-inner {
    padding: 18px 0 16px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: 0.67rem;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(1.92rem, 8.35vw, 2.2rem);
    line-height: 1.07;
  }

  .hero-text {
    margin-bottom: 8px;
    font-size: 0.88rem;
    line-height: 1.44;
  }

  .hero-origin-note {
    margin-bottom: 2px;
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .hero-machine-stage {
    height: 176px;
    margin: 0 -14px 6px;
    background-position: 60% center;
    background-size: auto 176px;
    filter: brightness(1.16) contrast(1.02) saturate(1.02);
  }

  .hero-metrics {
    gap: 6px;
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(2n),
  .hero-metrics div:nth-last-child(-n + 2),
  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 60px;
    height: auto;
    padding: 7px 9px;
    border-color: rgba(205, 230, 249, 0.27);
    background: linear-gradient(135deg, rgba(6, 39, 83, 0.54), rgba(13, 59, 107, 0.42));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 5px 12px rgba(0, 10, 31, 0.07);
    backdrop-filter: blur(4px) saturate(112%);
  }

  .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    margin-bottom: 2px;
    font-size: 0.92rem;
    line-height: 1.08;
    white-space: normal;
  }

  .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.7rem;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    min-height: 64px;
    padding-inline: 8px;
  }

  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    font-size: 0.84rem;
  }

  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.65rem;
    line-height: 1.14;
  }
}

@media (max-width: 360px) {
  .hero-machine-stage {
    height: 164px;
    background-size: auto 164px;
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(2n),
  .hero-metrics div:nth-last-child(-n + 2) {
    padding-inline: 8px;
  }
}

/* Use the quiet desktop space as part of the product story instead of adding new cards. */
@media (min-width: 861px) {
  .hero-inner {
    width: min(1256px, calc(100% - 80px));
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero-text {
    order: 3;
  }

  .hero-metrics {
    order: 4;
  }

  .hero-origin-note {
    order: 5;
    width: min(100%, 590px);
    max-width: min(100%, 590px);
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 217, 106, 0.28);
  }
}

/* 2026-07-25: use a lighter industrial textile palette without changing the page structure. */
:root {
  --soft: #e7f0f5;
  --paper: #eef5f8;
  --surface: #f7fafc;
  --line: #c9d8e5;
  --fabric-section:
    linear-gradient(180deg, rgba(243, 248, 251, 0.92), rgba(227, 238, 245, 0.95)),
    repeating-linear-gradient(90deg, rgba(6, 43, 99, 0.038) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(20, 125, 106, 0.025) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(45deg, rgba(6, 43, 99, 0.014) 0 1px, transparent 1px 12px);
}

body {
  background:
    linear-gradient(180deg, #eef5f8 0%, #e4eef4 100%),
    var(--fabric-x),
    var(--fabric-y),
    var(--fabric-diagonal);
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 28, 60, 0.74) 0%, rgba(7, 41, 78, 0.58) 33%, rgba(8, 52, 90, 0.24) 64%, rgba(9, 59, 99, 0.08) 100%),
    linear-gradient(180deg, rgba(220, 241, 252, 0.14), rgba(4, 29, 59, 0.06)),
    url("assets/factory-hero-textile-rolls-wide-light.jpg") center center / cover no-repeat,
    #0a3868;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(3, 18, 46, 0.015), rgba(3, 18, 46, 0.085)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 24px);
}

.hero-metrics div {
  border-color: rgba(220, 238, 251, 0.34);
  background: linear-gradient(135deg, rgba(9, 47, 88, 0.4), rgba(21, 83, 132, 0.23));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(0, 18, 44, 0.055);
  backdrop-filter: blur(4px) saturate(106%);
}

.hero-origin-note {
  color: #f6d47b;
  text-shadow:
    0 1px 9px rgba(0, 0, 0, 0.36),
    0 0 9px rgba(255, 217, 106, 0.12);
}

.intro-band,
.proof-band {
  background:
    linear-gradient(135deg, rgba(8, 58, 105, 0.98), rgba(15, 87, 140, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 16px);
}

.feature-card,
.application-grid article,
.gallery-card,
.video-card,
.workshop-card,
.faq-item,
.inquiry-form,
.spec-table-wrap {
  border-color: rgba(195, 211, 226, 0.92);
}

@media (min-width: 861px) {
  html[lang="ar"] .hero {
    background-position: 64% center, center, 64% center;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, #0a3a6c 0%, #0d4a7f 52%, #0a3b6c 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 18px);
  }

  .hero-machine-stage {
    background:
      linear-gradient(90deg, rgba(8, 44, 79, 0.18), rgba(8, 44, 79, 0.025) 28%, rgba(8, 44, 79, 0.02) 72%, rgba(8, 44, 79, 0.14)),
      linear-gradient(180deg, rgba(220, 242, 252, 0.1), rgba(8, 35, 64, 0.07)),
      url("assets/factory-hero-textile-rolls-wide-light.jpg") 60% center / auto 176px no-repeat;
    filter: brightness(1.25) contrast(1.015) saturate(1.035);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 93%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 93%, transparent 100%);
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(2n),
  .hero-metrics div:nth-last-child(-n + 2),
  html[lang="tr"] .hero-metrics div,
  html[lang="ru"] .hero-metrics div,
  html[lang="ar"] .hero-metrics div {
    border-color: rgba(206, 231, 250, 0.3);
    background: linear-gradient(135deg, rgba(9, 54, 99, 0.5), rgba(22, 91, 143, 0.36));
  }
}

/* 2026-08-10: bright mobile hero with a complete machine view and compact metrics. */
@media (max-width: 640px) {
  .hero {
    color: #173a56;
    background:
      linear-gradient(180deg, #eef4f7 0%, #e5edf1 48%, #d8e4e9 100%),
      repeating-linear-gradient(90deg, rgba(15, 62, 96, 0.035) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(15, 62, 96, 0.025) 0 1px, transparent 1px 18px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(83, 119, 139, 0.06)),
      repeating-linear-gradient(45deg, rgba(18, 69, 103, 0.018) 0 1px, transparent 1px 14px);
  }

  .hero-inner {
    padding-top: 19px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    color: #ae1d2d;
    text-shadow: none;
  }

  .hero h1 {
    color: #0b3458;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .hero-text {
    color: #3d596c;
    text-shadow: none;
  }

  .hero-origin-note {
    color: #8b6512;
    text-shadow: none;
  }

  .hero-machine-stage {
    width: 100vw;
    height: auto;
    aspect-ratio: 2122 / 941;
    margin: 2px 0 6px calc(50% - 50vw);
    background:
      linear-gradient(180deg, rgba(231, 239, 243, 0.04), rgba(210, 223, 229, 0.04)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") center center / contain no-repeat;
    filter: brightness(1.12) contrast(1.015) saturate(0.98);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
    box-shadow: none;
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 60px;
    gap: 6px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    grid-column: auto !important;
    min-height: 60px;
    height: 60px;
    padding: 6px 10px;
    border-color: rgba(88, 127, 151, 0.28);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(220, 231, 237, 0.74));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 3px 9px rgba(40, 76, 99, 0.08);
    backdrop-filter: blur(5px) saturate(96%);
  }

  .hero-metrics strong,
  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    margin-bottom: 2px;
    color: #123a5b;
    font-size: 0.82rem;
    line-height: 1.08;
    text-shadow: none;
  }

  .hero-metrics span,
  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    color: #536c7d;
    font-size: 0.61rem;
    line-height: 1.12;
    text-shadow: none;
  }
}

@media (max-width: 360px) {
  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-auto-rows: 58px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    min-height: 58px;
    height: 58px;
    padding-inline: 8px;
  }
}

/* Hindi localization: keep Devanagari copy readable inside the shared layout. */
html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Kohinoor Devanagari", Aptos, Inter, ui-sans-serif, system-ui, sans-serif;
}

html[lang="hi"] .hero-title-line,
html[lang="hi"] .hero-metrics strong,
html[lang="hi"] .hero-metrics span {
  white-space: normal;
}

html[lang="hi"] .hero-metrics div {
  height: auto;
  min-height: 78px;
}

html[lang="hi"] .hero-metrics strong {
  line-height: 1.08;
}

html[lang="hi"] .hero-metrics span {
  line-height: 1.18;
}

@media (min-width: 861px) {
  html[lang="hi"] .hero h1 {
    max-width: 700px;
    font-size: clamp(2.52rem, 3.36vw, 3.12rem);
    line-height: 1.12;
  }

  html[lang="hi"] .hero-metrics {
    grid-template-columns: repeat(4, minmax(128px, 1fr));
    width: min(100%, 590px);
  }

  html[lang="hi"] .hero-metrics div {
    min-height: 82px;
  }
}

@media (max-width: 640px) {
  html[lang="hi"] .hero-metrics div {
    min-height: 64px;
    padding-inline: 8px;
  }

  html[lang="hi"] .hero-metrics strong {
    font-size: 0.84rem;
    line-height: 1.12;
  }

  html[lang="hi"] .hero-metrics span {
    font-size: 0.65rem;
    line-height: 1.16;
  }
}

/* Keep header controls in the same geometry for every language version. */
:root {
  --header-contact-width-desktop: 146px;
  --header-contact-width-mobile: 104px;
  --header-contact-width-compact: 98px;
}

.site-header[data-header],
.site-header[data-header] .language-options,
.site-header[data-header] .header-whatsapp {
  direction: ltr;
}

.site-header[data-header] .brand {
  order: 1;
}

.site-header[data-header] .site-nav {
  order: 2;
}

.site-header[data-header] .header-whatsapp {
  order: 3;
  flex: 0 0 auto;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.site-header[data-header] .language-option {
  min-width: 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-wrap: nowrap;
}

.site-header[data-header] .header-whatsapp span {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
}

.site-header[data-header] .header-whatsapp strong {
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.005em;
}

@media (min-width: 861px) {
  .site-header[data-header] .site-nav > .language-options {
    flex: 0 0 auto;
  }

  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-desktop);
    min-width: var(--header-contact-width-desktop);
    max-width: var(--header-contact-width-desktop);
  }

  .site-header[data-header] .language-option {
    font-size: 0.72rem;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 0.54rem;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 860px) {
  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-mobile);
    min-width: var(--header-contact-width-mobile);
    max-width: var(--header-contact-width-mobile);
    justify-self: end;
  }

  .site-header[data-header] .mobile-language-options.language-options {
    direction: ltr;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .site-header[data-header] .mobile-language-options .language-option {
    min-width: 0;
    padding-inline: 2px;
    font-size: clamp(0.52rem, 1.72vw, 0.65rem);
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 0.4rem;
  }

  .site-header[data-header] .header-whatsapp strong {
    font-size: 0.58rem;
  }
}

@media (max-width: 360px) {
  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-compact);
    min-width: var(--header-contact-width-compact);
    max-width: var(--header-contact-width-compact);
  }

  .site-header[data-header] .mobile-language-options .language-option {
    font-size: 0.52rem;
  }
}

/* 2026-07-29: final visual, multilingual, and performance consistency pass. */
:root {
  --hero-card-surface: linear-gradient(135deg, rgba(8, 47, 88, 0.46), rgba(29, 96, 145, 0.29));
  --hero-card-line: rgba(214, 236, 252, 0.34);
}

/* Keep the authentic machine image clear while preserving sufficient contrast for copy. */
.hero {
  background:
    linear-gradient(90deg, rgba(5, 28, 60, 0.65) 0%, rgba(7, 41, 78, 0.48) 34%, rgba(8, 52, 90, 0.16) 66%, rgba(9, 59, 99, 0.035) 100%),
    linear-gradient(180deg, rgba(230, 247, 255, 0.22), rgba(4, 29, 59, 0.025)),
    url("assets/factory-hero-textile-rolls-wide-light.webp") center center / cover no-repeat,
    #123f6a;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(3, 18, 46, 0.004), rgba(3, 18, 46, 0.055)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 24px);
}

/* Every technical point uses the same crystal-glass treatment. */
.hero-metrics > div,
.hero-metrics > div:nth-child(2n),
.hero-metrics > div:nth-last-child(-n + 2) {
  border-color: var(--hero-card-line);
  background: var(--hero-card-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 7px 16px rgba(0, 18, 44, 0.07);
  backdrop-filter: blur(5px) saturate(108%);
}

/* Long language versions retain the shared layout without forced single-line overflow. */
html[lang="hi"] .hero-title-line,
html[lang="tr"] .hero-title-line,
html[lang="ru"] .hero-title-line,
html[lang="ar"] .hero-title-line,
html[lang="hi"] .hero-metrics strong,
html[lang="tr"] .hero-metrics strong,
html[lang="ru"] .hero-metrics strong,
html[lang="ar"] .hero-metrics strong,
html[lang="hi"] .hero-metrics span,
html[lang="tr"] .hero-metrics span,
html[lang="ru"] .hero-metrics span,
html[lang="ar"] .hero-metrics span {
  white-space: normal;
}

.spec-table th,
.spec-table td,
.feature-card h3,
.feature-card p,
.gallery-card h3,
.gallery-card p,
.workshop-card h3,
.workshop-card p {
  overflow-wrap: anywhere;
}

@media (min-width: 861px) {
  html[lang="hi"] .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 650px;
    font-size: clamp(2.42rem, 3.35vw, 3.02rem);
    line-height: 1.1;
  }

  html[lang="ar"] .hero h1 {
    max-width: 560px;
    font-size: clamp(2.3rem, 3.05vw, 2.82rem);
    line-height: 1.16;
  }

  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    width: min(100%, 606px);
    grid-template-columns: repeat(4, minmax(132px, 1fr));
  }

  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    min-height: 80px;
    padding: 11px 13px;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, #0c3b69 0%, #0d4a7c 52%, #0b3965 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 18px);
  }

  .hero-machine-stage {
    height: 166px;
    margin: 0 -14px 6px;
    background:
      linear-gradient(90deg, rgba(8, 44, 79, 0.105), rgba(8, 44, 79, 0.012) 28%, rgba(8, 44, 79, 0.012) 72%, rgba(8, 44, 79, 0.085)),
      linear-gradient(180deg, rgba(228, 246, 255, 0.13), rgba(8, 35, 64, 0.035)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") 60% center / auto 166px no-repeat;
    filter: brightness(1.3) contrast(1.01) saturate(1.03);
  }

  .hero-metrics {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 68px;
    gap: 6px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    height: auto;
    padding: 7px 10px;
    border-color: var(--hero-card-line);
    background: var(--hero-card-surface);
  }

  .hero-metrics strong,
  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    margin-bottom: 2px;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .hero-metrics span,
  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.67rem;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .hero-metrics > div:nth-child(2) strong,
  .hero-metrics > div:nth-child(3) strong,
  .hero-metrics > div:nth-child(4) strong {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-auto-rows: 78px;
  }

  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    font-size: 0.79rem;
    line-height: 1.12;
  }

  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    font-size: 0.62rem;
    line-height: 1.16;
  }

  .spec-table tr:not(.spec-group) {
    grid-template-columns: minmax(100px, 0.4fr) minmax(0, 1fr);
  }

  html[lang="hi"] .spec-table tr:not(.spec-group),
  html[lang="tr"] .spec-table tr:not(.spec-group),
  html[lang="ru"] .spec-table tr:not(.spec-group),
  html[lang="ar"] .spec-table tr:not(.spec-group) {
    grid-template-columns: minmax(94px, 0.38fr) minmax(0, 1fr);
  }

  html[lang="hi"] .spec-table th,
  html[lang="tr"] .spec-table th,
  html[lang="ru"] .spec-table th,
  html[lang="ar"] .spec-table th {
    font-size: 0.71rem;
    line-height: 1.24;
  }

  html[lang="hi"] .spec-table td,
  html[lang="tr"] .spec-table td,
  html[lang="ru"] .spec-table td,
  html[lang="ar"] .spec-table td {
    font-size: 0.8rem;
    line-height: 1.32;
  }
}

@media (max-width: 360px) {
  .hero-machine-stage {
    height: 158px;
    background-size: auto 158px;
  }

  .hero-metrics {
    grid-auto-rows: 70px;
  }

  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-auto-rows: 82px;
  }
}

/* Desktop header: keep contact and language controls compact and balanced. */
@media (min-width: 861px) {
  .site-header[data-header] .site-nav {
    display: contents;
  }

  .site-header[data-header] .site-nav > a {
    order: 2;
  }

  .site-header[data-header] .site-nav > a:first-child {
    margin-left: auto;
  }

  .site-header[data-header] .header-whatsapp {
    order: 3;
    margin-left: 8px;
  }

  .site-header[data-header] .site-nav > .language-options {
    order: 4;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    margin-left: 8px;
    padding: 2px;
    border-radius: 9px;
  }

  .site-header[data-header] .site-nav > .language-options .language-option {
    min-height: 26px;
    padding-inline: 8px;
    border-radius: 6px;
    line-height: 1;
  }
}

/* Brighter hero treatment: preserve copy contrast while revealing the real workshop. */
@media (min-width: 641px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 31, 63, 0.54) 0%, rgba(8, 48, 86, 0.36) 34%, rgba(12, 70, 111, 0.1) 66%, rgba(202, 230, 245, 0.015) 100%),
      linear-gradient(180deg, rgba(238, 250, 255, 0.3), rgba(18, 63, 101, 0.015)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") center center / cover no-repeat,
      #2e628a;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(226, 245, 255, 0.018), rgba(3, 18, 46, 0.035)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 24px);
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, #174f7d 0%, #145988 50%, #104a78 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 18px);
  }

  .hero-machine-stage {
    width: 100vw;
    height: clamp(176px, 50vw, 206px);
    margin: 0 0 8px calc(50% - 50vw);
    background:
      linear-gradient(90deg, rgba(22, 73, 111, 0.035), transparent 25%, transparent 75%, rgba(22, 73, 111, 0.035)),
      linear-gradient(180deg, rgba(242, 251, 255, 0.18), rgba(20, 66, 101, 0.012)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") center center / 100% auto no-repeat;
    filter: brightness(1.4) contrast(1.03) saturate(1.04);
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2) {
    background: linear-gradient(135deg, rgba(10, 54, 95, 0.39), rgba(42, 111, 159, 0.25));
    border-color: rgba(221, 240, 253, 0.4);
  }
}

@media (max-width: 360px) {
  .hero-machine-stage {
    height: 180px;
    background-size: 100% auto;
  }
}

/* Desktop benefits: remove excess depth without constraining translated copy. */
@media (min-width: 861px) {
  .feature-section {
    padding-bottom: 30px;
  }

  .feature-card {
    min-height: 140px;
    padding: 16px 18px;
    row-gap: 8px;
  }
}

/* Join the fixed header directly to the hero without a double separator. */
.site-header[data-header] {
  border-bottom: 0;
  box-shadow: 0 4px 12px rgba(6, 35, 75, 0.045);
}

@media (min-width: 861px) {
  .site-header[data-header] {
    height: 68px;
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  body {
    padding-top: 68px;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(2.55rem, 3.35vw, 3rem);
    line-height: 1.12;
  }
}

@media (max-width: 860px) {
  .site-header[data-header] {
    border-bottom: 0;
  }
}

/* 2026-08-10: lighter language-control outlines, matched to the waterjet site. */
.site-header[data-header] .language-options {
  border: 0;
  background: rgba(232, 242, 250, 0.28);
  box-shadow: none;
}

.site-header[data-header] .language-option {
  border: 1px solid rgba(233, 245, 253, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header[data-header] .language-option:hover,
.site-header[data-header] .language-option:focus-visible {
  border-color: rgba(242, 250, 255, 0.72);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-header[data-header] .language-option.is-active,
.site-header[data-header] .language-option.is-active:hover,
.site-header[data-header] .language-option.is-active:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #bd1830, #9e0f21);
  border-color: rgba(235, 103, 123, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 3px 8px rgba(121, 6, 27, 0.12);
}

@media (max-width: 860px) {
  .site-header[data-header] .mobile-language-options.language-options {
    gap: 2px;
    padding-inline: 2px;
    border-top: 0;
    border-bottom: 1px solid rgba(215, 236, 250, 0.2);
    background: rgba(16, 62, 101, 0.16);
    box-shadow: none;
  }

  .site-header[data-header] .mobile-language-options .language-option {
    border-color: rgba(230, 244, 253, 0.32);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .site-header[data-header] .mobile-language-options .language-option.is-active,
  .site-header[data-header] .mobile-language-options .language-option.is-active:hover,
  .site-header[data-header] .mobile-language-options .language-option.is-active:focus-visible {
    color: #ffffff;
    border-color: rgba(164, 217, 247, 0.66);
    background: linear-gradient(180deg, rgba(65, 139, 193, 0.96), rgba(32, 91, 140, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 1px rgba(115, 192, 235, 0.12),
      0 2px 7px rgba(46, 135, 190, 0.2);
  }
}

/* 2026-08-10: blend the mobile workshop image into a quieter steel-blue hero. */
@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, #2b6382 0%, #3d7088 34%, #5c7d8d 50%, #4f7080 66%, #2f6079 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 18px);
  }

  .hero-machine-stage {
    background:
      linear-gradient(180deg, rgba(76, 110, 128, 0.42) 0%, rgba(151, 175, 186, 0.08) 15%, transparent 42%, transparent 70%, rgba(65, 98, 115, 0.32) 100%),
      linear-gradient(90deg, rgba(67, 101, 119, 0.14), transparent 25%, transparent 76%, rgba(67, 101, 119, 0.12)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") center center / 100% auto no-repeat;
    filter: brightness(1.28) contrast(1.015) saturate(0.98);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    box-shadow:
      inset 0 18px 24px -22px rgba(55, 89, 106, 0.75),
      inset 0 -20px 26px -23px rgba(47, 82, 100, 0.72);
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    border-color: rgba(239, 247, 250, 0.52);
    background: linear-gradient(145deg, rgba(229, 238, 242, 0.24), rgba(89, 113, 124, 0.34));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 4px 12px rgba(20, 49, 64, 0.1);
    backdrop-filter: blur(8px) saturate(94%);
  }
}

/* Final mobile hero palette: light industrial surface with figures integrated into the workshop image. */
@media (max-width: 640px) {
  .hero {
    color: #173a56;
    background:
      linear-gradient(180deg, #eef4f7 0%, #e5edf1 48%, #d8e4e9 100%),
      repeating-linear-gradient(90deg, rgba(15, 62, 96, 0.035) 0 1px, transparent 1px 20px),
      repeating-linear-gradient(0deg, rgba(15, 62, 96, 0.025) 0 1px, transparent 1px 18px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(83, 119, 139, 0.06)),
      repeating-linear-gradient(45deg, rgba(18, 69, 103, 0.018) 0 1px, transparent 1px 14px);
  }

  .hero-inner {
    padding-top: 19px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    color: #ae1d2d;
    text-shadow: none;
  }

  .hero h1 {
    color: #0b3458;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .hero-text {
    color: #3d596c;
    text-shadow: none;
  }

  .hero-origin-note {
    color: #8b6512;
    text-shadow: none;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-machine-stage,
  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    grid-area: 5 / 1;
  }

  .hero-machine-stage {
    position: relative;
    z-index: 0;
    width: 100vw;
    height: 205px;
    min-height: 205px;
    aspect-ratio: auto;
    margin: 3px 0 0 calc(50% - 50vw);
    background:
      linear-gradient(90deg, rgba(201, 217, 226, 0.93) 0%, rgba(204, 220, 229, 0.84) 25%, rgba(209, 224, 232, 0.62) 39%, rgba(218, 231, 237, 0.2) 53%, transparent 64%),
      linear-gradient(180deg, rgba(231, 239, 243, 0.025), rgba(210, 223, 229, 0.025)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") right center / auto 108% no-repeat;
    filter: brightness(1.12) contrast(1.015) saturate(0.98);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
    box-shadow: none;
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    position: relative;
    z-index: 1;
    align-self: center;
    justify-self: start;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    width: min(43vw, 164px);
    max-width: 43vw;
    margin: 0;
    padding: 7px 10px 7px 3px;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    grid-column: auto !important;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 4px 3px;
    gap: 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(54, 95, 121, 0.17);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-metrics > div:last-child,
  html[lang="hi"] .hero-metrics > div:last-child,
  html[lang="tr"] .hero-metrics > div:last-child,
  html[lang="ru"] .hero-metrics > div:last-child,
  html[lang="ar"] .hero-metrics > div:last-child {
    border-bottom: 0;
  }

  .hero-metrics strong,
  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    display: inline;
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    color: #0f395a;
    font-size: clamp(0.63rem, 2.85vw, 0.72rem);
    font-weight: 820;
    line-height: 1.15;
    white-space: normal;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .hero-metrics span,
  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    display: inline;
    flex: 0 1 auto;
    min-width: 0;
    color: #567184;
    font-size: clamp(0.52rem, 2.25vw, 0.59rem);
    font-weight: 680;
    line-height: 1.18;
    white-space: normal;
    text-shadow: none;
  }

  html[lang="ar"] .hero-metrics {
    justify-self: left;
    direction: rtl;
    text-align: right;
  }

  html[lang="ar"] .hero-machine-stage {
    justify-self: left;
  }

  html[lang="ar"] .hero-metrics > div {
    justify-content: flex-end;
  }

  .intro-band {
    color: #17364f;
    border-top: 1px solid rgba(91, 125, 146, 0.16);
    background:
      linear-gradient(145deg, rgba(242, 247, 249, 0.99), rgba(224, 235, 241, 0.98)),
      repeating-linear-gradient(45deg, rgba(35, 85, 112, 0.035) 0 1px, transparent 1px 15px);
  }

  .intro-band::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%);
  }

  .intro-grid h2 {
    color: #123a5b;
  }

  .intro-grid .section-kicker {
    color: #a51f31;
  }

  .intro-stack p {
    color: #4d6678;
  }

  .check-list li {
    color: #24465f;
  }

  .check-list li::before {
    background: #b61d2d;
  }
}

@media (max-width: 360px) {
  .hero-machine-stage {
    height: 190px;
    min-height: 190px;
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    width: min(46vw, 154px);
    max-width: 46vw;
    padding-right: 8px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

/* 2026-08-10: light header and unobscured mobile machine presentation. */
.site-header[data-header] {
  background:
    linear-gradient(104deg, rgba(249, 252, 254, 0.96), rgba(233, 242, 248, 0.93)),
    rgba(242, 248, 252, 0.94);
  border-bottom: 0;
  box-shadow:
    inset 0 -1px 0 rgba(139, 177, 207, 0.34),
    0 5px 15px rgba(14, 49, 82, 0.07);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.site-header[data-header] .brand-logo-dark {
  display: block;
}

.site-header[data-header] .brand-logo-light {
  display: none;
}

.site-header[data-header] .nav-toggle {
  border-color: rgba(116, 158, 192, 0.48);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 3px 9px rgba(17, 55, 91, 0.08);
}

.site-header[data-header] .nav-toggle span {
  background: #174b78;
}

.site-header[data-header] .language-options {
  background: rgba(224, 237, 246, 0.62);
}

.site-header[data-header] .language-option {
  color: #274d6e;
  border-color: rgba(151, 185, 211, 0.42);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.site-header[data-header] .language-option:hover,
.site-header[data-header] .language-option:focus-visible {
  color: #123f68;
  border-color: rgba(112, 165, 204, 0.6);
  background: rgba(255, 255, 255, 0.76);
}

@media (max-width: 860px) {
  .site-header[data-header] .mobile-language-options.language-options {
    border-top: 1px solid rgba(255, 255, 255, 0.56);
    border-bottom: 1px solid rgba(129, 169, 201, 0.36);
    background: rgba(222, 235, 244, 0.7);
  }

  .site-header[data-header] .mobile-language-options .language-option {
    color: #294f70;
    border-color: rgba(147, 182, 208, 0.4);
    background: rgba(255, 255, 255, 0.42);
  }

  .site-header[data-header] .mobile-language-options .language-option.is-active,
  .site-header[data-header] .mobile-language-options .language-option.is-active:hover,
  .site-header[data-header] .mobile-language-options .language-option.is-active:focus-visible {
    color: #ffffff;
    border-color: rgba(102, 177, 224, 0.74);
    background: linear-gradient(180deg, #5a9dcc, #357cac);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 2px 7px rgba(46, 126, 179, 0.2);
  }
}

@media (max-width: 640px) {
  .hero-machine-stage {
    background:
      linear-gradient(90deg,
        rgba(201, 217, 226, 0.94) 0%,
        rgba(204, 220, 229, 0.82) 24%,
        rgba(209, 224, 232, 0.52) 34%,
        rgba(218, 231, 237, 0.16) 42%,
        transparent 49%),
      url("assets/factory-hero-textile-rolls-wide-light.webp") calc(100% + 10px) center / auto 108% no-repeat;
    filter: brightness(1.16) contrast(1.03) saturate(1);
    -webkit-mask-image: none;
    mask-image: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -1px 0 rgba(111, 148, 169, 0.12);
  }
}

@media (max-width: 360px) {
  .hero-machine-stage {
    background-position: calc(100% + 7px) center;
  }
}

/* 2026-08-11: safe card insets and a compact, visually continuous mobile hero. */
@media (min-width: 861px) {
  .hero-metrics > div,
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 78px;
    height: auto;
    padding: 14px 17px;
    row-gap: 5px;
  }

  .hero-metrics strong,
  .hero-metrics span {
    max-width: 100%;
    margin-bottom: 0;
    overflow-wrap: anywhere;
  }

  .metric-tuck-in span {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  :root {
    --header-contact-width-mobile: 98px;
    --header-contact-width-compact: 94px;
  }

  .site-header[data-header] {
    grid-template-columns: minmax(0, 1fr) var(--header-contact-width-mobile) 34px;
    column-gap: 6px;
    row-gap: 3px;
    min-height: 0;
    padding: 6px 12px 3px;
  }

  .site-header[data-header].is-language-hidden {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .site-header[data-header] .brand-logo {
    max-height: 25px;
  }

  .site-header[data-header] .header-whatsapp {
    box-sizing: border-box;
    width: var(--header-contact-width-mobile);
    min-width: var(--header-contact-width-mobile);
    max-width: var(--header-contact-width-mobile);
    min-height: 30px;
    height: 30px;
    padding: 2px 5px 3px;
    flex-direction: column;
    gap: 1px;
    color: #123f68;
    border-color: rgba(91, 158, 203, 0.58);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(222, 244, 255, 0.98), rgba(158, 211, 239, 0.96));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      inset 0 -2px 0 rgba(70, 151, 204, 0.2),
      0 3px 8px rgba(31, 96, 139, 0.11),
      0 0 10px rgba(103, 193, 238, 0.12);
  }

  .site-header[data-header] .header-whatsapp::before {
    left: 4px;
    right: 4px;
    top: 2px;
    height: 32%;
  }

  .site-header[data-header] .header-whatsapp span {
    color: #24658c;
    font-size: 0.35rem;
    font-weight: 760;
    letter-spacing: 0.035em;
  }

  .site-header[data-header] .header-whatsapp strong {
    color: #0c3c65;
    font-size: 0.52rem;
    font-weight: 820;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .site-header[data-header] .header-whatsapp:hover,
  .site-header[data-header] .header-whatsapp:focus-visible {
    color: #0b365c;
    border-color: rgba(66, 144, 197, 0.7);
    background: linear-gradient(180deg, rgba(232, 248, 255, 0.99), rgba(173, 220, 243, 0.98));
  }

  .site-header[data-header] .nav-toggle {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .site-header[data-header] .nav-toggle span {
    width: 17px;
    height: 2px;
    margin: 4px auto;
  }

  .site-header[data-header] .mobile-language-options.language-options {
    width: calc(100% + 24px);
    margin: 0 -12px -3px;
    padding: 2px 2px 3px;
  }
}

@media (max-width: 640px) {
  .hero,
  .intro-band {
    background:
      repeating-linear-gradient(45deg, rgba(25, 70, 98, 0.028) 0 1px, transparent 1px 14px),
      repeating-linear-gradient(-45deg, rgba(25, 70, 98, 0.016) 0 1px, transparent 1px 14px),
      linear-gradient(180deg, #eef3f5 0%, #e6edef 100%);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(77, 116, 138, 0.025));
  }

  .hero-machine-stage {
    margin-top: 0;
    margin-bottom: 0;
    background:
      linear-gradient(180deg,
        rgba(234, 241, 244, 0.96) 0%,
        rgba(234, 241, 244, 0.36) 9%,
        transparent 20%,
        transparent 80%,
        rgba(230, 237, 240, 0.38) 92%,
        rgba(230, 237, 240, 0.98) 100%),
      linear-gradient(90deg,
        #e8eff2 0%,
        #e8eff2 3%,
        rgba(228, 237, 241, 0.98) 10%,
        rgba(216, 229, 235, 0.82) 25%,
        rgba(218, 231, 237, 0.26) 39%,
        transparent 47%),
      url("assets/factory-hero-textile-rolls-wide-light.webp") right center / auto 105% no-repeat;
    filter: brightness(1.17) contrast(1.025) saturate(1);
    border: 0;
    box-shadow: none;
  }

  .intro-band {
    border-top: 0;
  }
}

@media (max-width: 360px) {
  .site-header[data-header] {
    grid-template-columns: minmax(0, 1fr) var(--header-contact-width-compact) 32px;
    column-gap: 5px;
    padding-inline: 9px;
  }

  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-compact);
    min-width: var(--header-contact-width-compact);
    max-width: var(--header-contact-width-compact);
  }

  .site-header[data-header] .nav-toggle {
    width: 32px;
    height: 32px;
  }

  .site-header[data-header] .mobile-language-options.language-options {
    width: calc(100% + 18px);
    margin-inline: -9px;
  }
}

/* 2026-08-11: one visual surface and one type scale across all languages. */
.intro-grid h2,
.section-heading h2,
.spec-copy h2,
.proof-layout h2,
.faq-layout h2,
.inquiry-layout h2 {
  max-width: 100%;
  font-size: clamp(2rem, 2.7vw, 2.45rem);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-card h3,
.application-grid h3,
.gallery-card h3,
.workshop-card h3,
.faq-item h3 {
  font-size: 1.06rem;
  font-weight: 720;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro-stack p,
.section-heading > p:not(.section-kicker),
.feature-card p,
.application-grid p,
.gallery-card p,
.workshop-card p,
.spec-copy > p,
.proof-layout p,
.faq-layout p,
.inquiry-layout p {
  font-size: 0.96rem;
  line-height: 1.58;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .hero,
  .intro-band {
    background:
      repeating-linear-gradient(45deg, rgba(24, 68, 94, 0.024) 0 1px, transparent 1px 15px),
      repeating-linear-gradient(-45deg, rgba(24, 68, 94, 0.014) 0 1px, transparent 1px 15px),
      #e9f0f3;
  }

  .hero::after,
  .intro-band::before {
    display: none;
  }

  .hero-machine-stage {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    background:
      linear-gradient(90deg,
        #e9f0f3 0%,
        rgba(233, 240, 243, 0.98) 8%,
        rgba(233, 240, 243, 0.84) 22%,
        rgba(233, 240, 243, 0.42) 36%,
        rgba(233, 240, 243, 0.08) 48%,
        transparent 56%),
      url("assets/factory-hero-textile-rolls-wide-light.webp") right center / auto 106% no-repeat;
    filter: brightness(1.16) contrast(1.02) saturate(1);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7px, #000 calc(100% - 7px), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 7px, #000 calc(100% - 7px), transparent 100%);
    box-shadow: none;
  }

  .intro-band {
    margin-top: -1px;
    border: 0;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.15rem);
    font-weight: 780;
    line-height: 1.07;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-text {
    font-size: 0.91rem;
    font-weight: 500;
    line-height: 1.52;
    letter-spacing: 0;
  }

  .hero-origin-note {
    font-size: 0.8rem;
    font-weight: 720;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .spec-copy h2,
  .proof-layout h2,
  .faq-layout h2,
  .inquiry-layout h2 {
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .section-kicker {
    font-size: 0.72rem;
  }

  .feature-card h3,
  .application-grid h3,
  .gallery-card h3,
  .workshop-card h3,
  .faq-item h3 {
    font-size: 1rem;
    line-height: 1.28;
  }

  .intro-stack p,
  .section-heading > p:not(.section-kicker),
  .feature-card p,
  .application-grid p,
  .gallery-card p,
  .workshop-card p,
  .spec-copy > p,
  .proof-layout p,
  .faq-layout p,
  .inquiry-layout p {
    font-size: 0.94rem;
    line-height: 1.56;
  }
}

@media (max-width: 360px) {
  .intro-grid h2,
  .section-heading h2,
  .spec-copy h2,
  .proof-layout h2,
  .faq-layout h2,
  .inquiry-layout h2 {
    font-size: 1.34rem;
  }
}

/* 2026-08-11: keep Arabic mobile data physically left of the machine. */
@media (max-width: 640px) {
  html[lang="ar"] .hero-metrics {
    justify-self: left !important;
    align-self: center;
    width: min(38vw, 144px);
    max-width: 38vw;
    margin-right: 0;
    margin-left: calc(50% - 50vw + 10px);
    padding: 5px 0;
    direction: rtl;
    text-align: right;
  }

  html[lang="ar"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div:nth-child(2n),
  html[lang="ar"] .hero-metrics > div:nth-last-child(-n + 2) {
    justify-content: flex-end;
    width: 100%;
    padding: 4px 0;
    gap: 0 3px;
  }

  html[lang="ar"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html[lang="ar"] .hero-metrics strong {
    direction: ltr;
    unicode-bidi: isolate;
    font-size: clamp(0.61rem, 2.6vw, 0.69rem);
  }

  html[lang="ar"] .hero-metrics span {
    font-size: clamp(0.5rem, 2.15vw, 0.57rem);
    line-height: 1.16;
  }

  html[lang="ar"] .hero-machine-stage {
    background-position: calc(100% + 8px) center;
  }
}

@media (max-width: 360px) {
  html[lang="ar"] .hero-metrics {
    width: min(37vw, 132px);
    max-width: 37vw;
    margin-left: calc(50% - 50vw + 8px);
  }
}

/* 2026-08-11: shorten mobile metric separators before the machine begins. */
@media (max-width: 640px) {
  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    position: relative;
    border-bottom: 0 !important;
  }

  .hero-metrics > div:not(:last-child)::after,
  html[lang="hi"] .hero-metrics > div:not(:last-child)::after,
  html[lang="tr"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ru"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(54, 95, 121, 0.17);
    pointer-events: none;
  }

  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    left: 0;
    right: 18px;
  }

  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    width: 100%;
    max-width: 100%;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  html[lang="tr"] .hero h1 {
    font-size: clamp(1.55rem, 7vw, 1.82rem);
    line-height: 1.08;
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(1.38rem, 6.1vw, 1.62rem);
    line-height: 1.09;
  }
}

/* 2026-08-11: keep longer Turkish and Russian product names compact on phones. */
.mobile-title-break {
  display: none;
}

@media (max-width: 640px) {
  html[lang="tr"] .hero h1 {
    font-size: clamp(1.34rem, 5.9vw, 1.55rem);
    line-height: 1.09;
  }

  html[lang="tr"] .mobile-title-break {
    display: inline;
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(1.18rem, 5.35vw, 1.42rem);
    line-height: 1.1;
  }
}

/* 2026-08-11: keep mobile metric rules and Arabic copy clear of the machine. */
@media (max-width: 640px) {
  .hero-metrics > div:not(:last-child)::after,
  html[lang="hi"] .hero-metrics > div:not(:last-child)::after,
  html[lang="tr"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ru"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    left: 3px;
    right: auto;
    width: calc(100% - 38px);
    max-width: 118px;
  }

  html[lang="ar"] .hero-metrics {
    justify-self: left !important;
    width: min(38vw, 144px);
    max-width: 38vw;
    margin: 0 0 0 calc(50% - 50vw + 12px) !important;
    padding: 5px 8px 5px 0;
    direction: ltr;
    text-align: left;
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
  }

  html[lang="ar"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div:nth-child(2n),
  html[lang="ar"] .hero-metrics > div:nth-last-child(-n + 2) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start !important;
    width: 100%;
    padding: 4px 0;
    gap: 1px;
    direction: ltr;
    text-align: left;
  }

  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    left: 0;
    right: auto;
    width: calc(100% - 34px);
    max-width: 104px;
  }

  html[lang="ar"] .hero-metrics strong {
    align-self: flex-start;
    direction: ltr;
    text-align: left;
  }

  html[lang="ar"] .hero-metrics span {
    align-self: flex-start;
    direction: rtl;
    unicode-bidi: isolate;
    text-align: left;
  }

  html[lang="ar"] .hero-machine-stage {
    border: 0 !important;
    border-left: 0 !important;
    outline: 0;
    background-position: 0 0, 0 0, calc(100% + 8px) center !important;
    box-shadow: none !important;
  }
}

@media (max-width: 360px) {
  .hero-metrics > div:not(:last-child)::after,
  html[lang="hi"] .hero-metrics > div:not(:last-child)::after,
  html[lang="tr"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ru"] .hero-metrics > div:not(:last-child)::after {
    width: calc(100% - 34px);
  }

  html[lang="ar"] .hero-metrics {
    margin-left: calc(50% - 50vw + 10px) !important;
  }
}

/* 2026-08-11: compact section rhythm, multilingual mobile titles, and a softer data table. */
.spec-table .spec-group th {
  color: #ffffff;
  background: #31688f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(13, 62, 96, 0.18);
}

@media (min-width: 861px) {
  .feature-section {
    padding-bottom: 18px;
  }

  .factory-gallery-section {
    padding-top: 34px;
  }
}

@media (max-width: 860px) {
  .feature-section {
    padding-bottom: 16px;
  }

  .factory-gallery-section {
    padding-top: 26px;
  }
}

@media (max-width: 640px) {
  .intro-grid h2 {
    max-width: none;
    font-size: clamp(1.15rem, 4.9vw, 1.28rem);
    line-height: 1.16;
    text-wrap: balance;
  }

  .hero-metrics > div:not(:last-child)::after,
  html[lang="hi"] .hero-metrics > div:not(:last-child)::after,
  html[lang="tr"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ru"] .hero-metrics > div:not(:last-child)::after {
    width: calc(100% - 46px);
    max-width: 92px;
  }

  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    width: calc(100% - 46px);
    max-width: 86px;
  }

  html[lang="tr"] .hero h1 {
    font-size: clamp(1.24rem, 5.45vw, 1.46rem);
    line-height: 1.08;
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(1.08rem, 4.9vw, 1.3rem);
    line-height: 1.09;
  }
}

@media (max-width: 360px) {
  .intro-grid h2 {
    font-size: 1.12rem;
  }

  html[lang="tr"] .hero h1 {
    font-size: 1.18rem;
  }

  html[lang="ru"] .hero h1 {
    font-size: 1.03rem;
  }
}

/* 2026-08-12: woven specification surface and clearer media controls. */
.spec-table-wrap {
  background: var(--fabric-section);
}

.spec-table tr:not(.spec-group) th {
  background: rgba(228, 238, 245, 0.7);
}

.spec-table tr:not(.spec-group) td {
  background: rgba(247, 250, 252, 0.68);
}

.spec-table tr:not(.spec-group):hover th,
.spec-table tr:not(.spec-group):hover td {
  background: rgba(219, 233, 242, 0.82);
}

.spec-table .spec-group th {
  background: linear-gradient(180deg, #477fa3 0%, #376f95 100%);
}

@media (max-width: 860px) {
  .site-header[data-header] .header-whatsapp {
    gap: 2px;
  }
}

/* 2026-08-13: private WhatsApp destination with a compact text-only control. */
.site-header[data-header] .header-whatsapp {
  flex-direction: row;
  gap: 0;
}

.site-header[data-header] .header-whatsapp span {
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.045em;
  line-height: 1;
}

@media (min-width: 861px) {
  .site-header[data-header] .header-whatsapp {
    width: 138px;
    min-width: 138px;
    max-width: 138px;
  }
}

@media (max-width: 860px) {
  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-mobile);
    min-width: var(--header-contact-width-mobile);
    max-width: var(--header-contact-width-mobile);
    padding: 2px 6px;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: clamp(0.5rem, 2vw, 0.58rem);
  }
}

@media (max-width: 360px) {
  .site-header[data-header] .header-whatsapp {
    width: var(--header-contact-width-compact);
    min-width: var(--header-contact-width-compact);
    max-width: var(--header-contact-width-compact);
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 0.48rem;
  }
}

/* 2026-08-20: No.2 homepage video hero and relocated static product image. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  background:
    url("assets/factory-hero-textile-rolls-wide-light.webp") center center / cover no-repeat,
    #04152d;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.91) contrast(1.04) saturate(0.9);
  pointer-events: none;
}

.hero::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 14, 35, 0.9) 0%, rgba(3, 22, 49, 0.78) 36%, rgba(3, 24, 52, 0.45) 67%, rgba(3, 24, 52, 0.25) 100%),
    linear-gradient(180deg, rgba(1, 12, 30, 0.08), rgba(1, 12, 30, 0.34));
  pointer-events: none;
}

.hero::after {
  display: block;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 15, 38, 0.01), rgba(2, 15, 38, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 24px);
  pointer-events: none;
}

.hero-inner {
  z-index: 2;
}

.hero-machine-stage {
  display: none !important;
}

.product-image-showcase {
  position: relative;
  padding: clamp(28px, 4.2vw, 54px) 0;
  border-bottom: 1px solid rgba(104, 141, 168, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(231, 240, 246, 0.94)),
    #edf4f8;
}

.product-image-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 139, 166, 0.28);
  border-radius: 14px;
  background: #dce7ed;
  box-shadow:
    0 18px 42px rgba(17, 55, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-image-figure picture,
.product-image-figure img {
  display: block;
  width: 100%;
}

.product-image-figure img {
  height: auto;
  aspect-ratio: 2122 / 941;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 860px) {
  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 14, 35, 0.86) 0%, rgba(3, 23, 50, 0.7) 56%, rgba(3, 23, 50, 0.48) 100%),
      linear-gradient(180deg, rgba(2, 15, 37, 0.18), rgba(2, 15, 37, 0.4));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    color: #f5f9fc;
    background:
      linear-gradient(180deg, rgba(3, 19, 43, 0.74), rgba(3, 24, 52, 0.78)),
      url("assets/factory-hero-textile-rolls-wide-light.webp") 64% center / cover no-repeat,
      #04152d;
  }

  .hero-video {
    object-position: 55% center;
    filter: brightness(0.8) contrast(1.04) saturate(0.86);
  }

  .hero::before {
    display: block;
    background:
      linear-gradient(180deg, rgba(2, 15, 36, 0.78) 0%, rgba(3, 23, 50, 0.63) 48%, rgba(2, 17, 40, 0.79) 100%),
      linear-gradient(90deg, rgba(2, 16, 38, 0.34), rgba(2, 16, 38, 0.14));
  }

  .hero::after {
    display: block;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 15px);
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: 0;
    margin-inline: 14px;
    padding: 25px 0 22px;
  }

  .hero-copy,
  html[lang="ar"] .hero-copy {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero .eyebrow {
    color: #ff6b78;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
  }

  .hero-text {
    color: rgba(240, 247, 253, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  }

  .hero-origin-note {
    color: #ffdc78;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    width: 100%;
    max-width: none;
    margin: 15px 0 0 !important;
    padding: 0;
    gap: 7px;
    direction: ltr;
    text-align: left;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center !important;
    width: auto;
    min-width: 0;
    min-height: 66px;
    height: auto;
    padding: 9px 11px;
    gap: 3px;
    direction: ltr;
    text-align: left;
    border: 1px solid rgba(205, 230, 249, 0.24);
    border-radius: 8px;
    background: linear-gradient(140deg, rgba(6, 38, 80, 0.68), rgba(8, 46, 91, 0.48));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 6px 16px rgba(0, 10, 31, 0.09);
    backdrop-filter: blur(5px) saturate(108%);
  }

  .hero-metrics > div:not(:last-child)::after,
  html[lang="hi"] .hero-metrics > div:not(:last-child)::after,
  html[lang="tr"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ru"] .hero-metrics > div:not(:last-child)::after,
  html[lang="ar"] .hero-metrics > div:not(:last-child)::after {
    display: none;
  }

  .hero-metrics strong,
  html[lang="hi"] .hero-metrics strong,
  html[lang="tr"] .hero-metrics strong,
  html[lang="ru"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics strong {
    align-self: flex-start;
    margin: 0;
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.1;
    text-align: left;
    text-shadow: none;
  }

  .hero-metrics span,
  html[lang="hi"] .hero-metrics span,
  html[lang="tr"] .hero-metrics span,
  html[lang="ru"] .hero-metrics span,
  html[lang="ar"] .hero-metrics span {
    align-self: flex-start;
    color: rgba(222, 238, 250, 0.86);
    font-size: 0.69rem;
    line-height: 1.18;
    direction: inherit;
    text-align: left;
    text-shadow: none;
  }

  html[lang="ar"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics strong,
  html[lang="ar"] .hero-metrics span {
    align-items: flex-end;
    text-align: right;
  }

  html[lang="ar"] .hero-metrics > div {
    direction: rtl;
  }

  html[lang="ar"] .hero-metrics strong {
    align-self: flex-end;
    direction: ltr;
  }

  html[lang="ar"] .hero-metrics span {
    align-self: flex-end;
    direction: rtl;
  }

  .product-image-showcase {
    padding: 22px 0;
  }

  .product-image-showcase .section-shell {
    width: calc(100% - 28px);
  }

  .product-image-figure {
    border-radius: 10px;
    box-shadow: 0 11px 26px rgba(17, 55, 84, 0.11);
  }

  .product-image-figure img {
    aspect-ratio: 16 / 9;
    object-position: 70% center;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    width: calc(100% - 24px);
    margin-inline: 12px;
  }

  .hero-metrics,
  html[lang="hi"] .hero-metrics,
  html[lang="tr"] .hero-metrics,
  html[lang="ru"] .hero-metrics,
  html[lang="ar"] .hero-metrics {
    gap: 6px;
  }

  .hero-metrics > div,
  .hero-metrics > div:nth-child(2n),
  .hero-metrics > div:nth-last-child(-n + 2),
  html[lang="hi"] .hero-metrics > div,
  html[lang="tr"] .hero-metrics > div,
  html[lang="ru"] .hero-metrics > div,
  html[lang="ar"] .hero-metrics > div {
    min-height: 62px;
    padding: 8px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    visibility: hidden;
  }
}

/* 2026-08-20: film-grain hero, translucent copy, and metrics on the static product image. */
.hero .eyebrow,
.hero h1,
.hero-text,
.hero-origin-note {
  opacity: 0.8;
}

.hero-film-effect {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-film-effect::before {
  content: "";
  position: absolute;
  inset: -24%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.82'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.32;
  animation: hero-film-grain 0.22s steps(2, end) infinite;
  will-change: transform;
}

.hero-film-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 32%,
      rgba(255, 255, 255, 0.11) 32.15%,
      rgba(3, 14, 31, 0.18) 32.65%,
      transparent 33.1%,
      transparent 71%,
      rgba(255, 255, 255, 0.08) 71.15%,
      rgba(3, 14, 31, 0.14) 71.55%,
      transparent 72%),
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.028) 1px,
      rgba(0, 0, 0, 0.028) 3px,
      transparent 3px,
      transparent 5px);
  opacity: 0.42;
  animation:
    hero-film-roll 4.8s steps(1, end) infinite,
    hero-film-flicker 2.6s steps(1, end) infinite;
}

.hero-video {
  transform: scale(1.018);
  animation: hero-frame-jump 6.2s steps(1, end) infinite;
  will-change: transform;
}

@keyframes hero-film-grain {
  0% { transform: translate3d(-2%, -3%, 0); }
  20% { transform: translate3d(3%, 1%, 0); }
  40% { transform: translate3d(-1%, 4%, 0); }
  60% { transform: translate3d(4%, -2%, 0); }
  80% { transform: translate3d(-4%, 2%, 0); }
  100% { transform: translate3d(2%, -4%, 0); }
}

@keyframes hero-film-roll {
  0%, 30% { transform: translateY(0); }
  31% { transform: translateY(2px); }
  32%, 68% { transform: translateY(0); }
  69% { transform: translateY(-3px); }
  70%, 100% { transform: translateY(0); }
}

@keyframes hero-film-flicker {
  0%, 18%, 22%, 62%, 66%, 100% { opacity: 0.4; }
  20% { opacity: 0.55; }
  64% { opacity: 0.3; }
}

@keyframes hero-frame-jump {
  0%, 24%, 25%, 59%, 60%, 84%, 85%, 100% {
    transform: scale(1.018) translate3d(0, 0, 0);
  }
  24.25% { transform: scale(1.018) translate3d(-3px, 1px, 0); }
  24.5% { transform: scale(1.018) translate3d(2px, -1px, 0); }
  59.25% { transform: scale(1.018) translate3d(0, 2px, 0); }
  84.25% { transform: scale(1.018) translate3d(3px, 0, 0); }
}

.product-image-figure {
  position: relative;
  isolation: isolate;
}

.product-image-figure::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(2, 16, 38, 0.62));
  pointer-events: none;
}

.product-image-metrics {
  position: absolute;
  left: clamp(22px, 4vw, 52px);
  bottom: clamp(20px, 3vw, 42px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(620px, calc(100% - 104px));
  gap: 8px;
  direction: ltr;
}

.product-image-metrics > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid rgba(204, 230, 249, 0.3);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(5, 34, 74, 0.82), rgba(8, 49, 96, 0.66));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 7px 18px rgba(0, 10, 31, 0.16);
  backdrop-filter: blur(6px) saturate(108%);
}

.product-image-metrics strong {
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.product-image-metrics span {
  margin-top: 4px;
  color: rgba(220, 237, 249, 0.86);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .product-image-metrics {
  direction: rtl;
}

html[dir="rtl"] .product-image-metrics > div {
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 860px) {
  .product-image-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(430px, calc(100% - 56px));
  }
}

@media (max-width: 640px) {
  .product-image-figure img {
    aspect-ratio: 4 / 3;
    object-position: 70% center;
  }

  .product-image-figure::after {
    inset: 32% 0 0;
    background: linear-gradient(180deg, transparent, rgba(2, 16, 38, 0.76));
  }

  .product-image-metrics,
  html[dir="rtl"] .product-image-metrics {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    gap: 7px;
  }

  .product-image-metrics > div {
    min-height: 60px;
    padding: 8px 9px;
  }

  .product-image-metrics strong {
    font-size: 0.87rem;
  }

  .product-image-metrics span {
    font-size: 0.64rem;
  }

  .hero-film-effect::before {
    opacity: 0.26;
  }

  .hero-film-effect::after {
    opacity: 0.34;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
    transform: scale(1.01);
  }

  .hero-film-effect::before,
  .hero-film-effect::after {
    animation: none;
  }
}

/* 2026-08-20: compact hero copy and clean machine figures below the product image. */
.hero-copy,
html[lang="ar"] .hero-copy {
  width: min(100%, 540px);
  max-width: 540px;
}

.hero .eyebrow {
  margin-bottom: 10px;
  font-size: 0.66rem;
  line-height: 1.2;
}

.hero h1,
html[lang="tr"] .hero h1,
html[lang="ru"] .hero h1 {
  max-width: 540px;
  margin-bottom: 12px;
  font-size: clamp(1.95rem, 2.65vw, 2.38rem);
  line-height: 1.08;
}

.hero-title-line {
  white-space: normal;
}

.hero .hero-text {
  max-width: 460px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-origin-note {
  width: min(100%, 460px);
  max-width: 460px;
  font-size: 0.66rem;
  line-height: 1.32;
}

.product-image-figure::after {
  content: none;
}

.product-image-showcase .section-shell > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  position: static;
  inset: auto;
  z-index: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: clamp(20px, 2.3vw, 28px) 0 0;
  padding: 0 2px;
  gap: clamp(18px, 3vw, 42px);
  direction: ltr;
  list-style: none;
}

.product-image-showcase .section-shell > .product-image-metrics > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 54px;
  padding: 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.product-image-showcase .section-shell > .product-image-metrics > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #c51f37;
}

.product-image-showcase .section-shell > .product-image-metrics strong {
  color: #123a5b;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.product-image-showcase .section-shell > .product-image-metrics span {
  margin-top: 5px;
  color: #607384;
  font-size: 0.69rem;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: 0.025em;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  direction: rtl;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
  right: 0;
  left: auto;
}

@media (max-width: 860px) {
  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 2.2vw, 20px);
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: 0.88rem;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    font-size: 0.63rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: clamp(390px, 56svh, 480px);
  }

  .hero-inner {
    min-height: clamp(390px, 56svh, 480px);
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero-copy,
  html[lang="ar"] .hero-copy {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.57rem;
  }

  .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 340px;
    margin-bottom: 10px;
    font-size: clamp(1.32rem, 5.9vw, 1.55rem);
    line-height: 1.1;
  }

  .hero .hero-text {
    max-width: 330px;
    margin-bottom: 9px;
    font-size: 0.73rem;
    line-height: 1.46;
  }

  .hero-origin-note {
    max-width: 330px;
    font-size: 0.61rem;
    line-height: 1.3;
  }

  .product-image-figure img {
    aspect-ratio: 16 / 9;
    object-position: 70% center;
  }

  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 18px;
    padding: 0;
    gap: 8px;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    align-items: center;
    min-height: 58px;
    padding: 11px 0 0;
    text-align: center;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    right: auto;
    left: 50%;
    width: 24px;
    transform: translateX(-50%);
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
    line-height: 1.18;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    margin-top: 4px;
    font-size: clamp(0.52rem, 2.1vw, 0.62rem);
    line-height: 1.2;
  }
}

/* Final No.2 product composition: vertical key-figure rail to the left of the static image. */
.product-image-showcase .section-shell {
  display: grid;
  grid-template-columns: clamp(190px, 18vw, 224px) minmax(0, 1fr);
  grid-template-areas: "metrics image";
  align-items: stretch;
  gap: clamp(22px, 3vw, 38px);
}

.product-image-showcase .product-image-figure {
  grid-area: image;
  width: 100%;
  aspect-ratio: 2122 / 941;
}

.product-image-showcase .product-image-figure picture {
  width: 100%;
  height: 100%;
}

.product-image-showcase .product-image-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.product-image-showcase .section-shell > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  grid-area: metrics;
  position: static;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  width: auto;
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px) 0;
  gap: clamp(4px, 0.8vw, 10px);
  direction: ltr;
}

.product-image-showcase .section-shell > .product-image-metrics > li,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0 0 0 17px;
  text-align: left;
}

.product-image-showcase .section-shell > .product-image-metrics > li::before,
html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
  top: 50%;
  right: auto;
  left: 0;
  width: 3px;
  height: 25px;
  transform: translateY(-50%);
  background: #c51f37;
}

.product-image-showcase .section-shell > .product-image-metrics strong {
  font-size: clamp(0.9rem, 1.25vw, 1.04rem);
  line-height: 1.14;
}

.product-image-showcase .section-shell > .product-image-metrics span {
  margin-top: 5px;
  font-size: clamp(0.6rem, 0.75vw, 0.7rem);
  line-height: 1.22;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
  direction: rtl;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
  align-items: flex-end;
  padding: 0 17px 0 0;
  text-align: right;
}

html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
  right: 0;
  left: auto;
}

@media (max-width: 860px) {
  .product-image-showcase .section-shell {
    grid-template-columns: clamp(148px, 24vw, 176px) minmax(0, 1fr);
    gap: 16px;
  }

  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    padding: 5px 0;
    gap: 2px;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    padding-left: 13px;
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    padding-right: 13px;
    padding-left: 0;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    width: 2px;
    height: 20px;
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: 0.82rem;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    margin-top: 3px;
    font-size: 0.57rem;
  }
}

@media (max-width: 640px) {
  .product-image-showcase .section-shell {
    grid-template-columns: minmax(98px, 29%) minmax(0, 1fr);
    gap: 10px;
  }

  .product-image-showcase .product-image-figure {
    aspect-ratio: 4 / 3;
  }

  .product-image-showcase .product-image-figure img {
    object-position: 72% center;
  }

  .product-image-showcase .section-shell > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics {
    width: auto;
    margin: 0;
    padding: 2px 0;
    gap: 0;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    align-items: flex-start;
    padding: 0 0 0 10px;
    text-align: left;
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li {
    align-items: flex-end;
    padding: 0 10px 0 0;
    text-align: right;
  }

  .product-image-showcase .section-shell > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    right: auto;
    left: 0;
    width: 2px;
    height: 16px;
    transform: translateY(-50%);
  }

  html[dir="rtl"] .product-image-showcase .section-shell > .product-image-metrics > li::before {
    right: 0;
    left: auto;
  }

  .product-image-showcase .section-shell > .product-image-metrics strong {
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    line-height: 1.14;
  }

  .product-image-showcase .section-shell > .product-image-metrics span {
    margin-top: 2px;
    font-size: clamp(0.49rem, 2vw, 0.57rem);
    line-height: 1.15;
  }
}

/* Final No.2 static-image composition: full-size machine image with figures in its empty left area. */
.product-image-showcase .section-shell {
  display: block;
}

.product-image-showcase .product-image-figure {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 2122 / 941;
}

.product-image-showcase .product-image-figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image-showcase .product-image-figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.product-image-showcase .product-image-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 15, 31, 0.34) 0%, rgba(3, 15, 31, 0.14) 36%, transparent 58%);
  pointer-events: none;
}

.product-image-showcase .product-image-figure > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: clamp(28px, 4.2vw, 58px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: clamp(200px, 23vw, 272px);
  height: auto;
  margin: 0;
  padding: 4px 0;
  gap: clamp(12px, 1.45vw, 20px);
  direction: ltr;
  transform: translateY(-50%);
  list-style: none;
}

.product-image-showcase .product-image-figure > .product-image-metrics > li,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0 0 0 17px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.product-image-showcase .product-image-figure > .product-image-metrics > li::before,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0;
  width: 3px;
  height: 25px;
  border-radius: 999px;
  background: #e02b42;
  transform: translateY(-50%);
}

.product-image-showcase .product-image-figure > .product-image-metrics strong {
  color: #ffffff;
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 840;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  overflow-wrap: anywhere;
}

.product-image-showcase .product-image-figure > .product-image-metrics span {
  margin-top: 5px;
  color: rgba(226, 238, 247, 0.88);
  font-size: clamp(0.61rem, 0.78vw, 0.72rem);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
  overflow-wrap: anywhere;
}

html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
  direction: rtl;
}

html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
  align-items: flex-end;
  padding: 0 17px 0 0;
  text-align: right;
}

html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
  right: 0;
  left: auto;
}

@media (max-width: 860px) {
  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    left: 24px;
    width: clamp(150px, 26vw, 182px);
    padding: 2px 0;
    gap: 9px;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    padding-left: 13px;
  }

  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    padding-right: 13px;
    padding-left: 0;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
    width: 2px;
    height: 20px;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    font-size: 0.84rem;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    margin-top: 3px;
    font-size: 0.58rem;
  }
}

@media (max-width: 640px) {
  .product-image-showcase .product-image-figure {
    aspect-ratio: 16 / 9;
  }

  .product-image-showcase .product-image-figure img {
    object-position: 62% center;
  }

  .product-image-showcase .product-image-figure::after {
    background: linear-gradient(90deg, rgba(3, 15, 31, 0.44) 0%, rgba(3, 15, 31, 0.19) 38%, transparent 62%);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 13px;
    justify-content: space-between;
    width: 34%;
    height: auto;
    padding: 1px 0;
    gap: 0;
    transform: none;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    flex: 1 1 0;
    align-items: flex-start;
    padding: 0 0 0 10px;
    text-align: left;
  }

  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    align-items: flex-end;
    padding: 0 10px 0 0;
    text-align: right;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li::before,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
    right: auto;
    left: 0;
    width: 2px;
    height: 16px;
  }

  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
    right: 0;
    left: auto;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    font-size: clamp(0.67rem, 2.8vw, 0.78rem);
    line-height: 1.12;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    margin-top: 2px;
    font-size: clamp(0.48rem, 1.95vw, 0.56rem);
    line-height: 1.12;
  }
}

/* Final No.2 metric refinement: no red markers and a tighter vertical rhythm. */
.product-image-showcase .product-image-figure > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
  gap: clamp(7px, 0.9vw, 12px);
}

.product-image-showcase .product-image-figure > .product-image-metrics > li,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
  flex: 0 0 auto;
  padding: 0;
}

.product-image-showcase .product-image-figure > .product-image-metrics > li::before,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li::before {
  display: none;
}

.product-image-showcase .product-image-figure > .product-image-metrics span {
  margin-top: 3px;
}

@media (max-width: 860px) {
  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    gap: 5px;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    top: 50%;
    bottom: auto;
    justify-content: center;
    height: auto;
    gap: 5px;
    transform: translateY(-50%);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    flex: 0 0 auto;
    padding: 0;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    margin-top: 2px;
  }
}

/* Final No.2 metric balance: moderate spacing, clearer hierarchy, and a tighter section join. */
.product-image-showcase {
  padding-bottom: clamp(14px, 1.5vw, 20px);
}

.product-image-showcase .product-image-figure > .product-image-metrics,
html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
  gap: clamp(11px, 1.2vw, 16px);
}

.product-image-showcase .product-image-figure > .product-image-metrics strong {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.product-image-showcase .product-image-figure > .product-image-metrics span {
  margin-top: 4px;
  color: rgba(207, 232, 249, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}

@media (max-width: 860px) {
  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    gap: 9px;
  }
}

@media (max-width: 640px) {
  .product-image-showcase {
    padding-bottom: 10px;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[dir="rtl"] .product-image-showcase .product-image-figure > .product-image-metrics {
    gap: 8px;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    margin-top: 3px;
  }
}

/* Final No.2 desktop refinement: raise hero copy and enlarge static-image figures. */
@media (min-width: 861px) {
  .hero-copy,
  html[lang="ar"] .hero-copy {
    transform: translateY(-30px);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  }
}

/* Final No.2 reading-flow refinement: wandering film scratches and a compact overview-first layout. */
@keyframes hero-film-surface {
  0%, 13% {
    background-position: -7px 0, 0 0, 0 0, 0 0;
  }
  14% {
    background-position: 10px 0, 24px -12px, -18px 16px, 0 1px;
  }
  15%, 35% {
    background-position: 2px 0, 42px 18px, 20px -22px, 0 0;
  }
  36% {
    background-position: -11px 0, -18px 28px, 32px 14px, 0 -1px;
  }
  37%, 62% {
    background-position: -3px 0, 14px -24px, -26px 30px, 0 0;
  }
  63% {
    background-position: 9px 0, 34px 10px, 16px -18px, 0 1px;
  }
  64%, 82% {
    background-position: 3px 0, 14px -24px, -26px 30px, 0 0;
  }
  83% {
    background-position: -9px 0, 34px 10px, 16px -18px, 0 1px;
  }
  84%, 100% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
}

.intro-band {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(5, 31, 61, 0.24);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(30px, 3.2vw, 38px) 0;
}

.intro-grid .section-kicker {
  margin-bottom: 8px;
  font-size: 0.74rem;
}

.intro-grid h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.45vw, 2.2rem);
  line-height: 1.14;
}

.intro-stack {
  align-self: center;
  gap: 9px;
}

.intro-stack p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.check-list {
  gap: 6px;
  padding-top: 1px;
}

.check-list li {
  padding-left: 20px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.42;
}

.check-list li::before {
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

html[lang="ar"] .intro-grid > div:first-child {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] .intro-band .check-list li {
  padding-right: 20px;
}

.intro-band + .product-image-showcase {
  padding-top: clamp(18px, 2vw, 26px);
}

.intro-band .intro-grid h2 {
  color: #ffffff;
}

.intro-band .intro-stack p {
  max-width: 680px;
  color: rgba(229, 240, 249, 0.9);
}

.product-image-showcase .product-image-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.2vw, 30px);
  margin: clamp(14px, 1.5vw, 18px) 0 0;
  padding: clamp(13px, 1.4vw, 17px) clamp(12px, 1.8vw, 20px);
  border: 1px solid rgba(91, 130, 157, 0.2);
  border-radius: 10px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.7), rgba(236, 245, 249, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-image-showcase .product-image-points li {
  min-width: 0;
  padding: 0 0 0 20px;
  color: #244a66;
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  font-weight: 720;
  line-height: 1.42;
}

.product-image-showcase .product-image-points li::before {
  top: 0.71em;
  right: auto;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c51e35;
}

html[lang="ar"] .product-image-showcase .product-image-points {
  direction: rtl;
}

html[lang="ar"] .product-image-showcase .product-image-points li {
  padding: 0 20px 0 0;
  text-align: right;
}

html[lang="ar"] .product-image-showcase .product-image-points li::before {
  right: 0;
  left: auto;
}

@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 28px 0;
  }

  .intro-grid h2 {
    max-width: 780px;
    font-size: clamp(1.45rem, 3.8vw, 1.75rem);
  }

  .intro-stack {
    gap: 8px;
  }

  .intro-band + .product-image-showcase {
    padding-top: 18px;
  }

  .product-image-showcase .product-image-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 12px;
    padding: 13px 14px;
  }
}

@media (max-width: 640px) {
  .intro-grid {
    gap: 12px;
    padding: 22px 0;
  }

  .intro-grid .section-kicker {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .intro-grid h2 {
    font-size: clamp(1.2rem, 5vw, 1.38rem);
    line-height: 1.16;
  }

  .intro-stack p,
  .check-list li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .check-list {
    gap: 5px;
  }

  .intro-band + .product-image-showcase {
    padding-top: 14px;
  }

  .intro-band .intro-grid h2 {
    color: #173d59;
  }

  .intro-band .intro-stack p {
    color: #516d80;
  }

  .product-image-showcase .product-image-points {
    gap: 6px;
    margin-top: 10px;
    padding: 12px;
  }

  .product-image-showcase .product-image-points li {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  .intro-grid {
    padding: 20px 0;
  }

  .intro-grid h2 {
    font-size: 1.15rem;
  }
}

/* Final No.2 swapped-content spacing: keep the image, benefits, and notes connected. */
.product-image-showcase {
  padding-bottom: 8px;
}

.feature-section {
  padding-bottom: 10px;
}

@media (max-width: 860px) {
  .product-image-showcase {
    padding-bottom: 6px;
  }

  .feature-section {
    padding-bottom: 8px;
  }
}

/* Final No.2 integrated suitability notes: one lightweight row inside benefits. */
.feature-section .feature-fit {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) minmax(0, 3.28fr);
  align-items: start;
  column-gap: 18px;
  row-gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(91, 130, 157, 0.22);
}

.feature-section .feature-fit-title {
  margin: 0;
  color: #117866;
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-align: start;
  overflow-wrap: anywhere;
}

.feature-section .feature-fit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-section .feature-fit-list li {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  padding-inline-start: 15px;
  color: #355a74;
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.4;
  text-align: start;
  overflow-wrap: anywhere;
}

.feature-section .feature-fit-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  inset-inline-start: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c51e35;
  transform: translateY(-50%);
}

html[lang="ar"] .feature-section .feature-fit {
  direction: rtl;
}

html[lang="hi"] .feature-section .feature-fit-title {
  line-height: 1.5;
}

@media (max-width: 860px) {
  .feature-section .feature-fit {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    margin-top: 11px;
    padding-top: 10px;
  }

  .feature-section .feature-fit-list {
    padding-inline-start: 10px;
  }

  .feature-section .feature-fit-title {
    font-size: 0.74rem;
  }
}

@media (max-width: 640px) {
  .feature-section .feature-fit {
    margin-top: 10px;
    padding-top: 9px;
  }

  .feature-section .feature-fit-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .feature-section .feature-fit-list li {
    padding-inline-start: 14px;
    font-size: 0.88rem;
    line-height: 1.38;
  }
}

/* Keep Arabic machine figures in their source order at every viewport. */
html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics > li:nth-child(-n + 3) strong {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Final No.2 desktop reading flow: stacked overview and clearer image figures. */
@media (min-width: 861px) {
  .intro-band .intro-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 11px;
    padding: 24px 0 26px;
  }

  .intro-band .intro-grid > div:first-child,
  .intro-band .intro-stack {
    justify-self: start;
    width: 100%;
    max-width: 940px;
  }

  .intro-band .intro-grid .section-kicker {
    margin-bottom: 6px;
  }

  .intro-band .intro-grid h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: clamp(1.62rem, 2.05vw, 1.9rem);
    line-height: 1.16;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .intro-band .intro-stack {
    align-self: start;
    gap: 0;
  }

  .intro-band .intro-stack p {
    max-width: 940px;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.52;
    overflow-wrap: anywhere;
  }

  html[lang="ar"] .intro-band .intro-grid > div:first-child,
  html[lang="ar"] .intro-band .intro-stack {
    justify-self: end;
    direction: rtl;
    text-align: right;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics {
    left: clamp(30px, 4vw, 52px);
    width: clamp(320px, 30vw, 390px);
    gap: clamp(13px, 1.25vw, 18px);
    padding: 0;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    column-gap: clamp(10px, 1vw, 14px);
    row-gap: 2px;
    min-width: 0;
    padding: 0;
    text-align: left;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: clamp(1.3rem, 1.7vw, 1.52rem);
    font-weight: 850;
    line-height: 1.06;
    white-space: nowrap;
    overflow-wrap: normal;
    text-shadow: 0 2px 11px rgba(0, 0, 0, 0.48);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 0;
    color: rgba(229, 241, 249, 0.96);
    font-size: clamp(0.86rem, 1vw, 0.94rem);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.44);
  }

  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics {
    direction: rtl;
  }

  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
  }

}

/* Final No.2 product image: light page surface with a narrow cool image transition. */
.product-image-showcase {
  border-bottom-color: rgba(112, 151, 174, 0.12);
  background: linear-gradient(180deg, #f9fcfd 0%, #f2f8fa 48%, #eaf3f7 100%);
}

.product-image-showcase .product-image-figure {
  overflow: hidden;
  border: 1px solid rgba(130, 166, 187, 0.16);
  border-radius: 6px;
  background: #eef6f9;
  box-shadow: none;
}

.product-image-showcase .product-image-figure picture {
  position: relative;
  z-index: 0;
  background: #eef6f9;
}

.product-image-showcase .product-image-figure img {
  filter: brightness(1.06) contrast(0.98) saturate(0.96);
}

.product-image-showcase .product-image-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: none;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}

.product-image-showcase .product-image-figure::after {
  background: linear-gradient(90deg,
    rgba(119, 188, 217, 0.26) 0%,
    rgba(142, 202, 226, 0.14) 16%,
    rgba(168, 216, 234, 0.05) 28%,
    transparent 40%);
}

@media (max-width: 640px) {
  .product-image-showcase .product-image-figure {
    border-radius: 5px;
    box-shadow: none;
  }

  .product-image-showcase .product-image-figure img {
    filter: brightness(1.05) contrast(0.985) saturate(0.97);
  }

  .product-image-showcase .product-image-figure::before {
    opacity: 1;
  }

  .product-image-showcase .product-image-figure::after {
    background: linear-gradient(90deg,
      rgba(119, 188, 217, 0.28) 0%,
      rgba(142, 202, 226, 0.16) 22%,
      rgba(168, 216, 234, 0.06) 36%,
    transparent 50%);
  }
}

/* Final No.2 benefits title: wrap only between complete selling points. */
.feature-section .benefits-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: 0;
  row-gap: 0.06em;
  max-width: 100%;
  text-wrap: nowrap;
}

.feature-section .benefits-title > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  min-width: 0;
  white-space: nowrap;
  overflow-wrap: normal;
}

.feature-section .benefits-title > span:not(:last-child)::after {
  content: "·";
  margin-inline: 0.32em;
  color: #728a9b;
  font-weight: 620;
}

html[lang="ar"] .feature-section .benefits-title {
  direction: rtl;
  text-align: right;
}

@media (min-width: 900px) {
  .feature-section .benefits-title {
    flex-wrap: nowrap;
  }
}

@media (max-width: 640px) {
  .feature-section .benefits-title > span:first-child {
    flex-basis: 100%;
  }

  .feature-section .benefits-title > span:first-child::after {
    content: none;
  }

  html[lang="ru"] .feature-section .benefits-title > span {
    flex-basis: 100%;
  }

  html[lang="ru"] .feature-section .benefits-title > span::after {
    content: none;
  }
}

/* Final No.2 hero treatment: brighter exposure and clearly visible aged-film texture. */
.hero-video {
  filter: brightness(1.07) contrast(1.09) saturate(0.68) sepia(0.12);
  animation: hero-frame-jump-strong 5.4s steps(1, end) infinite;
}

.hero::before {
  background:
    linear-gradient(90deg,
      rgba(2, 14, 33, 0.62) 0%,
      rgba(3, 21, 45, 0.46) 38%,
      rgba(3, 23, 48, 0.2) 70%,
      rgba(3, 23, 48, 0.06) 100%),
    linear-gradient(180deg, rgba(245, 221, 171, 0.035), rgba(2, 13, 29, 0.14));
}

/* Final No.2 desktop copy: clearer video typography and a concise benefits heading. */
@media (min-width: 861px) {
  .hero::before {
    background:
      linear-gradient(90deg,
        rgba(2, 14, 33, 0.42) 0%,
        rgba(3, 21, 45, 0.24) 42%,
        rgba(3, 23, 48, 0.08) 72%,
        transparent 100%),
      linear-gradient(180deg, rgba(245, 221, 171, 0.025), rgba(2, 13, 29, 0.1));
  }

  html[lang] .hero .hero-copy {
    position: relative;
    isolation: isolate;
    width: min(60vw, 600px);
    max-width: 600px;
  }

  html[lang] .hero .hero-copy::before {
    content: "";
    position: absolute;
    inset: -26px -52px -28px -36px;
    z-index: -1;
    border-radius: 22px;
    background: radial-gradient(
      ellipse at 28% 50%,
      rgba(2, 13, 31, 0.54) 0%,
      rgba(3, 18, 42, 0.34) 46%,
      rgba(3, 20, 45, 0.14) 68%,
      transparent 84%
    );
    filter: blur(6px);
    pointer-events: none;
  }

  html[lang="ar"] .hero .hero-copy::before {
    background: radial-gradient(
      ellipse at 72% 50%,
      rgba(2, 13, 31, 0.54) 0%,
      rgba(3, 18, 42, 0.34) 46%,
      rgba(3, 20, 45, 0.14) 68%,
      transparent 84%
    );
  }

  html[lang] .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(249, 247, 240, 0.98);
    font-size: clamp(0.84rem, 1vw, 0.94rem);
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: 0.045em;
    opacity: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
  }

  html[lang] .hero .eyebrow::before {
    content: "";
    flex: 0 0 22px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #d7283c;
    box-shadow: 0 0 10px rgba(215, 40, 60, 0.3);
  }

  html[lang] .hero h1 {
    max-width: 600px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(2.04rem, 2.65vw, 2.42rem);
    font-weight: 820;
    line-height: 1.09;
    opacity: 1;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58), 0 0 1px rgba(255, 255, 255, 0.5);
  }

  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    font-size: clamp(1.86rem, 2.25vw, 2.16rem);
    line-height: 1.11;
  }

  html[lang="hi"] .hero h1,
  html[lang="ar"] .hero h1 {
    line-height: 1.15;
  }

  html[lang] .hero .hero-text {
    max-width: 540px;
    margin-bottom: 12px;
    color: rgba(247, 250, 253, 0.94);
    font-size: clamp(0.96rem, 1.08vw, 1.05rem);
    font-weight: 540;
    line-height: 1.5;
    opacity: 1;
    text-shadow: 0 2px 13px rgba(0, 0, 0, 0.56);
  }

  html[lang] .hero .hero-origin-note {
    width: min(100%, 540px);
    max-width: 540px;
    color: #f1d58c;
    font-size: clamp(0.8rem, 0.92vw, 0.88rem);
    font-weight: 760;
    line-height: 1.38;
    opacity: 1;
    text-shadow: 0 2px 11px rgba(0, 0, 0, 0.58);
  }

  .feature-section .section-heading {
    max-width: 100%;
  }

  .feature-section .section-heading h2 {
    max-width: 100%;
    color: #17354e;
    font-size: clamp(1.5rem, 1.9vw, 1.75rem);
    font-weight: 720;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  html[lang="en"] .feature-section .section-heading h2 {
    white-space: nowrap;
    overflow-wrap: normal;
    text-wrap: nowrap;
  }
}

/* Final No.2 desktop product image: reference-matched crop and type hierarchy. */
@media (min-width: 861px) {
  .product-image-showcase .product-image-figure {
    aspect-ratio: 355 / 208;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
  }

  .product-image-showcase .product-image-figure img {
    object-fit: cover;
    object-position: 45% center;
    filter: brightness(1.04) contrast(0.985) saturate(0.95);
  }

  .product-image-showcase .product-image-figure::after {
    background: linear-gradient(90deg,
      rgba(94, 135, 156, 0.38) 0%,
      rgba(96, 136, 154, 0.2) 34%,
      rgba(99, 142, 160, 0.07) 48%,
      transparent 60%);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics {
    top: 50%;
    right: auto;
    bottom: auto;
    left: clamp(28px, 4%, 48px);
    width: clamp(220px, 22vw, 280px);
    gap: clamp(24px, 2.4vw, 36px);
    padding: 0;
    transform: translateY(-50%);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics > li,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    column-gap: 0;
    row-gap: 0;
    text-align: left;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    flex: 0 0 auto;
    color: #f8fafc;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: 0.005em;
    white-space: nowrap;
    overflow-wrap: normal;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.44);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    flex: 0 0 auto;
    margin-top: 6px;
    color: rgba(211, 231, 243, 0.94);
    font-size: clamp(1.2rem, 1.85vw, 1.65rem);
    font-weight: 720;
    line-height: 1.18;
    letter-spacing: 0.035em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics {
    direction: rtl;
  }

  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics > li {
    align-items: flex-end;
    text-align: right;
  }

  html[lang="hi"] .product-image-showcase .product-image-figure > .product-image-metrics strong,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics strong {
    line-height: 1.14;
  }

  html[lang="hi"] .product-image-showcase .product-image-figure > .product-image-metrics span,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics span {
    line-height: 1.28;
  }
}

/* Final No.2 desktop cleanup, technical metric typography, and product-image selection. */
.product-image-figure.is-image-selectable {
  --image-selection-rgb: 15, 91, 154;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-image-figure.is-image-selectable:focus-visible {
  outline: 3px solid rgba(var(--image-selection-rgb), 0.28);
  outline-offset: 3px;
}

.product-image-showcase .product-image-figure.is-image-selectable.is-image-selected {
  border-color: rgba(var(--image-selection-rgb), 0.5);
  box-shadow:
    0 12px 22px -18px rgba(8, 39, 101, 0.72),
    0 6px 14px -10px rgba(var(--image-selection-rgb), 0.55),
    inset 0 -3px 0 rgba(var(--image-selection-rgb), 0.16),
    inset 0 0 0 2px rgba(var(--image-selection-rgb), 0.18);
}

@media (min-width: 861px) {
  .feature-section .feature-fit {
    display: none;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics {
    font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
  }

  .product-image-showcase .product-image-figure > .product-image-metrics strong {
    font-size: clamp(1.9rem, 2.55vw, 2.3rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .product-image-showcase .product-image-figure > .product-image-metrics span {
    margin-top: 5px;
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: 0.015em;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.36);
  }

  html[lang="hi"] .product-image-showcase .product-image-figure > .product-image-metrics {
    font-family: "Noto Sans Devanagari", "Nirmala UI", "Kohinoor Devanagari", system-ui, sans-serif;
  }

  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics {
    font-family: "Noto Sans Arabic", "SF Arabic", "Geeza Pro", "Segoe UI", Tahoma, Arial, sans-serif;
  }

  html[lang="hi"] .product-image-showcase .product-image-figure > .product-image-metrics strong,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics strong {
    line-height: 1.16;
    letter-spacing: 0;
  }

  html[lang="hi"] .product-image-showcase .product-image-figure > .product-image-metrics span,
  html[lang="ar"] .product-image-showcase .product-image-figure > .product-image-metrics span {
    line-height: 1.34;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-image-figure.is-image-selectable {
    transition: none;
  }
}

.hero::after {
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(4, 8, 15, 0.25) 100%),
    linear-gradient(180deg, rgba(246, 218, 164, 0.075), rgba(31, 25, 18, 0.035)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 22px);
}

.hero-film-effect {
  mix-blend-mode: overlay;
}

.hero-film-effect::before {
  background-size: 126px 126px;
  opacity: 0.5;
  filter: contrast(1.75);
  animation: hero-film-grain-strong 0.14s steps(2, end) infinite;
}

.hero-film-effect::after {
  background:
    linear-gradient(90deg,
      transparent 0 8.6%,
      rgba(255, 255, 255, 0.25) 8.72%,
      transparent 8.9% 31.2%,
      rgba(8, 13, 19, 0.34) 31.32%,
      transparent 31.62% 63.8%,
      rgba(255, 255, 255, 0.2) 63.9%,
      transparent 64.08% 88.5%,
      rgba(9, 14, 20, 0.26) 88.64%,
      transparent 88.9%),
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle at 73% 68%, rgba(5, 10, 16, 0.42) 0 1.2px, transparent 2px),
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.075) 0,
      rgba(255, 255, 255, 0.075) 1px,
      rgba(5, 10, 16, 0.055) 1px,
      rgba(5, 10, 16, 0.055) 2px,
      transparent 2px,
      transparent 4px);
  background-size: calc(100% + 28px) 100%, 180px 132px, 238px 176px, 100% 4px;
  background-repeat: no-repeat, repeat, repeat, repeat;
  opacity: 0.7;
  animation:
    hero-film-surface 3.7s steps(1, end) infinite,
    hero-film-flicker-strong 1.9s steps(1, end) infinite;
}

@media (max-width: 640px) {
  .hero-video {
    filter: brightness(1.09) contrast(1.08) saturate(0.66) sepia(0.13);
  }

  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(2, 15, 34, 0.5) 0%,
        rgba(3, 22, 45, 0.32) 52%,
        rgba(2, 16, 35, 0.44) 100%),
      linear-gradient(90deg, rgba(2, 15, 35, 0.18), rgba(2, 15, 35, 0.04));
  }

  .hero-film-effect::before {
    opacity: 0.46;
  }

  .hero-film-effect::after {
    opacity: 0.64;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
    transform: scale(1.01);
  }

  .hero-film-effect::before,
  .hero-film-effect::after {
    animation: none;
  }
}

/* No.2 mobile hero copy: focused width, readable hierarchy, and local contrast. */
@media (max-width: 860px) {
  html[lang] .hero .hero-copy {
    position: relative;
    isolation: isolate;
    width: min(100%, 480px);
    max-width: 480px;
  }

  html:not([lang="ar"]) .hero .hero-copy {
    margin-left: 0;
    margin-right: auto;
    direction: ltr;
    text-align: left;
  }

  html[lang="ar"] .hero .hero-copy {
    margin-left: auto;
    margin-right: 0;
    direction: rtl;
    text-align: right;
  }

  html[lang] .hero .hero-copy::before {
    content: "";
    position: absolute;
    inset: -12px -30px -12px -12px;
    z-index: -1;
    border-radius: 18px;
    background: radial-gradient(
      ellipse at 22% 50%,
      rgba(2, 13, 31, 0.56) 0%,
      rgba(3, 18, 42, 0.34) 48%,
      rgba(3, 20, 45, 0.12) 70%,
      transparent 84%
    );
    filter: blur(5px);
    pointer-events: none;
  }

  html[lang="ar"] .hero .hero-copy::before {
    inset: -12px -12px -12px -30px;
    background: radial-gradient(
      ellipse at 78% 50%,
      rgba(2, 13, 31, 0.56) 0%,
      rgba(3, 18, 42, 0.34) 48%,
      rgba(3, 20, 45, 0.12) 70%,
      transparent 84%
    );
  }

  html[lang] .hero .eyebrow {
    color: #ff8996;
    opacity: 1;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.48);
  }

  html[lang] .hero h1 {
    color: rgba(255, 255, 255, 0.98);
    opacity: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.58);
  }

  html[lang] .hero .hero-text {
    color: rgba(241, 248, 253, 0.9);
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
  }

  html[lang] .hero .hero-origin-note {
    color: rgba(246, 215, 132, 0.92);
    opacity: 1;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 640px) {
  html[lang] .hero .hero-copy {
    width: min(76vw, 296px);
    max-width: 296px;
  }

  html[lang] .hero .eyebrow {
    margin-bottom: 7px;
    font-size: 0.64rem;
    line-height: 1.3;
  }

  html[lang] .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1 {
    max-width: 100%;
    margin-bottom: 9px;
    line-height: 1.13;
    text-wrap: balance;
  }

  html[lang] .hero .hero-text {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 0.75rem;
    line-height: 1.48;
  }

  html[lang] .hero .hero-origin-note {
    width: 100%;
    max-width: 100%;
    font-size: 0.67rem;
    line-height: 1.35;
  }

  html[lang="hi"] .hero h1,
  html[lang="ar"] .hero h1 {
    line-height: 1.2;
  }

  html[lang="hi"] .hero .hero-text,
  html[lang="hi"] .hero .hero-origin-note,
  html[lang="ar"] .hero .hero-text,
  html[lang="ar"] .hero .hero-origin-note {
    line-height: 1.42;
  }
}

/* No.2 mobile metrics: compact 2x2 block aligned with the hero copy. */
@media (max-width: 640px) {
  html[lang] .hero .hero-bottom-metrics {
    --metrics-content-gap: 28px;
    width: min(76vw, 296px);
    margin: 8px auto 0 0;
    grid-template-columns: max-content max-content;
    justify-content: start;
    column-gap: var(--metrics-content-gap);
    row-gap: 0;
  }

  html[lang="ar"] .hero .hero-bottom-metrics {
    margin-right: 0;
    margin-left: auto;
    justify-content: end;
  }

  html[lang] .hero .hero-bottom-metrics > li {
    padding: 4px 0;
  }

  html[lang] .hero .hero-bottom-metrics > li:nth-child(even)::before {
    left: -15px;
  }
}

/* No.2 English hero: two equal-level product statements. */
html[lang="en"] .hero .eyebrow,
html[lang="en"] .hero #hero-title {
  font-size: clamp(1.7rem, 2.15vw, 2rem);
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

html[lang="en"] .hero .eyebrow {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  html[lang="en"] .hero .eyebrow,
  html[lang="en"] .hero #hero-title {
    font-size: clamp(1.16rem, 5.7vw, 1.4rem);
    line-height: 1.14;
  }

  html[lang="en"] .hero .eyebrow {
    margin-bottom: 6px;
  }
}

/* 2026-08-21: multilingual content, type, color, and RTL refinement. */
html[lang] .hero #hero-title {
  display: grid;
  row-gap: 0.16em;
  max-width: 600px;
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.15vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

html[lang] .hero #hero-title .hero-title-line {
  display: block;
  white-space: normal;
}

html[lang] .hero .hero-title-feature {
  color: #ff8996;
}

html[lang] .hero .hero-title-product {
  color: #ffffff;
}

html[lang="tr"] .hero #hero-title,
html[lang="ru"] .hero #hero-title {
  font-size: clamp(1.55rem, 1.95vw, 1.85rem);
  line-height: 1.16;
}

html[lang="hi"] .hero #hero-title,
html[lang="ar"] .hero #hero-title {
  font-size: clamp(1.58rem, 2vw, 1.9rem);
  line-height: 1.2;
}

html[lang] .hero .hero-text {
  font-weight: 500;
}

html[lang] .hero .hero-origin-note {
  color: rgba(221, 238, 249, 0.92);
  font-weight: 700;
}

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

.hero-actions .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-bottom-metrics strong {
  font-weight: 700;
}

.hero-bottom-metrics span {
  font-weight: 600;
}

html[lang="hi"] .hero-copy,
html[lang="hi"] .hero-bottom-metrics {
  font-family: "Noto Sans Devanagari", "Nirmala UI", "Kohinoor Devanagari", system-ui, sans-serif;
}

html[lang="ar"] .hero-copy,
html[lang="ar"] .hero-bottom-metrics {
  font-family: "Noto Sans Arabic", "SF Arabic", "Geeza Pro", "Segoe UI", Tahoma, Arial, sans-serif;
}

html[lang="hi"] .hero-bottom-metrics strong,
html[lang="ar"] .hero-bottom-metrics strong {
  font-family: inherit;
}

/* Preserve the existing specification layout after enabling page-level RTL. */
html[dir="rtl"] .spec-layout,
html[dir="rtl"] .spec-table {
  direction: ltr;
}

html[dir="rtl"] .spec-copy,
html[dir="rtl"] .spec-table th,
html[dir="rtl"] .spec-table td {
  direction: rtl;
  text-align: right;
}

.fabric-range-inline article::before,
.fabric-range-inline article:nth-of-type(2)::before,
.fabric-range-inline article:nth-of-type(3)::before {
  background: #376f95;
}

.feature-section .section-heading h2,
.feature-card h3,
.gallery-card h3,
.workshop-card h3,
.faq-item h3,
.fabric-range-inline h3 {
  font-weight: 700;
}

.spec-table td {
  font-weight: 600;
}

@media (max-width: 640px) {
  html[lang] .hero #hero-title {
    row-gap: 0.12em;
    margin-bottom: 10px;
    font-size: clamp(1.1rem, 5.3vw, 1.32rem);
    line-height: 1.16;
  }

  html[lang="tr"] .hero #hero-title,
  html[lang="ru"] .hero #hero-title {
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    line-height: 1.2;
  }

  html[lang="hi"] .hero #hero-title,
  html[lang="ar"] .hero #hero-title {
    font-size: clamp(1.05rem, 5vw, 1.22rem);
    line-height: 1.24;
  }

  html[lang] .hero .hero-text {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  html[lang] .hero .hero-origin-note {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-top: 11px;
    gap: 6px;
  }

  .hero-actions .button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .hero-bottom-metrics strong {
    font-size: clamp(0.95rem, 3vw, 1.06rem);
  }

  .hero-bottom-metrics span {
    font-size: clamp(0.68rem, 2.2vw, 0.75rem);
  }
}

/* 2026-08-21: keep the header readable through the tablet transition. */
@media (min-width: 861px) and (max-width: 1023px) {
  body {
    padding-top: 66px;
  }

  .site-header[data-header] {
    display: grid;
    grid-template-columns: minmax(172px, 208px) minmax(0, 1fr) 36px;
    grid-template-areas:
      "brand contact menu"
      "language language language";
    grid-template-rows: 34px 24px;
    align-items: center;
    column-gap: 8px;
    row-gap: 3px;
    width: 100%;
    height: auto;
    min-height: 66px;
    padding: 5px 14px 3px;
  }

  .site-header[data-header] .brand {
    grid-area: brand;
    width: min(100%, 194px);
    min-width: 172px;
  }

  .site-header[data-header] .brand-logo {
    width: 100%;
    max-height: 25px;
  }

  .site-header[data-header] .header-whatsapp {
    grid-area: contact;
    justify-self: end;
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    min-height: 30px;
    height: 30px;
    margin: 0;
    padding: 2px 7px 3px;
    font-size: 0.64rem;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 0.5rem;
  }

  .site-header[data-header] .nav-toggle {
    grid-area: menu;
    display: block;
    justify-self: end;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .site-header[data-header] .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    z-index: 90;
    display: none;
    flex-direction: column;
    align-items: stretch;
    order: initial;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(190, 205, 222, 0.9);
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, rgba(248, 251, 253, 0.99), rgba(237, 244, 249, 0.98));
    box-shadow: 0 20px 46px rgba(3, 18, 42, 0.24);
  }

  .site-header[data-header] .site-nav.is-open {
    display: flex;
  }

  .site-header[data-header] .site-nav > a,
  .site-header[data-header] .site-nav > a:first-child {
    order: initial;
    min-height: 44px;
    margin-left: 0;
  }

  .site-header[data-header] .site-nav > .language-options {
    display: none;
  }

  .site-header[data-header] .mobile-language-options.language-options {
    grid-area: language;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    width: calc(100% + 28px);
    max-height: 24px;
    margin: 0 -14px -3px;
    padding: 1px 14px 2px;
    overflow: hidden;
  }

  .site-header[data-header] .mobile-language-options .language-option {
    min-height: 21px;
    padding-inline: 4px;
    font-size: 0.64rem;
  }

  .site-header[data-header].is-language-hidden {
    grid-template-rows: 34px 0;
    row-gap: 0;
    min-height: 46px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header[data-header].is-language-hidden .mobile-language-options {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }

  .site-header[data-header].is-language-hidden .site-nav {
    top: 46px;
  }

  .site-header[data-header] .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header[data-header] .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-header] .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Keep the tablet metrics on the same reading edge as the hero copy. */
@media (min-width: 641px) and (max-width: 860px) {
  html[lang] .hero .hero-bottom-metrics {
    margin-left: 0;
    margin-right: auto;
  }

  html[lang="ar"] .hero .hero-bottom-metrics {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Keep the mobile video hero focused on the product and key figures. */
@media (max-width: 640px) {
  .hero .hero-actions {
    display: none;
  }
}

/* Keep the full WhatsApp label readable without changing header geometry. */
.site-header[data-header] .header-whatsapp {
  padding-inline: 10px;
}

.site-header[data-header] .header-whatsapp span {
  max-width: 100%;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .site-header[data-header] .header-whatsapp {
    padding-inline: 3px;
  }

  .site-header[data-header] .header-whatsapp span {
    font-size: 0.48rem;
  }
}

@media (max-width: 360px) {
  .site-header[data-header] .header-whatsapp span {
    font-size: 0.46rem;
  }
}

/* Standalone model mark: near the figures, not inside the main product title. */
.hero > .hero-inner > .hero-model-mark {
  position: static;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  width: max-content;
  max-width: 150px;
  min-height: 20px;
  margin: 10px 0 0;
  padding-block: 1px;
  padding-inline-start: 9px;
  padding-inline-end: 0;
  border-inline-start: 2px solid rgba(215, 40, 60, 0.94);
  color: rgba(221, 238, 249, 0.86);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.46);
}

.hero > .hero-inner > .hero-model-mark .hero-model-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero > .hero-inner > .hero-model-mark strong {
  color: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .hero > .hero-inner > .hero-model-mark {
  align-self: flex-start;
  margin-right: 0;
  margin-left: auto;
  direction: rtl;
  text-align: right;
}

html[lang="hi"] .hero-model-label,
html[lang="ar"] .hero-model-label {
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 860px) {
  html[lang] .hero > .hero-inner > .hero-bottom-metrics {
    margin-top: 4px;
  }
}

/* Make the mobile inquiry action visually lighter while retaining a clear tap target. */
@media (max-width: 640px) {
  .inquiry-form .form-button {
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 0.86rem;
    font-weight: 720;
    line-height: 1.16;
    box-shadow: 0 6px 14px rgba(165, 20, 32, 0.16);
  }

}

@media (max-width: 390px) {
  .hero > .hero-inner > .hero-model-mark {
    gap: 6px;
    min-height: 18px;
    margin-top: 8px;
    padding-inline-start: 8px;
  }

  .hero > .hero-inner > .hero-model-mark .hero-model-label {
    font-size: 0.58rem;
  }

  .hero > .hero-inner > .hero-model-mark strong {
    font-size: 0.78rem;
  }
}

@media (min-width: 861px) {
  .hero > .hero-inner > .hero-model-mark {
    position: absolute;
    top: auto;
    right: auto;
    bottom: calc(clamp(18px, 2vw, 26px) + 22px);
    left: calc(min(60vw, 600px) + clamp(12px, 1.4vw, 18px));
    align-self: auto;
    margin: 0;
  }

  .hero > .hero-inner > .hero-model-mark .hero-model-label {
    font-size: 0.64rem;
  }

  .hero > .hero-inner > .hero-model-mark strong {
    font-size: 0.9rem;
  }
}

/* English product title: keep the specification phrase intact, then name the loom. */
html[lang="en"] .hero #hero-title .hero-title-product-spec {
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

/* Mobile hero hierarchy: lighten the feature line and lower the compact figures. */
@media (max-width: 640px) {
  html[lang="en"] .hero #hero-title .hero-title-feature {
    font-size: 0.84em;
    font-weight: 760;
    line-height: 1.18;
  }

  html[lang] .hero > .hero-inner > .hero-bottom-metrics {
    margin-top: 10px;
  }

  html[lang] .hero > .hero-inner > .hero-bottom-metrics strong {
    font-size: clamp(0.9rem, 2.6vw, 0.98rem);
  }

  html[lang] .hero > .hero-inner > .hero-bottom-metrics span {
    font-size: clamp(0.66rem, 1.9vw, 0.7rem);
  }
}
