:root {
  --ink: #0a1722;
  --navy: #071a2b;
  --navy-2: #0b2740;
  --blue: #0f5fa8;
  --blue-light: #2f8ed8;
  --orange: #ec6c25;
  --paper: #ffffff;
  --mist: #f2f5f7;
  --line: #d7e0e7;
  --muted: #5f6f7d;
  --shell: 1680px;
  --shadow: 0 22px 55px rgba(4, 22, 38, 0.12);
  --v4-max: 1700px;
  --v4-pad: clamp(24px, 3.1vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, "Noto Sans", "Noto Sans SC", "Noto Sans Thai", "Noto Sans Devanagari", "Noto Sans Arabic", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body[data-lang="zh"] { font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif; }
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 18px;
  top: -100px;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
}
.skip-link:focus { top: 18px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 1px;
  padding: 0 24px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: transparent; border-color: var(--orange); color: var(--orange); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 11px; white-space: nowrap; }
.button-outline { border-color: #a9b8c5; background: #fff; color: #0a2742; }
.button-outline:hover { border-color: #0a2742; background: #0a2742; color: #fff; }
.button-outline-light { background: transparent; border-color: rgba(255,255,255,.55); }
.button-outline-light:hover { background: #fff; border-color: #fff; color: var(--navy); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.utility-bar { height: 34px; background: #0a2742; color: #dce8f1; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner,
.header-inner,
.hero-grid,
.trust-grid {
  width: min(100%, calc(var(--v4-max) + var(--v4-pad) * 2));
  padding-inline: var(--v4-pad);
}
.utility-inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-links { display: flex; gap: 28px; }
.utility-links a:hover { color: #ffc39a; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(7,26,43,.96);
  color: #fff;
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 14px 34px rgba(2,14,24,.28); }
.header-inner { height: 100%; display: flex; align-items: center; }
.brand { display: inline-flex; min-width: 240px; align-items: center; gap: 13px; }
.brand img { width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.82); border-radius: 50%; object-fit: cover; background: #fff; }
.brand span { display: flex; flex-direction: column; }
.brand strong { color: #fff; font-size: 15px; line-height: 1.1; letter-spacing: .06em; }
.brand small { margin-top: 5px; color: #91a9bb; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.primary-nav { display: flex; flex: 1; justify-content: flex-end; gap: clamp(16px, 1.45vw, 27px); }
.primary-nav a { position: relative; color: #c2d0da; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: #fff; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 0; margin-left: 10px; }
.language-switcher { position: relative; }
.language-trigger {
  display: flex;
  min-width: 136px;
  height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.28);
  padding: 0 13px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.language-trigger::after { content: ""; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; margin-left: auto; transform: translateY(-2px) rotate(45deg); }
.language-trigger img, .language-option img { width: 22px; height: 16px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.32); object-fit: cover; }
.language-menu {
  position: absolute;
  z-index: 130;
  top: calc(100% + 10px);
  right: 0;
  width: 228px;
  border: 1px solid #d7e0e7;
  padding: 7px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(2,14,24,.24);
}
.language-option { display: flex; width: 100%; align-items: center; gap: 12px; padding: 11px 12px; color: #243c50; font-size: 12px; font-weight: 800; }
.language-option:hover, .language-option.active { background: #edf4f9; color: var(--blue); }
.language-option small { margin-left: auto; color: #8092a1; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--line); background: #fff; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: #0a2742; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: 760px;
  height: min(900px, calc(100vh - 116px));
  background: var(--navy);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,20,34,.93) 0%, rgba(4,20,34,.64) 39%, rgba(4,20,34,.12) 72%, rgba(4,20,34,.26) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -4%;
  bottom: -25%;
  width: 79%;
  height: 84%;
  background: #fff;
  clip-path: polygon(0 20%, 69% 54%, 100% 100%, 0 100%);
  filter: drop-shadow(18px -18px 42px rgba(4,20,34,.12));
}
.hero-grid { position: relative; z-index: 4; display: block; min-height: 100%; }
.hero-copy { display: flex; width: min(760px, 52%); min-height: 100%; flex-direction: column; justify-content: flex-start; padding: clamp(82px, 9vh, 126px) 0 245px; }
.hero-copy .eyebrow { color: #9ed0f5; }
.hero h1 {
  max-width: 790px;
  margin: 25px 0 24px;
  color: #fff;
  font-size: clamp(58px, 5.15vw, 88px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.048em;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0,0,0,.25);
}
.hero-summary { max-width: 660px; margin: 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 31px; }
.button-blue { border-color: #1775bd; background: #1775bd; }
.button-blue:hover { border-color: #fff; background: #fff; color: var(--navy); }
.hero-factory { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.hero-model-card {
  position: absolute;
  z-index: 5;
  top: 58px;
  right: var(--v4-pad);
  display: flex;
  min-width: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.19);
  padding: 20px 24px;
  background: rgba(7,26,43,.68);
  backdrop-filter: blur(13px);
}
.hero-model-card span { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-model-card strong { font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.hero-panel { position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: 150px; color: var(--ink); }
.hero-panel-grid { display: grid; width: min(44%, 850px); height: 100%; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-left: max(0px, calc((100vw - min(100vw, 1700px)) / 2)); padding-left: var(--v4-pad); padding-right: 24px; }
.hero-panel-item { align-self: end; padding-bottom: 32px; }
.hero-panel-item span { display: block; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-panel-item strong { display: block; max-width: 280px; margin-top: 8px; color: var(--navy); font-size: 14px; line-height: 1.45; }
.hero-scroll { position: absolute; z-index: 6; left: 51%; bottom: 21px; width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.72); border-radius: 20px; }
.hero-scroll span { position: absolute; top: 8px; left: 11px; width: 3px; height: 10px; border-radius: 3px; background: var(--orange); }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; min-height: 122px; grid-template-columns: 1.35fr repeat(4, 1fr); }
.trust-intro,
.trust-fact { display: flex; flex-direction: column; justify-content: center; }
.trust-intro { padding-right: 36px; }
.trust-intro > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.trust-intro strong { margin-top: 6px; color: #0a2742; font-size: 16px; }
.trust-fact { min-height: 122px; padding: 0 0 0 32px; border-right: 0; border-left: 1px solid var(--line); }
.trust-fact:first-child { border-left: 0; }
.trust-fact strong { display: block; color: #0a2742; font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.trust-fact span { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 126px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .about-copy h2, .contact-copy h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(38px, 3vw, 58px);
  line-height: 1.06;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.section-heading > p { max-width: 550px; margin: 0; color: var(--muted); font-size: 17px; }
.section-heading-light h2 { color: #fff; }
.section-heading-light > p { color: #9bb1c2; }

.about-section { background: var(--mist); }
.about-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(55px, 6vw, 110px); align-items: center; }
.about-media { position: relative; min-height: 590px; }
.about-media > img { width: 92%; height: 540px; object-fit: cover; box-shadow: var(--shadow); }
.about-media::before { content: ""; position: absolute; right: 0; bottom: 24px; width: 56%; height: 58%; border: 12px solid var(--blue); opacity: .12; }
.video-trigger { position: absolute; right: 1%; bottom: 66px; display: flex; align-items: center; gap: 13px; min-height: 72px; border: 0; padding: 0 25px; background: var(--orange); color: #fff; font-weight: 800; box-shadow: 0 18px 40px rgba(236,108,37,.25); }
.video-trigger i { font-style: normal; }
.about-media blockquote { position: absolute; bottom: 8px; left: 30px; max-width: 430px; margin: 0; padding: 18px 23px; background: #fff; color: var(--navy); font-size: 14px; font-weight: 800; box-shadow: var(--shadow); }
.about-copy > .about-paragraphs p { color: var(--muted); font-size: 17px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts div { padding: 19px 13px 19px 0; }
.about-facts dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-facts dd { margin: 5px 0 0; color: var(--navy); font-size: 21px; font-weight: 800; }

.products-section { background: #fff; }
.equipment-path { display: grid; grid-template-columns: 230px 1fr; min-height: 122px; margin: 0 0 66px; color: #fff; background: var(--navy); }
.equipment-path > span { display: flex; align-items: center; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,.14); color: #8db6d4; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.equipment-path ol { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; padding: 0; list-style: none; }
.equipment-path li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: center; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.equipment-path li:last-child { border-right: 0; }
.equipment-path li b { color: var(--orange); font-size: 12px; letter-spacing: .08em; }
.equipment-path li strong { max-width: 180px; font-size: 13px; line-height: 1.45; }
.equipment-family-heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 25px; }
.equipment-family-heading > div { display: flex; align-items: center; gap: 15px; }
.equipment-family-heading span { display: grid; width: 36px; height: 36px; place-items: center; background: var(--orange); color: #fff; font-size: 10px; font-weight: 900; }
.equipment-family-heading strong { color: var(--navy); font-size: 18px; }
.equipment-family-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.equipment-family-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); padding: 0; display: grid; grid-template-columns: minmax(210px,.82fr) minmax(0,1.18fr); color: var(--ink); background: #fff; text-align: left; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.equipment-family-card::after { content: ""; position: absolute; inset: 0; border: 3px solid transparent; pointer-events: none; transition: border-color .25s ease; }
.equipment-family-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.equipment-family-card.active::after { border-color: var(--blue); }
.family-media { position: relative; min-width: 0; overflow: hidden; background: #e8edf1; }
.family-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.equipment-family-card[data-series="epe-foam-extrusion"] .family-media img { object-fit: contain; padding: 22px; background: linear-gradient(145deg,#f8fafb,#e3e9ed); }
.equipment-family-card:hover .family-media img { transform: scale(1.04); }
.family-media > span { position: absolute; top: 18px; left: 18px; display: grid; width: 38px; height: 30px; place-items: center; background: var(--orange); color: #fff; font-size: 10px; font-weight: 900; }
.family-blueprint { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(145deg,#0a2940,#061827); }
.family-blueprint::before, .family-blueprint::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(111,172,217,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(111,172,217,.12) 1px,transparent 1px); background-size: 24px 24px; }
.family-blueprint::after { inset: 25% 12%; border: 1px solid rgba(128,194,239,.36); transform: skewX(-14deg); background: none; }
.family-blueprint i { position: absolute; z-index: 1; right: 15%; left: 15%; height: 1px; background: rgba(126,196,245,.45); }
.family-blueprint i:nth-child(1) { top: 38%; }
.family-blueprint i:nth-child(2) { top: 51%; width: 52%; }
.family-blueprint i:nth-child(3) { top: 64%; width: 68%; }
.family-blueprint strong { position: absolute; z-index: 2; right: 18px; bottom: 16px; color: rgba(255,255,255,.28); font-size: 31px; letter-spacing: .16em; }
.family-body { position: relative; padding: 34px 34px 28px; display: flex; flex-direction: column; }
.family-body > p { margin: 0 0 14px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.family-body h3 { margin: 0; color: var(--navy); font-size: clamp(24px,2vw,34px); line-height: 1.08; letter-spacing: -.035em; }
.family-body > span { display: block; margin: 17px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.family-body > div { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); }
.family-body small { color: #81909b; font-size: 10px; font-weight: 800; }
.family-body b { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 11px; }
.family-body b i { color: var(--orange); font-size: 18px; font-style: normal; }
.equipment-family-card.active .family-body { box-shadow: inset 5px 0 0 var(--blue); }
.series-stage { scroll-margin-top: 130px; margin-top: 74px; padding: 48px; border-top: 5px solid var(--blue); background: #f0f4f6; }
.series-stage-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
.series-stage-heading > div { max-width: 850px; }
.series-stage-heading span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.series-stage-heading h3 { margin: 8px 0 10px; color: var(--navy); font-size: clamp(34px,3vw,52px); letter-spacing: -.04em; }
.series-stage-heading p { max-width: 780px; margin: 0; color: var(--muted); line-height: 1.7; }
.change-family { min-height: 44px; border: 1px solid #bccbd6; padding: 0 18px; background: transparent; color: var(--navy); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.change-family:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { position: relative; width: 100%; overflow: hidden; aspect-ratio: 4 / 3; border: 0; padding: 0; display: block; background: linear-gradient(145deg,#f8fafb,#e8eef2); color: inherit; }
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .35s ease; }
.product-card:has([src*="epe-film-laminator"]) .product-media img { object-fit: cover; padding: 0; }
.product-card:hover .product-media img { transform: scale(1.035); }
.model-blueprint { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.62); background-color: #092238; background-image: linear-gradient(rgba(92,153,197,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(92,153,197,.16) 1px,transparent 1px); background-size: 22px 22px; }
.model-blueprint strong { font-size: 22px; letter-spacing: .12em; }
.product-badge { position: absolute; top: 13px; left: 13px; padding: 5px 9px; background: var(--blue); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-count { position: absolute; right: 13px; bottom: 12px; color: #92a1ad; font-size: 10px; font-weight: 800; }
.product-body { padding: 22px 23px 24px; }
.product-body h3 { margin: 0; color: var(--navy); font-size: 25px; letter-spacing: -.02em; }
.product-body > p { min-height: 50px; margin: 8px 0 18px; color: var(--muted); font-size: 13px; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.product-specs span { padding: 10px; background: #f7f9fa; color: var(--muted); font-size: 10px; }
.product-specs b { display: block; margin-top: 2px; color: var(--ink); font-size: 12px; }
.product-open { width: 100%; min-height: 45px; border: 0; margin-top: 16px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; }
.product-open:hover { background: var(--blue); }
.series-empty { min-height: 300px; padding: 50px; display: grid; grid-template-columns: 150px minmax(0,1fr) auto; gap: 38px; align-items: center; border: 1px dashed #a9bdcc; background: #fff; }
.series-empty[hidden] { display: none; }
.series-empty > span { display: grid; min-height: 130px; place-items: center; color: #8eabbf; background-color: var(--navy); background-image: linear-gradient(rgba(121,178,218,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(121,178,218,.12) 1px,transparent 1px); background-size: 20px 20px; font-size: 18px; font-weight: 900; letter-spacing: .12em; }
.series-empty h3 { margin: 0 0 12px; color: var(--navy); font-size: 28px; }
.series-empty p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.75; }

.solutions-section { background: var(--mist); }
.solutions-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.solutions-media { position: sticky; top: 120px; margin: 0; }
.solutions-media img { width: 100%; min-height: 610px; object-fit: cover; }
.solutions-media figcaption { position: absolute; right: 0; bottom: 0; padding: 14px 18px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solution-list { border-top: 1px solid #c8d2da; }
.solution-item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid #c8d2da; }
.solution-item > b { color: #91a2ae; font-size: 16px; }
.solution-item h3 { margin: 0; color: var(--navy); font-size: 21px; }
.solution-item p { margin: 7px 0 13px; color: var(--muted); }
.solution-item span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.applications-section { padding-top: 100px; }
.application-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.application-card { min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 31px; background: #fff; transition: background .2s ease, color .2s ease; }
.application-card:hover { background: var(--blue); color: #fff; }
.application-card > b { color: var(--orange); font-size: 12px; }
.application-card h3 { margin: 50px 0 7px; font-size: 20px; }
.application-card p { margin: 0; color: var(--muted); font-size: 13px; }
.application-card:hover p { color: #d9e9f5; }

.factory-section { overflow: hidden; background: var(--navy); }
.factory-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.factory-card { position: relative; overflow: hidden; aspect-ratio: 1.42 / 1; border: 0; padding: 0; background: #0a2236; color: #fff; text-align: left; }
.factory-card img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s ease, opacity .3s ease; }
.factory-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(2,15,25,.94)); }
.factory-card span { position: absolute; z-index: 2; right: 24px; bottom: 21px; left: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 16px; font-weight: 800; }
.factory-card span::after { content: "+"; color: var(--orange); font-size: 25px; }
.factory-card:hover img { opacity: 1; transform: scale(1.04); }

.service-section { background: var(--navy-2); }
.service-steps { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; }
.service-step { position: relative; min-height: 270px; border-top: 1px solid rgba(255,255,255,.18); border-right: 1px solid rgba(255,255,255,.13); padding: 27px 23px; color: #fff; }
.service-step::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.service-step > b { color: #66839a; font-size: 36px; }
.service-step h3 { margin: 63px 0 10px; font-size: 18px; }
.service-step p { margin: 0; color: #a9bdcc; font-size: 13px; }

.news-section { padding-top: 148px; padding-bottom: 148px; background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.news-card { position: relative; overflow: hidden; min-height: 500px; border: 1px solid var(--line); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-image-link { display: block; }
.news-card figure { aspect-ratio: 16/9; margin: 0; overflow: hidden; background: #e8edf1; }
.news-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.news-card:hover figure img { transform: scale(1.04); }
.news-body { padding: 29px 29px 32px; }
.news-meta { display: flex; justify-content: space-between; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-card h3 { margin: 16px 0 12px; color: var(--navy); font-size: 23px; line-height: 1.28; }
.news-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.article-heading { overflow: hidden; padding: 102px 0 92px; background: var(--navy); color: #fff; }
.article-heading-inner { max-width: 1180px; }
.article-back { display: inline-flex; margin-bottom: 52px; color: #9dc8e9; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-back:hover { color: #fff; }
.article-heading .eyebrow { color: #8dc8f4; }
.article-heading h1 { max-width: 1120px; margin: 0; font-size: clamp(52px, 5.2vw, 88px); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.article-deck { max-width: 880px; margin: 30px 0 0; color: #bfd0dd; font-size: 19px; line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 56px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.article-meta span { display: flex; flex-direction: column; gap: 6px; }
.article-meta small { color: #7893a8; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.article-meta b, .article-meta time { color: #fff; font-size: 13px; font-style: normal; font-weight: 800; }
.article-meta i, .article-meta em { font-style: normal; }
.article-main { padding: 94px 0 120px; background: #fff; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(54px, 7vw, 120px); align-items: start; }
.article-content { min-width: 0; }
.article-lead-image { margin: 0 0 66px; }
.article-lead-image img { width: 100%; max-height: 720px; object-fit: cover; box-shadow: var(--shadow); }
.article-body { max-width: 920px; margin: 0 auto; color: #334a5c; font-family: Georgia, "Noto Serif", "Noto Serif SC", serif; font-size: clamp(18px, 1.2vw, 21px); line-height: 1.95; }
.article-body p { margin: 0 0 2em; }
.article-body p:first-child::first-letter { float: left; margin: .08em .12em 0 0; color: var(--orange); font-family: Inter, Arial, sans-serif; font-size: 4.3em; font-weight: 850; line-height: .78; }
.article-aside { position: sticky; top: 126px; border-top: 4px solid var(--orange); padding: 28px 0 0; }
.article-aside span { display: block; margin-bottom: 20px; color: var(--navy); font-size: 20px; font-weight: 850; line-height: 1.35; }
.article-aside .button { width: 100%; }
.related-news { border-top: 1px solid var(--line); background: var(--mist); }
.related-news .news-card { min-height: 470px; }

.contact-section { padding: 116px 0; background: linear-gradient(115deg,#eef3f6 0%,#f8fafb 55%,#e5edf3 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,7vw,120px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 670px; color: var(--muted); font-size: 17px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.contact-details div { min-height: 112px; padding: 19px; background: #fff; }
.contact-details span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong, .contact-details a { display: block; margin-top: 8px; color: var(--navy); font-size: 14px; font-weight: 800; }
.inquiry-form { padding: 38px; background: #fff; box-shadow: var(--shadow); }
.form-intro { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; padding-bottom: 19px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 20px; }
.form-intro span { color: var(--orange); font-size: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: block; margin-bottom: 17px; color: #425565; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form textarea { width: 100%; border: 1px solid #ccd7df; border-radius: 1px; margin-top: 7px; padding: 12px 14px; color: var(--ink); background: #fbfcfd; outline: 0; text-transform: none; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,95,168,.08); }
.form-submit { width: 100%; }
.form-note { margin: 11px 0 0; color: #82919d; font-size: 10px; text-align: center; }

.site-footer { padding: 78px 0 0; background: #03111d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1.7fr .7fr .65fr; gap: 55px; align-items: start; }
.brand-footer { min-width: 0; }
.brand-footer img { width: 56px; height: 56px; }
.footer-brand > p { max-width: 370px; color: #8fa6b7; font-size: 13px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.social-links a { display: inline-flex; min-height: 36px; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 6px 12px 6px 7px; background: rgba(255,255,255,.04); color: #c5d1da; font-size: 10px; font-weight: 800; text-decoration: none; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.social-links a[hidden] { display: none !important; }
.social-links a:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
.social-links img { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; }

html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .header-inner,
html[dir="rtl"] .utility-inner,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .article-meta { direction: rtl; }
html[dir="rtl"] .language-menu { right: auto; left: 0; text-align: right; }
html[dir="rtl"] .language-option small { margin-left: 0; margin-right: auto; }
html[dir="rtl"] input,
html[dir="rtl"] textarea { text-align: right; }
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] .contact-person-card a,
html[dir="rtl"] [data-phone-link],
html[dir="rtl"] [data-footer-phone],
html[dir="rtl"] [data-footer-email],
html[dir="rtl"] [data-footer-landline],
html[dir="rtl"] .model-name,
html[dir="rtl"] .model-specs strong { direction: ltr; unicode-bidi: isolate; text-align: right; }
html[dir="rtl"] .floating-whatsapp { right: auto; left: 24px; }
html[dir="rtl"] .back-top { right: auto; left: 28px; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.footer-nav div, .footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-nav strong, .footer-contact > strong, .footer-qr strong { margin-bottom: 8px; color: #fff; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a, .footer-contact a, .footer-contact p { margin: 0; color: #8fa6b7; font-size: 12px; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact-windows { display: grid; gap: 9px; margin: 2px 0 4px; }
.footer-contact-window { min-width: 190px; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; padding: 12px 13px; background: rgba(255,255,255,.045); }
.footer-contact-window span { display: block; margin-bottom: 7px; color: #6f8a9d; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact-window a { display: block; overflow-wrap: anywhere; color: #dce7ee; font-size: 11px; font-weight: 800; }
.footer-contact-window.is-empty a { color: #6f8494; font-weight: 600; }
.footer-qr img { width: 145px; padding: 8px; background: #fff; }
.footer-qr span { display: block; margin-top: 9px; color: #8fa6b7; font-size: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 75px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 55px; color: #6d8495; font-size: 10px; }
.footer-bottom i { font-style: normal; }
.footer-bottom div { display: flex; gap: 22px; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 28px;
  padding: 6px 18px 6px 7px;
  background: #20b85a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}
.floating-whatsapp span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 11px; font-weight: 900; }
.floating-whatsapp b { font-size: 11px; }
.back-top { position: fixed; z-index: 89; right: 26px; bottom: 89px; display: none; width: 42px; height: 42px; border: 1px solid #d4dee5; background: #fff; color: var(--navy); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.back-top.visible { display: block; }

.media-dialog { width: min(1120px, calc(100% - 34px)); max-height: 90vh; border: 0; padding: 0; background: #071a2b; color: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.55); }
.media-dialog::backdrop { background: rgba(1,10,17,.8); backdrop-filter: blur(6px); }
.dialog-close { position: sticky; z-index: 4; top: 12px; float: right; width: 42px; height: 42px; border: 0; margin: 12px 12px -54px 0; background: var(--orange); color: #fff; font-size: 27px; }
.dialog-body { clear: both; padding: 42px; }
.dialog-body h2 { margin: 0 0 22px; font-size: 34px; }
.model-dialog-body { padding: 52px; }
.model-dialog-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: 0 58px 34px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.model-dialog-heading > div { max-width: 760px; }
.model-dialog-heading p { margin: 0 0 10px; color: #74b7e8; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.model-dialog-heading h2 { margin: 0 0 14px; font-size: clamp(42px,4.2vw,66px); line-height: 1; letter-spacing: -.05em; }
.model-dialog-heading span { color: #a9bdcc; line-height: 1.7; }
.dialog-specs { display: grid; grid-template-columns: repeat(4,1fr); margin: 34px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.dialog-specs div { min-height: 92px; padding: 20px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.dialog-specs span { display: block; color: #7895aa; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.dialog-specs b { display: block; margin-top: 9px; color: #fff; font-size: 17px; }
.dialog-extra-specs { margin-top: 34px; }
.dialog-extra-specs h3 { margin: 0 0 14px; color: #fff; font-size: 17px; }
.dialog-extra-specs dl { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.dialog-extra-specs dl div { min-width: 0; padding: 15px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.dialog-extra-specs dt { color: #7895aa; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.dialog-extra-specs dd { overflow-wrap: anywhere; margin: 7px 0 0; color: #e6eef4; font-size: 13px; font-weight: 800; }
.dialog-media-heading { display: flex; align-items: center; gap: 15px; margin: 44px 0 18px; }
.dialog-media-heading > span { display: grid; width: 36px; height: 36px; place-items: center; background: var(--orange); color: #fff; font-size: 10px; font-weight: 900; }
.dialog-media-heading div { display: grid; gap: 3px; }
.dialog-media-heading b { color: #fff; font-size: 14px; }
.dialog-media-heading small { color: #7895aa; font-size: 9px; letter-spacing: .12em; }
.dialog-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.dialog-photo { position: relative; overflow: hidden; aspect-ratio: 4/3; border: 0; padding: 0; background: #edf2f5; }
.dialog-photo img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.dialog-photo:hover img { transform: scale(1.035); }
.dialog-photo > span { position: absolute; right: 10px; bottom: 10px; display: grid; width: 31px; height: 25px; place-items: center; background: var(--blue); color: #fff; font-size: 9px; font-weight: 900; }
.dialog-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.dialog-video { position: relative; }
.dialog-video > span { position: absolute; z-index: 1; top: 10px; left: 10px; padding: 5px 8px; background: var(--orange); color: #fff; font-size: 8px; font-weight: 900; }
.dialog-videos video { width: 100%; max-height: 430px; background: #000; }
.media-empty { display: grid; min-height: 190px; place-items: center; border: 1px dashed #587188; padding: 20px; color: #8ca5b8; font-size: 12px; text-align: center; }
.media-empty > span { align-self: end; color: #4f7189; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.video-slot { min-height: 260px; }
.lightbox-image { width: 100%; max-height: 76vh; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; transition: none; }

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

@media (max-width: 1320px) {
  .shell { width: min(calc(100% - 48px), var(--shell)); }
  .primary-nav { gap: 18px; }
  .brand { min-width: 230px; }
  .header-actions { min-width: 260px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .equipment-family-card { grid-template-columns: minmax(180px,.75fr) minmax(0,1.25fr); }
}

@media (max-width: 1120px) {
  .primary-nav { position: fixed; top: 116px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: 14px 24px 24px; background: var(--navy); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-toggle { display: block; }
  .header-actions { min-width: 0; margin-left: auto; }
  .hero { height: auto; min-height: 760px; }
  .hero-copy { width: min(690px, 72%); min-height: 760px; padding-top: 82px; padding-bottom: 230px; }
  .hero-model-card { right: 24px; min-width: 290px; }
  .hero-panel-grid { width: 82%; gap: 24px; }
  .about-grid, .solutions-layout, .contact-grid { grid-template-columns: 1fr; }
  .equipment-family-grid { grid-template-columns: 1fr; }
  .equipment-family-card { grid-template-columns: minmax(250px,.8fr) minmax(0,1.2fr); }
  .equipment-path { grid-template-columns: 190px 1fr; }
  .equipment-path li { padding-inline: 18px; }
  .series-stage { padding: 36px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .solutions-media { position: relative; top: 0; }
  .solutions-media img { min-height: 470px; }
  .application-grid { grid-template-columns: repeat(3,1fr); }
  .service-steps { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1.8fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; max-width: 560px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: flex-end; }
  .site-header { height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .header-actions .button { display: none; }
  .primary-nav { top: 106px; }
  .language-trigger { min-width: 54px; padding: 0 10px; }
  .language-trigger span { display: none; }
  .language-menu { right: -58px; }
  .hero { min-height: 710px; }
  .hero::after { left: -24%; width: 118%; height: 67%; bottom: -28%; clip-path: polygon(0 26%, 74% 57%, 100% 100%, 0 100%); }
  .hero-copy { width: min(620px, 86%); min-height: 710px; padding-top: 66px; padding-bottom: 228px; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .hero-summary { max-width: 540px; font-size: 15px; }
  .hero-model-card { top: 28px; right: 16px; min-width: 230px; padding: 14px 16px; }
  .hero-model-card strong { font-size: 26px; }
  .hero-panel { height: 154px; }
  .hero-panel-grid { width: 96%; grid-template-columns: repeat(3,1fr); gap: 14px; padding-right: 24px; }
  .hero-panel-item { padding-bottom: 22px; }
  .hero-panel-item strong { font-size: 12px; }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-fact { min-height: 100px; padding: 22px; border-bottom: 1px solid var(--line); }
  .section { padding: 86px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
  .about-media { min-height: 490px; }
  .about-media > img { height: 440px; }
  .equipment-path { grid-template-columns: 1fr; }
  .equipment-path > span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding-block: 18px; }
  .equipment-family-card { min-height: 310px; grid-template-columns: 42% 58%; }
  .series-stage-heading { align-items: flex-start; flex-direction: column; }
  .dialog-specs, .dialog-extra-specs dl { grid-template-columns: repeat(2,1fr); }
  .model-dialog-heading { align-items: flex-start; flex-direction: column; }
  .application-grid { grid-template-columns: repeat(2,1fr); }
  .factory-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .dialog-gallery { grid-template-columns: 1fr; }
  .dialog-videos { grid-template-columns: 1fr; }
  .article-heading { padding: 76px 0 70px; }
  .article-back { margin-bottom: 34px; }
  .article-heading h1 { font-size: clamp(42px, 10vw, 66px); }
  .article-meta { gap: 28px; }
  .article-main { padding: 64px 0 88px; }
  .article-lead-image { margin-bottom: 44px; }
}

@media (max-width: 560px) {
  .brand strong { font-size: 13px; }
  .language-menu { position: fixed; top: 105px; right: 12px; left: 12px; width: auto; }
  .hero { min-height: auto; height: auto; padding-bottom: 0; }
  .hero::before { background: linear-gradient(90deg, rgba(4,20,34,.94), rgba(4,20,34,.58)); }
  .hero::after { display: none; }
  .hero-grid { min-height: 640px; }
  .hero-copy { width: 100%; min-height: 640px; padding-top: 86px; padding-bottom: 160px; }
  .hero h1 { font-size: 42px; }
  .hero-actions .button { width: 100%; }
  .hero-model-card { top: 26px; right: 16px; min-width: 0; }
  .hero-model-card span { display: none; }
  .hero-panel { position: relative; height: auto; background: #fff; }
  .hero-panel-grid { width: 100%; grid-template-columns: 1fr; gap: 0; margin: 0; padding: 0 16px; }
  .hero-panel-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .hero-panel-item:last-child { border-bottom: 0; }
  .hero-panel-item strong { max-width: none; font-size: 13px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-fact strong { font-size: 25px; }
  .about-media { min-height: 420px; }
  .about-media > img { width: 100%; height: 360px; }
  .video-trigger { right: 0; bottom: 37px; min-height: 58px; padding-inline: 15px; font-size: 11px; }
  .about-media blockquote { right: 15px; bottom: -5px; left: 15px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div { border-bottom: 1px solid var(--line); }
  .equipment-path ol { grid-template-columns: 1fr; }
  .equipment-path li { min-height: 72px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .equipment-family-heading { align-items: flex-start; flex-direction: column; }
  .equipment-family-card { grid-template-columns: 1fr; }
  .family-media { min-height: 235px; }
  .family-body { padding: 28px 24px 24px; }
  .series-stage { margin-inline: -16px; padding: 28px 16px; }
  .product-grid, .application-grid, .factory-grid, .news-grid { grid-template-columns: 1fr; }
  .series-empty { grid-template-columns: 1fr; padding: 28px; }
  .series-empty > span { min-height: 90px; }
  .solutions-media img { min-height: 340px; }
  .service-steps { grid-template-columns: 1fr; }
  .service-step { min-height: 190px; }
  .service-step h3 { margin-top: 30px; }
  .form-row, .contact-details { grid-template-columns: 1fr; }
  .inquiry-form { padding: 25px 20px; }
  .footer-grid, .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; padding: 20px 0; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { padding-right: 7px; }
  .dialog-body { padding: 29px 18px; }
  .model-dialog-heading { padding-right: 48px; }
  .dialog-specs, .dialog-extra-specs dl { grid-template-columns: 1fr 1fr; }
  .article-heading { padding: 58px 0; }
  .article-heading h1 { font-size: 38px; }
  .article-deck { font-size: 16px; }
  .article-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .article-meta span:last-child { grid-column: 1 / -1; }
  .article-body { font-size: 17px; line-height: 1.85; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
