:root {
  --bg: #ffffff;
  --text: #1e1e1e;
  --text-soft: #6a6a6a;
  --line: #e5e5e5;
  --red: rgba(147, 7, 8, 1);
  --red-dark: #7b0708;
  --olive: #8ca15a;
  --gold: #d7b57d;
  --black: #222222;
  --footer: #2a2a2a;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  --container: 1140px;
  --content-left-line: 56px;
  --content-right-gutter: 56px;
  --hero-stats-right-gutter: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: calc(100% - var(--content-left-line) - var(--content-right-gutter));
  margin-left: var(--content-left-line);
  margin-right: var(--content-right-gutter);
}

.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;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button--primary {
  background: var(--red);
  color: #fff;
}

/* Common Breadcrumb */
.content-breadcrumb {
  background: #ffffff;
  padding: 16px 0;
  color: var(--red);
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.content-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-breadcrumb a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
}
.content-breadcrumb a:hover {
  color: var(--red);
  opacity: 0.8;
}
.content-breadcrumb__sep {
  color: #999;
  font-size: 14px;
}
.content-breadcrumb__current {
  color: var(--red);
}
.content-breadcrumb i.fa-home {
  margin-right: 6px;
  font-size: 16px;
}

/* Common Banner overrides */
.page-main-wrapper {
  position: relative;
  z-index: 0;
}
body:has(main.page-main-wrapper) .site-header {
  box-shadow: none;
  border-bottom: none;
}
.page-main-wrapper .news-hero__image,
.page-main-wrapper .news-hero__overlay,
.page-main-wrapper .product-list-hero__image,
.page-main-wrapper .product-list-hero__overlay,
.page-main-wrapper .product-detail-hero__image,
.page-main-wrapper .product-detail-hero__overlay,
.page-main-wrapper .contact-hero__image,
.page-main-wrapper .contact-hero__overlay,
.page-main-wrapper .case-hero__image,
.page-main-wrapper .case-hero__overlay,
.page-main-wrapper .article-hero__image,
.page-main-wrapper .article-hero__overlay {
}
.page-main-wrapper .news-hero,
.page-main-wrapper .product-list-hero,
.page-main-wrapper .product-detail-hero,
.page-main-wrapper .contact-hero,
.page-main-wrapper .case-hero,
.page-main-wrapper .article-hero {
  min-height: 520px;
  margin-top: -24px;
}
.page-main-wrapper .news-hero__content,
.page-main-wrapper .product-list-hero__content,
.page-main-wrapper .product-detail-hero__content,
.page-main-wrapper .contact-hero__content,
.page-main-wrapper .case-hero__content,
.page-main-wrapper .article-hero__content {
  min-height: 520px;
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button--ghost:hover {
  border-color: #fff;
}

.button--dark {
  background: #2d2d2d;
  color: #fff;
}

.button--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
  background: var(--red);
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
}

.site-header .container {
  width: 100%;
  margin: 0;
  padding-left: var(--content-left-line);
  padding-right: var(--content-right-gutter);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 64px;
  padding: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 88px;
  min-height: 64px;
  padding-left: 0;
  margin-left: -1%;
}

.site-logo__image {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 36px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 20px;
  white-space: nowrap;
  overflow: visible;
  transform: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  opacity: 0.98;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;
  box-shadow: 0 13px 0 -11px transparent;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.site-nav > a + a::before {
  content: none;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 20px;
  white-space: nowrap;
  flex: 0 0 auto;
  opacity: 0.98;
  transition: opacity 0.2s ease;
}

.header-right > .nav-lang:hover,
.header-right > .nav-lang:focus-visible {
  opacity: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a.is-mega-active {
  opacity: 1;
  box-shadow: 0 13px 0 -11px #fff;
}

.site-nav:hover a.is-active:not(:hover):not(:focus-visible):not(.is-mega-active) {
  box-shadow: 0 13px 0 -11px transparent;
}

.site-nav a.has-caret::after {
  content: none;
}

.site-nav__mobile-item {
  display: contents;
}

.site-nav__mobile-submenu {
  display: none;
}

.site-nav__mobile-toggle {
  display: none;
}

.site-nav__mobile-submenu[hidden] {
  display: none !important;
}

.nav-lang__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  /* background: #18c46b; */
  flex: 0 0 22px;
  overflow: hidden;
}

.nav-lang__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #fff;
}

.header-cta {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #79909c;
  background: #0d1419;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  min-width: 108px;
  margin-left: 0;
  cursor: pointer;
}

.header-cta__arrow {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 12px;
  flex: 0 0 18px;
  line-height: 0;
}

.header-cta__arrow svg,
.button__icon svg,
.hero-arrow__icon svg,
.section-link__icon svg,
.product-card__icon svg,
.article-link__icon svg,
.carousel-btn__icon svg,
.nav-toggle__icon,
.hero-stat__icon,
.feature-card__icon,
.solution-card__icon,
.footer-contact__icon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

body.quote-modal-open {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 120;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(90vh, 760px);
  padding: 36px 30px 34px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.quote-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.quote-modal__header {
  text-align: center;
}

.quote-modal__header h2 {
  margin: 0;
  color: #111;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 700;
}

.quote-modal__header h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--red);
}

.quote-modal__header p {
  margin: 28px 0 0;
  color: #202020;
  font-size: 14px;
  line-height: 1.6;
}

.quote-modal__form {
  margin-top: 18px;
}

.quote-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 38px;
}

.quote-modal__form input,
.quote-modal__form textarea {
  width: 100%;
  border: 1px solid #cfd4da;
  background: rgba(255, 255, 255, 0.92);
  color: #4b5563;
  font-size: 15px;
  line-height: 1.45;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-modal__form input {
  min-height: 44px;
}

.quote-modal__form textarea {
  min-height: 118px;
  margin-top: 12px;
  resize: vertical;
}

.quote-modal__form input::placeholder,
.quote-modal__form textarea::placeholder {
  color: #718096;
}

.quote-modal__form input:focus,
.quote-modal__form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 0, 0, 0.1);
  background: #fff;
  outline: none;
}

.quote-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.quote-modal__submit {
  min-width: 142px;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quote-modal__submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.header-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 29;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: translateY(0);
  transform-origin: top center;
  will-change: clip-path, opacity;
  transition:
    opacity 0.32s ease,
    clip-path 0.46s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0.46s;
}

.header-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: 0s;
}

.header-mega-menu--simple {
  left: 0;
  right: auto;
  width: auto;
}

.header-simple-menu__inner {
  min-width: 292px;
  padding: 10px 0 12px;
  border-top: 4px solid var(--red);
  border-right: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 26px 54px rgba(16, 28, 45, 0.16);
  backdrop-filter: blur(8px);
}

.header-simple-menu__list {
  display: grid;
  gap: 0;
}

.header-simple-menu__link {
  position: relative;
  display: block;
  padding: 15px 24px 15px 28px;
  color: rgba(17, 17, 17, 0.92);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    padding-left 0.22s ease;
}

.header-simple-menu__link + .header-simple-menu__link {
  border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.header-simple-menu__link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(147, 7, 8, 0.38);
  transform: translateY(-50%);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.header-simple-menu__link:hover,
.header-simple-menu__link:focus-visible {
  background: rgba(147, 7, 8, 0.045);
  color: var(--red);
  padding-left: 32px;
}

.header-simple-menu__link:hover::before,
.header-simple-menu__link:focus-visible::before {
  background: var(--red);
  transform: translateY(-50%) scale(1.25);
}

.header-mega-menu__inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 42px rgba(16, 28, 45, 0.1);
}

.header-mega-menu__side {
  padding-right: 16px;
}

.header-mega-menu__all {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #52657e;
  font-size: 16px;
  font-weight: 700;
}

.header-mega-menu__tabs {
  display: grid;
  gap: 10px;
}

.header-mega-menu__tab {
  width: fit-content;
  min-width: 188px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #2f2f2f;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-mega-menu__tab:hover,
.header-mega-menu__tab:focus-visible,
.header-mega-menu__tab.is-active {
  border-color: #b8cae6;
  background: #f5f9ff;
  color: #111111;
}

.header-mega-menu__content {
  min-width: 0;
}

.header-mega-menu__panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.header-mega-menu__panel.is-active {
  animation: headerMegaPanelFadeIn 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-mega-menu__panel[hidden] {
  display: none;
}

.header-mega-menu--products .header-mega-menu__inner,
.header-mega-menu--solutions .header-mega-menu__inner {
  width: 100%;
  margin: 0;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  padding: 26px 28px 28px;
  align-items: start;
  background: #fff;
}

.header-mega-menu--products .header-mega-menu__inner {
  grid-template-columns: 260px minmax(0, 1fr);
  padding: 22px 18px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
}

.header-mega-menu--products .header-mega-menu__side,
.header-mega-menu--solutions .header-mega-menu__side {
  grid-column: 1 / 2;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(24, 24, 24, 0.16);
}

.header-mega-menu--products .header-mega-menu__side {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 6px 22px 8px 4px;
  border-right: 1px solid rgba(17, 17, 17, 0.09);
}

.header-mega-menu--products .header-mega-menu__all,
.header-mega-menu--solutions .header-mega-menu__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin-bottom: 24px;
  padding: 0;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.header-mega-menu--products .header-mega-menu__all {
  margin-bottom: 18px;
  color: rgba(17, 17, 17, 0.36);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
}

.header-mega-menu--products .header-mega-menu__tabs,
.header-mega-menu--solutions .header-mega-menu__tabs {
  gap: 8px;
}

.header-mega-menu--products .header-mega-menu__tabs {
  counter-reset: product-tab;
  gap: 10px;
}

.header-mega-menu--products .header-mega-menu__quote-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px 14px;
  width: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f5 100%);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
  appearance: none;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.header-mega-menu--products .header-mega-menu__quote-card:hover,
.header-mega-menu--products .header-mega-menu__quote-card:focus-visible {
  border-color: rgba(147, 7, 8, 0.12);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.09);
  transform: translateY(-2px);
  outline: none;
}

.header-mega-menu--products .header-mega-menu__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  grid-row: 1 / span 2;
}

.header-mega-menu--products .header-mega-menu__quote-icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.header-mega-menu--products .header-mega-menu__quote-copy {
  display: grid;
  gap: 4px;
  align-content: start;
}

.header-mega-menu--products .header-mega-menu__quote-copy strong {
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.header-mega-menu--products .header-mega-menu__quote-copy span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.header-mega-menu--products .header-mega-menu__quote-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  grid-column: 2 / 3;
  padding: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.header-mega-menu--products .header-mega-menu__quote-action-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.header-mega-menu--products .header-mega-menu__quote-action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-mega-menu--products .header-mega-menu__tab,
.header-mega-menu--solutions .header-mega-menu__tab {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 12px 14px 12px 58px;
  border: 0;
  border-radius: 10px;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.header-mega-menu--products .header-mega-menu__tab {
  min-height: 64px;
  padding: 14px 18px 14px 94px;
  border-radius: 12px;
  color: rgba(17, 17, 17, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  counter-increment: product-tab;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.header-mega-menu--products .header-mega-menu__tab::before,
.header-mega-menu--solutions .header-mega-menu__tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 68% 68%, rgba(255, 255, 255, 0.86) 0 16%, transparent 17% 100%),
    var(--red);
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(147, 7, 8, 0.2);
}

.header-mega-menu--products .header-mega-menu__tab::before {
  left: 18px;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: transparent;
  background-image: url("/assets/cms/img/nav/icon02.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  box-shadow: none;
}

.header-mega-menu--products .header-mega-menu__tab:nth-child(1)::before {
  background-image: url("/assets/cms/img/nav/icon02.png");
}

.header-mega-menu--products .header-mega-menu__tab:nth-child(2)::before {
  background-image: url("/assets/cms/img/nav/icon03.png");
}

.header-mega-menu--products .header-mega-menu__tab:nth-child(3)::before {
  background-image: url("/assets/cms/img/nav/icon04.png");
}

.header-mega-menu--products .header-mega-menu__tab:nth-child(4)::before {
  background-image: url("/assets/cms/img/nav/icon05.png");
}

.header-mega-menu--products .header-mega-menu__tab:nth-child(5)::before {
  background-image: url("/assets/cms/img/nav/icon01.png");
}

.header-mega-menu--products .header-mega-menu__tab::after {
  content: none;
}

.header-mega-menu--products .header-mega-menu__tab:hover,
.header-mega-menu--products .header-mega-menu__tab:focus-visible,
.header-mega-menu--products .header-mega-menu__tab.is-active,
.header-mega-menu--solutions .header-mega-menu__tab:hover,
.header-mega-menu--solutions .header-mega-menu__tab:focus-visible,
.header-mega-menu--solutions .header-mega-menu__tab.is-active {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.06);
}

.header-mega-menu--products .header-mega-menu__tab:hover,
.header-mega-menu--products .header-mega-menu__tab:focus-visible,
.header-mega-menu--products .header-mega-menu__tab.is-active {
  background: rgba(147, 7, 8, 0.05);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
  transform: translateX(2px);
}

.header-mega-menu--products .header-mega-menu__tab.is-active::after,
.header-mega-menu--products .header-mega-menu__tab:hover::after,
.header-mega-menu--products .header-mega-menu__tab:focus-visible::after {
  color: var(--red);
}

.header-mega-menu--products .header-mega-menu__tab.is-active {
  box-shadow:
    inset 3px 0 0 var(--red),
    0 16px 34px rgba(17, 17, 17, 0.1);
}

.header-mega-menu--products .header-mega-menu__content,
.header-mega-menu--solutions .header-mega-menu__content {
  grid-column: 2 / 3;
  min-width: 0;
  padding: 0 0 0 34px;
}

.header-mega-menu--products .header-mega-menu__content {
  padding: 6px 0 0 26px;
  background: #fff;
}

.header-mega-menu--solutions .header-mega-menu__inner {
  grid-template-columns: 210px minmax(0, 1fr);
  padding: 0;
  min-height: 310px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
  overflow: hidden;
}

.header-mega-menu--solutions .header-mega-menu__side {
  display: flex;
  align-self: stretch;
  min-height: 310px;
  padding: 42px 24px 38px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.header-mega-menu--solutions .header-mega-menu__content {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px 22px 0;
  background: #fff;
}

.header-solutions-menu__intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

.header-solutions-menu__eyebrow,
.header-mega-menu--products .header-mega-menu__eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-solutions-menu__eyebrow {
  padding-bottom: 14px;
  position: relative;
}

.header-solutions-menu__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: rgba(147, 7, 8, 0.5);
}

.header-solutions-menu__title,
.header-mega-menu--products .header-mega-menu__panel-heading {
  margin-bottom: 0;
  color: #18202a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.header-solutions-menu__title {
  text-transform: uppercase;
}

.header-solutions-menu__desc,
.header-solutions-menu__card-desc,
.header-solutions-menu__footer-copy span,
.header-mega-menu--products .header-mega-menu__quote-copy span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.header-solutions-menu__desc {
  margin: 0;
  max-width: 150px;
}

.header-solutions-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 20px;
  align-content: start;
}

.header-solutions-menu__card {
  display: grid;
  grid-template-columns: 72px 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  min-height: 168px;
  padding: 24px 28px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.header-solutions-menu__card:hover,
.header-solutions-menu__card:focus-visible {
  border-color: rgba(147, 7, 8, 0.12);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.header-solutions-menu__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(147, 7, 8, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
}

.header-solutions-menu__card:nth-child(1) .header-solutions-menu__card-icon { background-image: url("/assets/cms/img/case_studies.svg"); }
.header-solutions-menu__card:nth-child(2) .header-solutions-menu__card-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b0000a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 52V22h14v30'/%3E%3Cpath d='M26 52V14h18v38'/%3E%3Cpath d='M44 52V28h8v24'/%3E%3Cpath d='M8 52h48'/%3E%3Cpath d='M18 28h2M18 34h2M18 40h2M32 22h2M38 22h2M32 28h2M38 28h2M32 34h2M38 34h2M32 40h2M38 40h2'/%3E%3C/svg%3E"); }
.header-solutions-menu__card:nth-child(3) .header-solutions-menu__card-icon { background-image: url("/assets/cms/img/nav/icon04.png"); }
.header-solutions-menu__card:nth-child(4) .header-solutions-menu__card-icon { background-image: url("/assets/cms/img/nav/icon05.png"); }
.header-solutions-menu__card:nth-child(5) .header-solutions-menu__card-icon { background-image: url("/assets/cms/img/nav/icon01.png"); }
.header-solutions-menu__card:nth-child(6) .header-solutions-menu__card-icon { background-image: url("/assets/cms/img/nav/icon06.png"); }

.header-mega-menu--about-us .header-solutions-menu__card:nth-child(1) .header-solutions-menu__card-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b0000a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='20' r='8'/%3E%3Cpath d='M18 50c2.5-8 10-13 14-13s11.5 5 14 13'/%3E%3Cpath d='M12 54h40'/%3E%3C/svg%3E"); }
.header-mega-menu--about-us .header-solutions-menu__card:nth-child(2) .header-solutions-menu__card-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b0000a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 18h32v28H16z'/%3E%3Cpath d='M24 12v12M40 12v12M22 32h20M22 40h12'/%3E%3C/svg%3E"); }
.header-mega-menu--about-us .header-solutions-menu__card:nth-child(3) .header-solutions-menu__card-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b0000a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 46c0-9.94 6.27-18 14-18s14 8.06 14 18'/%3E%3Cpath d='M32 10v12M22 18l10 4 10-4'/%3E%3Cpath d='M16 50h32'/%3E%3C/svg%3E"); }
.header-mega-menu--about-us .header-solutions-menu__card:nth-child(4) .header-solutions-menu__card-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b0000a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 12l18 8v12c0 10-7.67 17.33-18 20-10.33-2.67-18-10-18-20V20z'/%3E%3Cpath d='M25 31l5 5 9-10'/%3E%3C/svg%3E"); }

.header-solutions-menu__card-index {
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.header-solutions-menu__card-body {
  display: grid;
  gap: 8px;
  align-content: center;
  padding-right: 8px;
}

.header-solutions-menu__card-title,
.header-mega-menu--products .header-mega-card__title {
  color: #1e232b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.header-solutions-menu__card-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--red);
}

.header-solutions-menu__card-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-solutions-menu__footer {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: calc(100% + 44px);
  min-height: 90px;
  margin: auto -22px 0;
  padding: 20px 22px;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.24s ease;
}

.header-solutions-menu__footer:hover,
.header-solutions-menu__footer:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #f6f5f4 100%);
  outline: none;
}

.header-solutions-menu__footer-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.header-solutions-menu__footer-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-solutions-menu__footer-copy {
  display: grid;
  gap: 2px;
}

.header-solutions-menu__footer-copy strong,
.header-mega-menu--products .header-mega-menu__quote-copy strong {
  color: #242a32;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.header-solutions-menu__footer-action,
.header-mega-menu--products .header-mega-menu__quote-action {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-solutions-menu__footer-action {
  gap: 12px;
  min-height: 44px;
  padding: 0 24px;
  justify-self: end;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  white-space: nowrap;
}

.header-solutions-menu__footer-action-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.header-solutions-menu__footer-action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-mega-menu--products .header-mega-menu__panel,
.header-mega-menu--solutions .header-mega-menu__panel {
  display: block;
}

.header-mega-menu--products .header-mega-menu__panel[hidden],
.header-mega-menu--solutions .header-mega-menu__panel[hidden] {
  display: none;
}

.header-mega-menu__panel-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.header-mega-menu--products .header-mega-menu__panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 20px;
}

.header-mega-menu--products .header-mega-menu__panel-copy {
  display: grid;
  gap: 6px;
}

.header-mega-menu--products .header-mega-menu__eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-mega-menu--products .header-mega-menu__panel-heading {
  margin-bottom: 0;
  color: #181818;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.header-mega-menu--products .header-mega-menu__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 2px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-mega-menu--products .header-mega-menu__panel-link .header-mega-menu__panel-link-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 22px;
}

.header-mega-menu--products .header-mega-menu__panel-link .header-mega-menu__panel-link-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-mega-menu__product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  align-content: start;
}

.header-mega-menu--products .header-mega-menu__product-grid {
  gap: 16px 18px;
}

.header-mega-menu--solutions .header-mega-menu__sublist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
  align-content: start;
}

.header-mega-menu--solutions .header-mega-menu__subitem {
  display: block;
  min-height: 0;
  padding: 6px 0;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.header-mega-menu--solutions .header-mega-menu__subitem:hover,
.header-mega-menu--solutions .header-mega-menu__subitem:focus-visible {
  color: var(--red);
  transform: translateX(2px);
}

.header-mega-menu--solutions .header-mega-menu__empty {
  padding: 8px 0;
  color: rgba(17, 17, 17, 0.56);
  font-size: 14px;
  line-height: 1.6;
}

.header-mega-menu--products .header-mega-feature,
.header-mega-menu--solutions .header-mega-feature {
  grid-column: 1 / -1;
  height: auto;
  min-height: 0;
  aspect-ratio: 2.35 / 1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.header-mega-menu--products .header-mega-feature img,
.header-mega-menu--solutions .header-mega-feature img {
  object-fit: contain;
}

.header-mega-menu--products .header-mega-card,
.header-mega-menu--solutions .header-mega-card {
  --mega-product-content-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}

.header-mega-menu--products .header-mega-card {
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.header-mega-menu--products .header-mega-card:hover,
.header-mega-menu--products .header-mega-card:focus-visible,
.header-mega-menu--solutions .header-mega-card:hover,
.header-mega-menu--solutions .header-mega-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: none;
}

.header-mega-menu--products .header-mega-card:hover,
.header-mega-menu--products .header-mega-card:focus-visible {
  border-color: rgba(147, 7, 8, 0.12);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}

@keyframes headerMegaPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-mega-menu--products .header-mega-card__image,
.header-mega-menu--solutions .header-mega-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--mega-product-content-width);
  aspect-ratio: 1.95 / 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.header-mega-menu--products .header-mega-card__image {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.header-mega-menu--products .header-mega-card__image img,
.header-mega-menu--solutions .header-mega-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.header-mega-menu--products .header-mega-card__title,
.header-mega-menu--solutions .header-mega-card__title {
  display: block;
  min-height: 0;
  width: var(--mega-product-content-width);
  margin: 0;
  padding: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  color: #232323;
}

.header-mega-menu--products .header-mega-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 14px 18px 16px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.header-mega-menu--products .header-mega-card__title::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
  background-color: var(--red);
  -webkit-mask: center / 18px 12px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M1 6H12.5' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M8.5 1.5L13 6L8.5 10.5' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: center / 18px 12px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M1 6H12.5' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M8.5 1.5L13 6L8.5 10.5' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.header-mega-menu--about .header-mega-menu__inner {
  width: 100%;
  margin: 0;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  min-height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.header-mega-menu--about {
  right: auto;
  width: 800px;
}

.header-mega-menu--about .header-mega-menu__side {
  display: flex;
  flex-direction: column;
  padding-right: 0;
  background: #efefef;
  border-right: 0;
  min-height: 500px;
}

.header-mega-menu--about .header-mega-menu__tabs {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
  gap: 0;
}

.header-mega-menu--about .header-mega-menu__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 33.3333%;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 16px 10px;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #efefef;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.header-mega-menu--about .header-mega-menu__tab:hover,
.header-mega-menu--about .header-mega-menu__tab:focus-visible,
.header-mega-menu--about .header-mega-menu__tab.is-active {
  background: #f7f7f7;
  color: #111;
}

.header-mega-menu--about .header-mega-menu__content {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: #ddd;
  padding-left: 0;
}

.header-mega-menu--about .header-mega-menu__panel {
  grid-template-columns: 1fr;
  gap: 0;
  height: 100%;
}

.header-mega-feature {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.header-mega-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-mega-feature__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.header-mega-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 154px;
  padding: 10px;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  background: #fafbfd;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.header-mega-card:hover,
.header-mega-card:focus-visible {
  transform: translateY(-4px);
  border-color: #dde6f1;
  box-shadow: 0 14px 28px rgba(22, 37, 58, 0.08);
}

.header-mega-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f3f7 100%);
  overflow: hidden;
}

.header-mega-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.header-mega-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 6px 2px;
  overflow: hidden;
  color: #55657a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  word-break: break-word;
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle__icon {
  display: block;
  width: 24px;
  height: 24px;
  color: #fff;
  line-height: 0;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0a0d12;
}

.about-profile-hero__summary,
.projects-hero__summary,
.case-hero__summary,
.product-list-hero__summary,
.contact-hero__summary,
.product-detail-hero__summary {
  font-size: 18px !important;
  line-height: 1.5 !important;
}

.section {
  padding: 20px 0;
}

.section-label,
.section-tag {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag--dark {
  color: var(--red);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-bar h2,
.section-center h2,
.about-copy h2,
.faq-column h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.section-bar a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-bar--light {
  color: #fff;
}

.section-bar--dark {
  color: var(--text);
}

.section-bar--stack {
  display: block;
}

.section-center {
  margin-bottom: 22px;
  text-align: left;
}

.section-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 16px;
  flex: 0 0 26px;
  line-height: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.certificates-section {
  background: #fff;
  padding: 22px 0 12px;
  overflow: hidden;
}

.certificates-section .container {
  width: 100%;
  margin: 0;
}

.certificates-section .section-center {
  width: calc(100% - var(--content-left-line) - var(--content-right-gutter));
  margin: 0 var(--content-right-gutter) 14px var(--content-left-line);
}

.certificates-section .section-tag {
  margin-bottom: 8px;
  color: var(--red);
}

.certificates-section h2 {
  color: #2f2f2f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.certificate-carousel-container {
  position: relative;
  width: calc(100% - clamp(32px, 7vw, 120px));
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 0 28px;
  overflow: visible;
}

.certificate-carousel {
  position: relative;
  width: 100%;
  padding: 18px 0 34px;
  overflow: visible;
}

.certificate-carousel .swiper-wrapper {
  align-items: center;
}

.certificate-carousel .swiper-slide {
  width: clamp(248px, 27vw, 348px);
  display: flex;
  justify-content: center;
}

.certificate-card-wrapper {
  position: relative;
  width: clamp(248px, 27vw, 348px);
  aspect-ratio: 154 / 197;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(111, 69, 30, 0.96) 0%, rgba(164, 111, 56, 0.98) 18%, rgba(123, 75, 36, 1) 34%, rgba(188, 135, 76, 0.98) 52%, rgba(116, 70, 32, 1) 72%, rgba(86, 49, 21, 0.98) 100%);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(255, 239, 209, 0.22),
    inset 0 0 0 8px rgba(84, 48, 21, 0.3);
  transform-origin: center center;
  backface-visibility: hidden;
  transition: box-shadow 0.28s ease, opacity 0.28s ease;
  will-change: transform;
}

.certificate-carousel .swiper-slide:not(.swiper-slide-active) .certificate-card-wrapper {
  opacity: 0.78;
}

.certificate-card-wrapper::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 8px, rgba(90, 53, 26, 0.02) 8px 16px),
    linear-gradient(135deg, rgba(133, 82, 41, 0.75), rgba(95, 57, 28, 0.45));
  box-shadow:
    inset 0 0 0 1px rgba(255, 233, 191, 0.18),
    inset 0 0 18px rgba(65, 35, 14, 0.24);
  pointer-events: none;
}

.certificate-carousel-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  transform: translateZ(0);
  padding: 10px;
  border: 12px solid transparent;
  border-radius: 2px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #fdfdfd 0%, #f0ebe2 40%, #ffffff 100%) border-box;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(208, 196, 176, 0.8),
    inset 0 0 0 10px rgba(255, 255, 255, 0.96);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.certificate-carousel .swiper-slide-active .certificate-card-wrapper {
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.2),
    inset 0 0 0 2px rgba(255, 239, 209, 0.22),
    inset 0 0 0 8px rgba(84, 48, 21, 0.3);
}

.certificate-carousel .swiper-slide-active .certificate-carousel-img {
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(208, 196, 176, 0.84),
    inset 0 0 0 10px rgba(255, 255, 255, 0.98);
}

.certificate-card-wrapper:hover {
  box-shadow:
    0 10px 16px rgba(0, 0, 0, 0.1),
    inset 0 0 0 2px rgba(255, 239, 209, 0.26),
    inset 0 0 0 8px rgba(84, 48, 21, 0.32);
}

.certificate-card-wrapper:hover .certificate-carousel-img {
  transform: scale(1.002);
  box-shadow:
    0 10px 16px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(208, 196, 176, 0.85),
    inset 0 0 0 10px rgba(255, 255, 255, 0.98);
}

.certificate-carousel-nav {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  z-index: 100;
}

.carousel-btn {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.carousel-btn__icon {
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.carousel-btn:hover {
  background: #f7f7f7;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.carousel-btn:active {
  transform: scale(0.95);
}

@media (max-width: 720px) {
  .certificates-section {
    padding: 20px 0 6px;
  }

  .certificates-section .section-center {
    margin-bottom: 10px;
  }

  .certificate-carousel-container {
    width: calc(100% - 24px);
  }

  .certificate-carousel {
    padding: 8px 0 26px;
  }

  .certificate-carousel .swiper-slide,
  .certificate-card-wrapper {
    width: clamp(258px, 86vw, 340px);
    padding: 14px;
  }

  .certificate-carousel-img {
    padding: 8px;
    border-width: 10px;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.22),
      inset 0 0 0 1px rgba(208, 196, 176, 0.75),
      inset 0 0 0 8px rgba(255, 255, 255, 0.95);
  }

  .certificate-carousel-nav {
    top: 52%;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .factory-section {
    background-attachment: scroll, scroll, scroll;
  }
}

.factory-section {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.5) 28%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.34) 100%),
    url("../img/container-house-factory-interior.webp") center/cover no-repeat;
  background-attachment: fixed, fixed, fixed;
}

.factory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 54%),
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0) 60%);
  background-size: 100% 100%, 240% 240%;
  background-position: 0 0, -140% 40%;
  opacity: 0;
  pointer-events: none;
}

html.has-js .factory-section .factory-copy .section-tag,
html.has-js .factory-section .factory-title p,
html.has-js .factory-section .factory-copy > p:not(.section-tag),
html.has-js .factory-section .factory-stats article {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  will-change: transform, opacity, filter;
}

html.has-js .factory-section .factory-copy .section-tag {
  transition: opacity 720ms ease, transform 920ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 820ms ease;
  transition-delay: 180ms;
}

html.has-js .factory-section .factory-title p {
  transition: opacity 820ms ease, transform 1020ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 900ms ease;
}

html.has-js .factory-section .factory-title p:nth-child(1) {
  transition-delay: 320ms;
}

html.has-js .factory-section .factory-title p:nth-child(2) {
  transition-delay: 460ms;
}

html.has-js .factory-section .factory-title p:nth-child(3) {
  transition-delay: 600ms;
}

html.has-js .factory-section .factory-copy > p:not(.section-tag) {
  transition: opacity 860ms ease, transform 1080ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 940ms ease;
  transition-delay: 760ms;
}

html.has-js .factory-section .factory-stats article {
  position: relative;
  overflow: hidden;
  transition: opacity 620ms ease, transform 860ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 820ms ease;
}

html.has-js .factory-section .factory-stats article:nth-child(1) {
  transition-delay: 260ms;
}

html.has-js .factory-section .factory-stats article:nth-child(2) {
  transition-delay: 360ms;
}

html.has-js .factory-section .factory-stats article:nth-child(3) {
  transition-delay: 460ms;
}

html.has-js .factory-section .factory-stats article:nth-child(4) {
  transition-delay: 560ms;
}

html.has-js .factory-section .factory-stats article::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 48%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
}

html.has-js .factory-section.is-revealing::before {
  animation: factory-sweep 1600ms ease-out both;
}

html.has-js .factory-section.is-revealing .factory-copy .section-tag,
html.has-js .factory-section.is-revealing .factory-title p,
html.has-js .factory-section.is-revealing .factory-copy > p:not(.section-tag),
html.has-js .factory-section.is-revealing .factory-stats article {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

html.has-js .factory-section.is-revealing .factory-stats article::after {
  animation: factory-card-shine 1100ms ease-out both;
}

html.has-js .factory-section.is-revealing .factory-stats article:nth-child(2)::after {
  animation-delay: 140ms;
}

html.has-js .factory-section.is-revealing .factory-stats article:nth-child(3)::after {
  animation-delay: 280ms;
}

html.has-js .factory-section.is-revealing .factory-stats article:nth-child(4)::after {
  animation-delay: 420ms;
}

@keyframes factory-sweep {
  0% {
    opacity: 0;
    background-position: 0 0, -140% 40%;
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: 0 0, 140% 40%;
  }
}

@keyframes factory-card-shine {
  0% {
    opacity: 0;
    transform: translateX(-140%);
  }
  18% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateX(140%);
  }
}

.factory-panel {
  display: grid;
  grid-template-columns: minmax(320px, 3.5fr) minmax(0, 6.5fr);
  gap: clamp(24px, 2.4vw, 44px);
  align-items: flex-start;
  min-height: clamp(352px, 30.8vw, 660px);
  padding: clamp(33px, 6.05vw, 123px) 0 clamp(81px, 8.8vw, 165px);
}

.factory-section .container {
  width: calc(100% - var(--content-left-line) - var(--content-right-gutter));
  margin-left: var(--content-left-line);
  margin-right: var(--content-right-gutter);
}

.factory-copy {
  position: relative;
  z-index: 1;
  padding: 0;
}

.factory-copy .section-tag {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}

.factory-title {
  /* max-width: 600px; */
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 1);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  font-family: inherit;
}

.factory-title p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.factory-title p + p {
  margin-top: clamp(6px, 0.7vw, 12px);
}

.factory-title span {
  display: block;
}

.factory-copy > p:not(.section-tag) {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: clamp(8px, 0.62vw, 12px);
  align-items: center;
  align-self: center;
  justify-content: stretch;
  padding-top: 0;
}

.factory-stats article {
  min-height: clamp(86px, 5.6vw, 116px);
  padding: clamp(17px, 1.2vw, 24px) clamp(12px, 1.2vw, 18px) clamp(17px, 1.38vw, 27px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-align: left;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(1px);
}

.factory-stats strong {
  display: block;
  margin-bottom: clamp(4px, 0.42vw, 8px);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.factory-stats strong::after {
  content: "+";
}

.factory-stats span {
  display: block;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.solution-grid {
  display: grid;
  gap: 10px;
}

.solutions-section {
  position: relative;
  z-index: 3;
  padding: 22px 0 30px;
}

.solutions-section .section-bar {
  align-items: center;
  margin-bottom: 14px;
}

.solutions-section .section-tag {
  display: block;
  margin: 0 0 10px;
  color: #fff;
}

.solutions-section .section-bar h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.solutions-section .section-bar a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 360ms ease;
}

.solutions-section .section-bar a:hover,
.solutions-section .section-bar a:focus-visible {
  transform: translateY(-2px);
}

.solutions-section .section-bar a:hover::before,
.solutions-section .section-bar a:focus-visible::before {
  transform: none;
}

.solutions-section .section-bar a:hover .section-link__icon,
.solutions-section .section-bar a:focus-visible .section-link__icon {
  transform: translate3d(5px, 0, 0);
}

html.has-js .solutions-section:not(.is-revealing) .section-bar .section-tag,
html.has-js .solutions-section:not(.is-revealing) .section-bar h2,
html.has-js .solutions-section:not(.is-revealing) .section-bar a,
html.has-js .solutions-section:not(.is-revealing) .solution-card--compact {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(1px);
  will-change: transform, opacity, filter;
}

html.has-js .solutions-section .section-bar .section-tag {
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 680ms ease;
  transition-delay: 80ms;
}

html.has-js .solutions-section .section-bar h2 {
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 720ms ease;
  transition-delay: 160ms;
}

html.has-js .solutions-section .section-bar a {
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 720ms ease;
  transition-delay: 240ms;
}

html.has-js .solutions-section .solution-card--compact {
  transition: opacity 560ms ease, transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 780ms ease;
  transform: translateY(22px) translateX(14px);
}

html.has-js .solutions-section .solution-card--compact:nth-child(odd) {
  transform: translateY(22px) translateX(-14px);
}

html.has-js .solutions-section .solution-card--compact:nth-child(1) { transition-delay: 320ms; }
html.has-js .solutions-section .solution-card--compact:nth-child(2) { transition-delay: 440ms; }
html.has-js .solutions-section .solution-card--compact:nth-child(3) { transition-delay: 560ms; }
html.has-js .solutions-section .solution-card--compact:nth-child(4) { transition-delay: 680ms; }

html.has-js .solutions-section.is-revealing .section-bar .section-tag,
html.has-js .solutions-section.is-revealing .section-bar h2,
html.has-js .solutions-section.is-revealing .section-bar a,
html.has-js .solutions-section.is-revealing .solution-card--compact {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 1024px) {
  .factory-section {
    background-attachment: scroll;
  }
}

.solution-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.solution-card--compact a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 520ms ease, border-color 520ms ease, filter 520ms ease;
}

.solution-card--compact a::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-140%);
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 320ms ease;
}

.solution-card--compact a:hover,
.solution-card--compact a:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  filter: brightness(1.03);
}

.solution-card--compact a:hover::before,
.solution-card--compact a:focus-visible::before {
  opacity: 1;
  transform: translateX(140%);
}

.solution-card--compact a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.36) 18%, rgba(8, 8, 8, 0.88) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.solution-card--compact img {
  width: 100%;
  aspect-ratio: 1 / 0.66;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.solution-card--compact a:hover img,
.solution-card--compact a:focus-visible img {
  transform: scale(1.08);
}

.solution-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 11px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 1;
  color: #fff;
  background: none;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.solution-card--compact a:hover .solution-card__label,
.solution-card--compact a:focus-visible .solution-card__label {
  transform: translateY(-2px);
}

.solution-card__icon-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 420ms ease, filter 420ms ease;
}

.solution-card--compact a:hover .solution-card__icon-wrap,
.solution-card--compact a:focus-visible .solution-card__icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
  filter: brightness(1.05);
}

.solution-card__icon {
  display: block;
  width: 30px;
  height: 30px;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.solution-card--compact a:hover .solution-card__icon,
.solution-card--compact a:focus-visible .solution-card__icon {
  transform: scale(1.06);
}

.solution-card__label-text {
  display: block;
  line-height: 1.15;
}

.solution-card__label-text span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .solution-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .solutions-section {
    padding: 18px 0 24px;
  }

  .solutions-section .section-bar {
    align-items: flex-start;
    gap: 10px;
  }

  .solutions-section .section-bar h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }

  .solution-grid--compact {
    grid-template-columns: 1fr;
  }

  .solution-card--compact img {
    aspect-ratio: 1 / 0.7;
  }
}

.audit-section {
  background: #fff;
}

.audit-full-width {
  width: 100%;
  height: auto;
}

.audit-images-container {
  display: flex;
  gap: 0;
  width: 100%;
}

.audit-images-container--single {
  display: block;
}

.audit-image {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.audit-image--single {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .audit-images-container {
    flex-direction: column;
    gap: 20px;
  }

  .audit-image {
    width: 100%;
  }
}

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

.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.audit-card {
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
}

.audit-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
}

.audit-card:nth-child(3),
.audit-card:nth-child(6) {
  transform: translateY(10px);
}

.audit-card:nth-child(2),
.audit-card:nth-child(7) {
  transform: translateY(-6px);
}

.audit-card:nth-child(1),
.audit-card:nth-child(5),
.audit-card:nth-child(7) {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.audit-card:nth-child(2),
.audit-card:nth-child(4),
.audit-card:nth-child(6),
.audit-card:nth-child(8) {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.news-faq-section {
  background: #fff;
}

.news-faq-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
}

.about-copy .section-label,
.products-section .section-tag,
.solutions-section .section-tag,
.certificates-section .section-tag,
.factory-copy .section-tag,
.news-column .section-tag,
.faq-column .section-tag,
.about-profile-company__copy--home .section-label,
.about-profile-why-us__tag,
.about-profile-company__numbers strong,
.about-profile-company__numbers span,
.case-cta__eyebrow,
.case-customer-visit__header .section-label {
  margin: 0 0 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-copy .section-label,
.certificates-section .section-tag,
.news-column .section-tag,
.faq-column .section-tag {
  color: var(--red);
}

.products-section .section-tag {
  color: #fff;
}

.news-column .section-bar h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.audit-section .section-tag {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.faq-column h2 {
  font-size: 28px;
  line-height: 1.2;
}

.news-column .section-bar a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding-bottom: 2px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.article-grid--news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-card--news {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 520ms ease, border-color 520ms ease, filter 520ms ease;
}

.article-card--news::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 13, 19, 0.18), rgba(0, 0, 0, 0) 56%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.5) 58%, rgba(26, 26, 26, 0.5) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.article-card--news > a {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.article-card--news > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.article-card--news img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  transform: scale(1);
  transition: transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.article-card--news:hover,
.article-card--news:focus-within {
  transform: translateY(-10px);
  background: rgba(26, 26, 26, 0.5);
  border-color: rgba(216, 13, 19, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  filter: none;
}

.article-card--news:hover::before,
.article-card--news:focus-within::before {
  opacity: 1;
}

.article-card--news:hover > a::after,
.article-card--news:focus-within > a::after {
  opacity: 1;
}

.article-card--news:hover img,
.article-card--news:focus-within img {
  transform: scale(1.06);
}

.article-card__body {
  position: relative;
  z-index: 1;
  padding: 12px;
}

.article-card__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 6px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.article-card--news h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; line-height: 1.45; }

.article-card--news h3 a {
  transition: color 360ms ease;
}

.article-card--news:hover h3 a,
.article-card--news:focus-within h3 a {
  color: #fff;
}

.article-link {
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: color 360ms ease;
}

.article-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 12px;
  flex: 0 0 20px;
  line-height: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.article-card--news:hover .article-link,
.article-card--news:focus-within .article-link {
  color: #fff;
}

.article-card--news:hover .article-link__icon,
.article-card--news:focus-within .article-link__icon {
  transform: translate3d(4px, 1px, 0);
}

html.has-js .news-faq-section:not(.is-revealing) .news-column .section-tag,
html.has-js .news-faq-section:not(.is-revealing) .news-column .section-bar h2,
html.has-js .news-faq-section:not(.is-revealing) .news-column .section-bar a,
html.has-js .news-faq-section:not(.is-revealing) .news-column .article-card--news {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(1px);
  will-change: transform, opacity, filter;
}

html.has-js .news-faq-section .news-column .section-tag {
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 680ms ease;
  transition-delay: 80ms;
}

html.has-js .news-faq-section .news-column .section-bar h2 {
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 720ms ease;
  transition-delay: 160ms;
}

html.has-js .news-faq-section .news-column .section-bar a {
  transition: opacity 560ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 720ms ease;
  transition-delay: 240ms;
}

html.has-js .news-faq-section .news-column .article-card--news {
  transition: opacity 560ms ease, transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 780ms ease;
}

html.has-js .news-faq-section .news-column .article-card--news:nth-child(1) { transition-delay: 320ms; }
html.has-js .news-faq-section .news-column .article-card--news:nth-child(2) { transition-delay: 440ms; }
html.has-js .news-faq-section .news-column .article-card--news:nth-child(3) { transition-delay: 560ms; }

html.has-js .news-faq-section.is-revealing .news-column .section-tag,
html.has-js .news-faq-section.is-revealing .news-column .section-bar h2,
html.has-js .news-faq-section.is-revealing .news-column .section-bar a,
html.has-js .news-faq-section.is-revealing .news-column .article-card--news {
  opacity: 1;
  transform: none;
  filter: none;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list--plain details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 16px 26px 16px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  line-height: 1.5;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  color: #d5d5d5;
  background: #1a1a1a;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: stretch;
  padding: 16px 0 14px;
}

.footer-left {
  display: grid;
  grid-template-rows: 88px 1fr;
  gap: 0;
  min-height: 100%;
}

.footer-left-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  height: 88px;
  box-sizing: border-box;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 0;
}

.footer-left-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 12px;
  align-items: stretch;
  min-height: 0;
}

.footer-contact-and-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 318px;
  min-height: 318px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  margin-left: -30px;
  min-height: 100%;
}

.footer-right-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  box-sizing: border-box;
  border-bottom: 0;
  padding: 0;
}

.footer-products-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.footer-form-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 318px;
  min-height: 318px;
}

.footer-form-panel p {
  margin: 0;
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-products ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-products {
  height: 100%;
  padding-top: 0;
  min-height: 318px;
  margin-top: 0;
}

.footer-products ul li {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.06) 100%);
  min-height: 54px;
  padding: 0 22px 0 44px;
  position: relative;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.footer-products ul li:last-child {
  border-bottom: none;
}

.footer-products ul li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.footer-products ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  display: block;
  width: 100%;
}

.footer-products ul li:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.footer-products ul li:hover a {
  color: #fff;
}

.footer-products ul li:hover::before {
  color: #fff;
}

.site-logo--footer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  margin-left: 0;
  margin-left: -1%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 0;
}

.footer-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #b40000;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  margin-bottom: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact__icon-svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer-contact-icon--filled {
  background: transparent;
}

.footer-contact__icon-svg--filled {
  width: 40px;
  height: 40px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-text .contact-label {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 1.4;
}

.footer-contact-text .contact-value {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-decoration: none;
  line-height: 1.35;
  word-break: break-word;
}

.footer-contact-text a.contact-value:hover {
  color: #b40000;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #b40000;
  border-radius: 4px;
}

.footer-social img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.footer-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-form {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.footer-form .form-group {
  position: relative;
  width: 100%;
}

.footer-form__row .form-group {
  margin-bottom: 0;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-form textarea {
  min-height: 80px;
  resize: vertical;
  margin-bottom: 8px;
}

.footer-form .form-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-form textarea + .form-label {
  top: 14px;
  transform: none;
}

.footer-form .required {
  color: #ff0000;
  margin-right: 2px;
  font-weight: bold;
}

.footer-form input:focus + .form-label,
.footer-form input:not(:placeholder-shown) + .form-label,
.footer-form textarea:focus + .form-label,
.footer-form textarea:not(:placeholder-shown) + .form-label {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer-form .button {
  width: 100%;
  min-height: 38px;
  padding: 0 24px;
  border: 0;
  background: #b40000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-top: auto;
}

.footer-form .button:hover {
  background: #c00000;
}

.footer-bottom-bar {
  background: #222;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}

.footer-bottom p {
  margin: 0;
  color: #9b9b9b;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: #999;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-sep {
  color: #555;
  font-size: 13px;
}
@media (min-width: 1025px) {
  .feature-grid {
    margin-top: 42px;
  }

  .footer-left-bottom {
    padding-top: 12px;
  }

  .footer-contact-and-social,
  .footer-form-panel {
    height: 318px;
    min-height: 318px;
  }

  .footer-contact-and-social {
    box-sizing: border-box;
    padding-top: 34px;
  }

  .footer-form-panel > p {
    margin-top: 34px;
  }

  .footer-right {
    display: grid;
    grid-template-rows: 88px 1fr;
    gap: 0;
  }

  .footer-right-top {
    align-items: center;
    min-height: 88px;
    padding: 0;
    border-bottom: 0;
  }

  .footer-products {
    margin-top: 12px;
    height: 318px;
    min-height: 318px;
    padding-top: 0;
  }

  .footer-products ul {
    height: 100%;
    justify-content: space-between;
    gap: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --content-left-line: 24px;
    --content-right-gutter: 24px;
    --hero-stats-right-gutter: 24px;
  }

  .hero-slide img {
    object-position: center 20% !important;
  }

  .site-header {
    min-height: 56px;
  }

  .header-inner {
    min-height: 56px;
    padding: 0;
  }

  .site-logo__image {
    width: 70px;
    height: 70px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .header-right {
    display: contents;
  }

  .header-right > .nav-lang {
    position: relative;
    z-index: 2;
    margin-left: 10px;
    font-size: 14px;
    line-height: 1;
  }

  .header-right > .nav-lang + .header-cta {
    margin-left: 10px;
  }

  .header-mega-menu {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    background: var(--red);
    font-size: 14px;
    justify-content: stretch;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

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

  .header-inner {
    gap: 10px;
  }

  .site-nav > a + a::before {
    display: none;
  }

  .site-nav a {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    min-height: 64px;
    padding: 0 18px;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .site-nav__mega-trigger {
    justify-content: flex-start;
  }

  .site-nav > a:not(.site-nav__mega-trigger) {
    grid-column: 1 / -1;
  }

  .site-nav__mobile-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px;
    align-items: stretch;
  }

  .site-nav__mobile-item > .site-nav__mega-trigger {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-nav__mobile-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    margin-left: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
  }

  .site-nav__mobile-toggle::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .site-nav__mobile-toggle.is-mobile-submenu-open::before {
    transform: rotate(-135deg) translateY(-1px);
  }

  .site-nav__mobile-submenu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 4px 0 8px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--red);
  }

  .site-nav__mobile-submenu-list {
    display: grid;
    gap: 0;
  }

  .site-nav__mobile-submenu-link {
    display: block;
    min-height: 48px;
    padding: 12px 18px 12px 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: none !important;
    border-bottom: 0;
  }

  .site-nav__mobile-submenu-link:hover,
  .site-nav__mobile-submenu-link:focus-visible {
    color: #fff;
  }

  .header-mega-menu--simple {
    width: auto !important;
  }

  .header-simple-menu__inner,
  .header-simple-menu__list,
  .header-simple-menu__link {
    min-width: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active,
  .site-nav a.is-mega-active {
    box-shadow: none;
  }

  .site-nav:hover a.is-active:not(:hover):not(:focus-visible):not(.is-mega-active) {
    box-shadow: none;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: 86vh;
    min-height: 86svh;
  }

  .hero-arrows {
    left: 28px;
    right: 28px;
  }

  .hero-arrow {
    width: 62px;
    height: 62px;
  }

  .hero-shell {
    padding: 92px var(--content-left-line) 208px var(--content-left-line);
  }

  .hero-panel {
    max-width: 680px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-title {
    max-width: 680px;
    font-size: 42px;
    line-height: 1.18;
    white-space: normal;
  }

  .hero-title span + span {
    margin-top: 10px;
  }

  .hero-summary {
    max-width: 600px;
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .about-profile-hero__summary,
  .projects-hero__summary,
  .case-hero__summary,
  .product-list-hero__summary,
  .contact-hero__summary,
  .product-detail-hero__summary {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 188px;
    gap: 12px;
  }

  .hero-actions .button {
    min-width: 196px;
    min-height: 50px;
    padding: 0 22px;
    font-size: 13px;
  }

  .hero-stats {
    bottom: 24px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    column-gap: 22px;
    row-gap: 18px;
  }

  .hero-stat {
    min-height: 72px;
    padding-right: 0;
  }

  .hero-stat::after {
    display: none;
  }

  .hero-stat__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .hero-stat strong {
    font-size: 30px;
  }

  .hero-stat span {
    font-size: 16px;
  }

  .about-grid,
  .factory-panel,
  .news-faq-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .product-grid--five,
  .solution-grid--compact,
  .article-grid--news {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate-card-list,
  .certificate-card-list--dark,
  .certificate-card-list-dark {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .factory-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 32px 0;
  }

  .factory-title {
    max-width: none;
    font-size: 40px;
  }

  .factory-copy > p:not(.section-tag) {
    max-width: none;
    font-size: clamp(14px, 2vw, 16px);
  }

  .factory-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    justify-content: stretch;
    padding-top: 0;
  }

  .about-media__link {
    width: 100%;
    height: 360px;
  }

  .about-copy {
    max-width: none;
    height: auto;
    margin: 0;
    padding: 28px 24px;
  }

  .about-copy .section-label {
    margin-bottom: 14px;
  }

  .about-copy h2 { max-width: 100%; margin-bottom: 22px; font-size: 28px; } .about-copy h2 span + span { padding-left: 56px; }

  .about-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .about-copy .button--dark {
    min-width: 280px;
    min-height: 60px;
    font-size: 13px;
  }

  .about-copy p:last-of-type {
    margin-bottom: 34px;
  }

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

  .audit-card:nth-child(2),
  .audit-card:nth-child(3),
  .audit-card:nth-child(6),
  .audit-card:nth-child(7) {
    transform: none;
  }

  .footer-left-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact-and-social,
  .footer-form-panel {
    height: auto;
    min-height: 0;
  }

  .footer-right {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    padding-top: 16px;
  }

  .footer-right-top {
    min-height: 0;
    height: auto;
  }

  .footer-left-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    height: auto;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .footer-nav a {
    font-size: 14px;
    line-height: 1.25;
  }

  .footer-contact {
    justify-content: flex-start;
    gap: 18px;
    height: auto;
  }

  .footer-contact li {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-contact-icon {
    width: 40px;
    height: 40px;
    margin-top: 0;
    flex: 0 0 40px;
  }

  .footer-contact__icon-svg {
    width: 18px;
    height: 18px;
  }

  .footer-contact__icon-svg--filled {
    width: 40px;
    height: 40px;
  }

  .footer-contact-text {
    gap: 3px;
    min-width: 0;
    flex: 1;
  }

  .footer-contact-text .contact-label {
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-contact-text .contact-value {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
  }

  .footer-products-title {
    font-size: 14px;
  }

  .footer-products ul li {
    min-height: 48px;
    padding: 0 18px 0 38px;
  }

  .footer-products ul li::before {
    left: 15px;
    width: 9px;
    height: 9px;
  }

  .footer-products ul li a {
    font-size: 13px;
    line-height: 1.3;
  }

  .footer-right-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .footer-products {
    min-height: auto;
  }

  .about-copy .section-label,
  .products-section .section-tag,
  .solutions-section .section-tag,
  .certificates-section .section-tag,
  .factory-copy .section-tag,
  .news-column .section-tag,
  .faq-column .section-tag,
  .about-profile-company__copy--home .section-label,
  .about-profile-why-us__tag,
  .about-profile-company__numbers strong,
  .about-profile-company__numbers span,
  .case-cta__eyebrow,
  .case-customer-visit__header .section-label {
    font-size: 15px;
  }

  .products-section .section-bar h2,
  .certificates-section h2,
  .factory-title {
    font-size: 24px;
  }
}

@media (max-width: 1080px) {
  .header-right {
    margin-left: auto;
  }
}

@media (min-width: 1025px) and (max-width: 1179px) {
  :root {
    --content-left-line: 28px;
    --content-right-gutter: 28px;
    --hero-stats-right-gutter: 28px;
  }

  .site-header {
    min-height: 58px;
  }

  .header-inner {
    min-height: 58px;
    padding: 0;
  }

  .site-logo {
    min-width: 72px;
    min-height: 58px;
    margin-left: 0;
  }

  .site-logo__image {
    width: 72px;
    height: 72px;
  }

  .header-right {
    gap: 12px;
  }

  .site-nav {
    gap: 18px;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 18px;
  }

  .site-nav > a + a::before {
    left: -10px;
  }

  .nav-lang {
    gap: 6px;
    font-size: 13px;
    line-height: 18px;
  }

  .nav-lang__badge,
  .nav-lang__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .header-cta {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .header-cta__arrow {
    width: 16px;
    height: 10px;
  }

  .header-mega-menu__inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .header-mega-menu__side {
    padding-right: 10px;
  }

  .header-mega-menu__all {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .header-mega-menu__tabs {
    gap: 8px;
  }

  .header-mega-menu__tab {
    min-width: 156px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .header-mega-menu__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .header-mega-menu--products .header-mega-menu__inner,
  .header-mega-menu--solutions .header-mega-menu__inner {
    width: 100%;
    margin: 0;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 0;
    padding: 20px 20px 22px;
  }

  .header-mega-menu--products .header-mega-menu__tab,
  .header-mega-menu--solutions .header-mega-menu__tab {
    width: 210px;
    min-width: 210px;
    min-height: 48px;
    padding: 10px 12px 10px 50px;
  }

  .header-mega-menu--products .header-mega-menu__tab::before,
  .header-mega-menu--solutions .header-mega-menu__tab::before {
    left: 12px;
    width: 26px;
    height: 26px;
  }

  .header-mega-menu__panel-heading,
  .header-mega-menu--products .header-mega-menu__all,
  .header-mega-menu--solutions .header-mega-menu__all {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .header-mega-menu__product-grid {
    gap: 14px 18px;
  }

  .header-mega-menu--solutions .header-mega-menu__sublist {
    gap: 10px 20px;
  }

  .header-mega-menu--solutions .header-mega-menu__subitem {
    font-size: 14px;
  }

  .header-mega-menu--products .header-mega-menu__side,
  .header-mega-menu--solutions .header-mega-menu__side {
    grid-column: 1 / 2;
    padding: 0 20px 0 0;
  }

  .header-mega-menu--products .header-mega-menu__content,
  .header-mega-menu--solutions .header-mega-menu__content {
    grid-column: 2 / 3;
    padding: 0 0 0 24px;
  }

  .header-mega-menu--products .header-mega-feature,
  .header-mega-menu--solutions .header-mega-feature {
    height: auto;
    min-height: 0;
    aspect-ratio: 2.25 / 1;
  }

  .header-mega-menu--products .header-mega-card__image,
  .header-mega-menu--solutions .header-mega-card__image {
    width: var(--mega-product-content-width);
    aspect-ratio: 1.8 / 1;
  }

  .header-mega-menu--products .header-mega-card__image img,
  .header-mega-menu--solutions .header-mega-card__image img {
    width: 100%;
    height: 100%;
  }

  .header-mega-menu--products .header-mega-card__title,
  .header-mega-menu--solutions .header-mega-card__title {
    width: var(--mega-product-content-width);
    margin: 0;
  }

  .header-mega-menu--products .header-mega-card,
  .header-mega-menu--solutions .header-mega-card {
    --mega-product-content-width: 100%;
  }

  .header-mega-menu--products .header-mega-card__title,
  .header-mega-menu--solutions .header-mega-card__title {
    font-size: 13px;
  }

  .header-mega-menu--about .header-mega-menu__inner {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: 420px;
  }

  .header-mega-menu--about .header-mega-menu__side,
  .header-mega-menu--about .header-mega-menu__content,
  .header-mega-feature {
    min-height: 420px;
  }

  .header-mega-menu--about .header-mega-menu__tab {
    padding: 14px 8px;
    font-size: 14px;
  }

  .header-mega-feature__caption {
    padding: 12px 14px 10px;
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  :root {
    --content-left-line: 18px;
    --content-right-gutter: 18px;
    --hero-stats-right-gutter: 18px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(680px, 78vh, 820px);
    min-height: clamp(680px, 78svh, 820px);
    min-height: clamp(680px, 78dvh, 820px);
  }

  .hero-shell {
    padding: 40px var(--content-left-line) calc(244px + env(safe-area-inset-bottom, 0px)) var(--content-left-line);
  }

  .hero-panel {
    max-width: clamp(280px, 86vw, 360px);
    padding: 0;
    border-radius: 0;
  }

  .hero-kicker {
    font-size: clamp(11px, 2.9vw, 13px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(22px, 8vw, 32px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-summary {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.45;
  }

  .hero-overlay {
    justify-content: flex-end;
    gap: 12px;
    padding:
      0 max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)))
      calc(18px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)));
  }

  .hero-actions,
  .hero-stats,
  .hero-pagination {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none !important;
    animation: none;
    transition: none;
  }

  .hero-actions {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    opacity: 1;
    align-self: flex-start;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: clamp(11px, 3vw, 14px);
    letter-spacing: 0.05em;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-stats .container {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 12px;
  }

  .hero-pagination {
    align-self: flex-start;
    margin-top: 2px;
  }

  html.has-js .products-section:not(.is-revealing) .section-bar .section-tag,
  html.has-js .products-section:not(.is-revealing) .section-bar h2,
  html.has-js .products-section:not(.is-revealing) .section-bar a,
  html.has-js .products-section:not(.is-revealing) .product-card {
    transform: translateY(10px);
    filter: none;
  }

  html.has-js .products-section .section-bar .section-tag,
  html.has-js .products-section .section-bar h2,
  html.has-js .products-section .section-bar a,
  html.has-js .products-section .product-card {
    transition-duration: 240ms;
  }

  html.has-js .products-section .section-bar .section-tag,
  html.has-js .products-section .section-bar h2,
  html.has-js .products-section .section-bar a {
    transition-delay: 0ms;
  }

  html.has-js .products-section .product-card {
    transform: translateY(10px);
  }

  html.has-js .products-section .product-card:nth-child(odd) {
    transform: translateY(10px);
  }

  html.has-js .products-section .product-card:nth-child(1) { transition-delay: 40ms; }
  html.has-js .products-section .product-card:nth-child(2) { transition-delay: 80ms; }
  html.has-js .products-section .product-card:nth-child(3) { transition-delay: 120ms; }
  html.has-js .products-section .product-card:nth-child(4) { transition-delay: 160ms; }
  html.has-js .products-section .product-card:nth-child(5) { transition-delay: 200ms; }

  .section {
    padding: 34px 0;
  }

  .products-section .section-bar {
    align-items: flex-start;
    gap: 10px;
  }

  .about-copy .section-label,
  .products-section .section-tag,
  .solutions-section .section-tag,
  .certificates-section .section-tag,
  .factory-copy .section-tag,
  .news-column .section-tag,
  .faq-column .section-tag,
  .about-profile-company__copy--home .section-label,
  .about-profile-why-us__tag,
  .about-profile-company__numbers strong,
  .about-profile-company__numbers span,
  .case-cta__eyebrow,
  .case-customer-visit__header .section-label {
    font-size: 14px;
  }

  .products-section .section-bar h2,
  .certificates-section h2,
  .news-column .section-bar h2,
  .faq-column h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  .solutions-section .section-bar h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .products-section .section-bar a,
  .solutions-section .section-bar a,
  .news-column .section-bar a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    padding-bottom: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .products-section .section-bar a {
    white-space: nowrap;
  }

  .section-link__icon {
    width: 26px;
    height: 16px;
  }

  .feature-card h3 {
    margin-bottom: 10px;
    min-height: 0;
    font-size: 15px;
    line-height: 1.3;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #5f5f5f;
    font-weight: 500;
  }

  .product-card h3 {
    font-size: 15px;
    line-height: 1.35;
    min-height: 0;
  }

  .product-card p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #5f5f5f;
  }

  .solution-card__label-text {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    white-space: nowrap;
  }

  .solution-card__label-text span {
    display: inline;
    font-size: 11px;
    line-height: 1.2;
  }

  .audit-section .section-tag {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .certificates-section .section-center {
    margin-bottom: 10px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    min-height: 50px;
  }

  .header-inner {
    min-height: 50px;
    padding: 0;
  }

  .site-logo__image {
    width: 56px;
    height: 56px;
  }

  .audit-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .section-headline {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-shell {
    align-items: flex-start;
    padding: 52px var(--content-left-line) 178px var(--content-left-line);
  }

  .hero-panel {
    max-width: min(100%, 360px);
    padding: 14px 14px 16px;
    border-radius: 12px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .hero-kicker {
    padding-left: 0;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-kicker::before {
    display: none;
  }

  .hero-title {
    max-width: min(100%, 340px);
    font-size: 26px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-title span + span {
    margin-top: 8px;
  }

  .hero-summary {
    max-width: min(100%, 340px);
    margin: 18px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }

  .about-profile-hero__summary,
  .projects-hero__summary,
  .case-hero__summary,
  .product-list-hero__summary,
  .contact-hero__summary,
  .product-detail-hero__summary {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 210px;
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    padding: 0 18px;
  }

  .hero-arrows {
    left: 14px;
    right: 14px;
    top: 52%;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow__icon {
    width: 11px;
    height: 11px;
  }

  .hero-pagination {
    left: var(--content-left-line);
    bottom: 18px;
  }

  .hero-stats {
    bottom: 16px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid,
  .feature-grid,
  .product-grid--five,
  .solution-grid--compact,
  .audit-grid,
  .article-grid--news,
  .footer-form__row {
    grid-template-columns: 1fr;
  }

  .footer-form__row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 12px;
  }

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

  .certificate-card-list,
  .certificate-card-list--dark,
  .certificate-card-list-dark {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .certificates-section h2 {
    font-size: 20px;
  }

  .certificate-card img {
    max-width: 170px;
  }

  .factory-panel {
    gap: 18px;
    padding: 24px 0;
  }

  .factory-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .factory-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .factory-stats article {
    padding: 22px 10px 26px;
    min-height: 104px;
  }

  .factory-stats strong {
    font-size: clamp(16px, 3.8vw, 23px);
  }

  .factory-stats span {
    font-size: 12px;
  }

  .hero-stat {
    gap: 10px;
    padding: 12px;
    min-height: 68px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stat::after {
    display: none;
  }

  .hero-stat__icon {
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    padding: 8px;
    flex: 0 0 38px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 12px;
  }

  .about-media__link {
    width: 100%;
    height: 280px;
  }

  .about-copy .section-label {
    margin-bottom: 12px;
  }

  .about-copy h2 { margin-bottom: 18px; font-size: 20px; line-height: 1.2; } .about-copy h2 span + span { padding-left: 44px; }

  .about-copy p {
    font-size: 13px;
    line-height: 1.55;
    color: #5f5f5f;
    font-weight: 500;
  }

  .about-copy .button--dark {
    min-width: 240px;
    min-height: 52px;
    padding: 0 20px;
    font-size: 12px;
  }

  .about-copy p:last-of-type {
    margin-bottom: 24px;
  }

  .article-card--news h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
  }

  .article-link {
    font-size: 13px;
    font-weight: 700;
  }

  .faq-list summary {
    padding: 14px 24px 14px 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .faq-list p {
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-top {
    padding: 20px 0 16px;
  }

  .footer-left-top {
    gap: 12px;
  }

  .footer-left-bottom {
    gap: 18px;
  }

  .footer-nav {
    gap: 8px 16px;
  }

  .footer-nav a {
    font-size: 13px;
  }


  .footer-contact strong {
    font-size: 14px;
  }

  .footer-contact {
    gap: 14px;
  }

  .footer-contact li {
    gap: 10px;
  }

  .footer-contact-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .footer-contact__icon-svg {
    width: 16px;
    height: 16px;
  }

  .footer-contact__icon-svg--filled {
    width: 34px;
    height: 34px;
  }

  .footer-contact-text {
    gap: 2px;
  }

  .footer-contact-text .contact-label {
    font-size: 12px;
  }

  .footer-contact-text .contact-value {
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .footer-contact a,
  .footer-contact span {
    font-size: 14px;
  }

  .footer-social {
    gap: 10px;
    margin-top: 6px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-form-panel p {
    line-height: 1.55;
    font-size: 13px;
  }

  .footer-form input,
  .footer-form textarea {
    font-size: 14px;
  }

  .footer-form .button {
    font-size: 13px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom p,
  .footer-links a {
    font-size: 12px;
  }

  .footer-sep {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  :root {
    --content-left-line: 16px;
    --content-right-gutter: 16px;
    --hero-stats-right-gutter: 16px;
  }

  .hero-slide img {
    object-position: center 12% !important;
  }

  .about-copy .section-label,
  .products-section .section-tag,
  .solutions-section .section-tag,
  .certificates-section .section-tag,
  .factory-copy .section-tag,
  .news-column .section-tag,
  .faq-column .section-tag,
  .about-profile-company__copy--home .section-label,
  .about-profile-why-us__tag,
  .about-profile-company__numbers strong,
  .about-profile-company__numbers span,
  .case-cta__eyebrow,
  .case-customer-visit__header .section-label {
    font-size: 13px;
  }

  .products-section .section-bar h2,
  .certificates-section h2,
  .news-column .section-bar h2,
  .faq-column h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .solutions-section .section-bar h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }

  .products-section .section-bar {
    gap: 10px;
  }

  .products-section .section-bar a,
  .solutions-section .section-bar a,
  .news-column .section-bar a {
    font-size: 11px;
    line-height: 1.2;
  }

  .feature-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #4f4f4f;
    font-weight: 500;
  }

  .product-card h3 {
    font-size: 14px;
    line-height: 1.35;
    min-height: 0;
  }

  .product-card p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #4f4f4f;
  }

  .solution-card__label-text {
    gap: 3px;
  }

  .solution-card__label-text span {
    display: inline;
    font-size: 10px;
    line-height: 1.2;
  }

  .audit-section .section-tag {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }

  .factory-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .factory-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .site-header {
    min-height: 48px;
  }

  .header-inner {
    min-height: 48px;
  }

  .site-logo__image {
    width: 52px;
    height: 52px;
  }

  .site-nav {
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px;
    gap: 12px;
    font-size: 13px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(640px, 76vh, 760px);
    min-height: clamp(640px, 76svh, 760px);
    min-height: clamp(640px, 76dvh, 760px);
  }

  .hero-shell {
    padding:
      36px max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)))
      calc(236px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)));
  }

  .hero-panel {
    max-width: min(100%, 310px);
    padding: 0;
    border-radius: 0;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-summary {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    max-width: min(100%, 310px);
    margin-bottom: 0;
  }

  .about-copy h2 { font-size: 18px; line-height: 1.2; }

  .about-copy p {
    font-size: 13px;
    line-height: 1.55;
    color: #4f4f4f;
    font-weight: 500;
  }

  .article-card--news h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  .article-link {
    font-size: 12px;
  }

  .faq-list summary {
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-list p {
    font-size: 13px;
    line-height: 1.55;
  }

  .about-profile-hero__summary,
  .projects-hero__summary,
  .case-hero__summary,
  .product-list-hero__summary,
  .contact-hero__summary,
  .product-detail-hero__summary {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hero-actions {
    width: min(100%, 310px);
    max-width: min(100%, 310px);
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .hero-actions .button__icon {
    width: 16px;
    height: 10px;
  }

  .hero-arrows {
    left: 12px;
    right: 12px;
    top: 51%;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow__icon {
    width: 10px;
    height: 10px;
  }

  .hero-stats {
    bottom: 14px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .hero-stat {
    gap: 10px;
    padding: 12px;
    min-height: 64px;
  }

  .hero-stat__icon {
    width: 36px;
    height: 36px;
    padding: 7px;
    flex: 0 0 36px;
    border-radius: 10px;
  }

  .hero-stat strong {
    font-size: 18px;
  }

  .hero-stat span {
    font-size: 11px;
  }

  .footer-products ul {
    gap: 8px;
  }

  .footer-products ul li {
    min-height: 44px;
    padding: 0 16px 0 34px;
  }

  .footer-products ul li::before {
    left: 13px;
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-left-line: 108px;
    --content-right-gutter: 108px;
    --hero-stats-right-gutter: 108px;
  }

  .site-header {
    min-height: 74px;
  }

  .header-inner {
    min-height: 74px;
    padding: 0 18px 0 16px;
  }

  .site-logo__image {
    width: 100px;
    height: 100px;
  }

  .header-right {
    gap: 28px;
    margin-left: auto;
  }

  .site-nav {
    gap: 40px;
    font-size: 15px;
    line-height: 20px;
  }

  .site-nav > a + a::before {
    margin-right: 18px;
  }

  .nav-lang__badge,
  .nav-lang__icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .header-cta {
    min-width: 128px;
    min-height: 40px;
    padding: 0 16px;
  }

  .hero-arrows {
    left: 32px;
    right: 32px;
  }

  .hero-arrow {
    width: 66px;
    height: 66px;
  }

  .hero-shell {
    padding: 100px var(--content-left-line) 170px var(--content-left-line);
  }

  .hero-panel {
    max-width: 860px;
  }

  .hero-title {
    max-width: 820px;
    font-size: 56px;
    line-height: 1.12;
  }

  .hero-summary {
    max-width: 760px;
    margin: 28px 0 0;
    font-size: 18px;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 198px;
  }

  .hero-actions .button {
    min-width: 228px;
    min-height: 54px;
    font-size: 14px;
  }

  .hero-stats {
    bottom: 28px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    column-gap: 38px;
  }
}

@media (min-width: 1900px) {
  main > section + section {
    margin-top: 0px;
  }

  main > .solutions-section {
    margin-top: 0px;
  }

  .factory-panel {
    min-height: 650px;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 200px;
  }

  .site-nav {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 65.37px;
    color: rgba(255, 255, 255, 1);
  }

  .header-cta {
    font-size: 20px;
  }

  .footer-contact strong {
    font-size: 16px;
    letter-spacing: 0px;
  }
}

@media (min-width: 1180px) and (max-width: 1599px) {
  :root {
    --content-left-line: 64px;
    --content-right-gutter: 64px;
    --hero-stats-right-gutter: 64px;
  }

  .site-header {
    min-height: 66px;
  }

  .header-inner {
    min-height: 66px;
    padding: 0 14px 0 12px;
  }

  .site-logo__image {
    width: 86px;
    height: 86px;
  }

  .header-right {
    gap: 16px;
    margin-left: auto;
  }

  .site-nav {
    gap: 26px;
    font-size: 14px;
  }

  .site-nav > a + a::before {
    margin-right: 12px;
  }

  .header-cta {
    min-width: 116px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-arrows {
    left: 24px;
    right: 24px;
  }

  .hero-arrow {
    width: 56px;
    height: 56px;
  }

  .hero-arrow__icon {
    width: 15px;
    height: 15px;
  }

  .hero-shell {
    padding: 84px var(--content-left-line) 156px var(--content-left-line);
  }

  .hero-panel {
    max-width: 720px;
  }

  .hero-kicker {
    font-size: 18px;
  }

  .hero-title {
    max-width: 700px;
    font-size: 44px;
    line-height: 1.14;
  }

  .hero-summary {
    max-width: 580px;
    margin: 22px 0 0;
    font-size: 16px;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 164px;
  }

  .hero-actions .button {
    min-width: 200px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 13px;
  }

  .hero-stats {
    bottom: 22px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    column-gap: 22px;
  }

  .hero-stat {
    gap: 10px;
    padding-right: 12px;
  }

  .hero-stat__icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .hero-stat::after {
    height: 48px;
  }

  .hero-stat strong {
    font-size: 30px;
  }

  .hero-stat span {
    font-size: 16px;
  }
}

@media (min-width: 481px) and (max-width: 991px) {
  .site-header {
    min-height: 54px;
  }

  .header-inner {
    min-height: 54px;
    padding: 0 16px 0 14px;
  }

  .site-logo__image {
    width: 64px;
    height: 64px;
  }

  .site-nav {
    font-size: 15px;
    gap: 12px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: 75vh;
    min-height: 75svh;
  }

  .hero-shell {
    padding: 56px var(--content-left-line) 190px var(--content-left-line);
  }

  .hero-panel {
    max-width: min(100%, 420px);
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 1.2px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
    max-width: min(100%, 420px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-title span + span {
    margin-top: 8px;
  }

  .hero-summary {
    max-width: min(100%, 420px);
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 220px;
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-arrows {
    left: 18px;
    right: 18px;
    top: 51%;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow__icon {
    width: 12px;
    height: 12px;
  }

  .hero-stats {
    bottom: 18px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
  }

  .hero-stat {
    min-height: 64px;
    gap: 10px;
  }

  .hero-stat__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .hero-stat span {
    font-size: 14px;
  }
}

@media (min-width: 721px) and (max-width: 971px) {
  .hero-actions {
    width: min(100%, 360px);
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
  }
}

@media (min-width: 721px) and (max-width: 1099px) {
  .hero-shell {
    padding: 84px var(--content-left-line) 180px var(--content-left-line);
  }

  .hero-actions {
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 136px;
    width: auto;
    max-width: calc(100% - 48px);
    gap: 12px;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    width: auto;
    min-width: 200px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-stats {
    bottom: 18px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
    column-gap: 18px;
    row-gap: 0;
  }

  .hero-stat {
    min-height: 56px;
    gap: 8px;
    padding-right: 12px;
  }

  .hero-stat::after {
    display: block;
    height: 40px;
  }

  .hero-stat__icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 699px) {
  .hero-shell {
    padding:
      40px max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)))
      calc(228px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)));
  }

  .hero-panel {
    max-width: min(100%, 340px);
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-summary {
    max-width: min(100%, 340px);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
  }

  .hero-actions {
    width: min(100%, 340px);
    max-width: min(100%, 340px);
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-arrows {
    left: 14px;
    right: 14px;
    top: 51%;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow__icon {
    width: 10px;
    height: 10px;
  }

  .hero-stats {
    bottom: 14px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
    column-gap: 14px;
    row-gap: 0;
  }

  .hero-stat {
    min-height: 48px;
    gap: 8px;
    padding-right: 10px;
  }

  .hero-stat::after {
    display: block;
    height: 34px;
  }

  .hero-stat__icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
  }

  .hero-stat strong {
    font-size: 18px;
  }

  .hero-stat span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  :root {
    --content-left-line: 14px;
    --content-right-gutter: 14px;
    --hero-stats-right-gutter: 14px;
  }

  .site-header {
    min-height: 44px;
  }

  .header-inner {
    min-height: 44px;
    padding: 0 12px 0 10px;
  }

  .site-logo__image {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px;
    gap: 10px;
    font-size: 13px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(620px, 74vh, 720px);
    min-height: clamp(620px, 74svh, 720px);
    min-height: clamp(620px, 74dvh, 720px);
  }

  .hero-shell {
    padding:
      34px max(var(--content-left-line), calc(10px + env(safe-area-inset-right, 0px)))
      calc(228px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(10px + env(safe-area-inset-left, 0px)));
  }

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 21px;
    line-height: 1.12;
  }

  .hero-summary {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    max-width: min(100%, 290px);
    margin: 16px 0 0;
  }

  .hero-actions {
    width: min(100%, 292px);
    max-width: min(100%, 292px);
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    flex-basis: auto;
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .hero-actions .button__icon {
    width: 14px;
    height: 9px;
  }

  .hero-arrows {
    left: 12px;
    right: 12px;
    top: 51%;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow__icon {
    width: 11px;
    height: 11px;
  }

  .hero-stats {
    bottom: 20px;
  }

  .hero-stats .container {
    margin: 0 var(--hero-stats-right-gutter) 0 var(--content-left-line);
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .hero-stat {
    gap: 8px;
    min-height: 54px;
  }

  .hero-stat__icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 12px;
  }
}

@media (min-width: 1180px) and (max-width: 1439px) {
  .hero-shell {
    position: relative;
  }

  .hero-actions {
    position: absolute;
    left: var(--content-left-line);
    right: var(--content-left-line);
    bottom: 152px;
    margin-top: 0;
  }
}

/* Render homepage sections immediately to reduce scroll-in animation cost. */
html.has-js .about-section .about-media__link,
html.has-js .about-section .about-copy .section-label,
html.has-js .about-section .about-copy h2,
html.has-js .about-section .about-copy p,
html.has-js .about-section .about-copy .button--dark,
html.has-js .products-section:not(.is-revealing) .section-bar .section-tag,
html.has-js .products-section:not(.is-revealing) .section-bar h2,
html.has-js .products-section:not(.is-revealing) .section-bar a,
html.has-js .products-section:not(.is-revealing) .product-card,
html.has-js .factory-section .factory-copy .section-tag,
html.has-js .factory-section .factory-title p,
html.has-js .factory-section .factory-copy > p:not(.section-tag),
html.has-js .factory-section .factory-stats article,
html.has-js .solutions-section:not(.is-revealing) .section-bar .section-tag,
html.has-js .solutions-section:not(.is-revealing) .section-bar h2,
html.has-js .solutions-section:not(.is-revealing) .section-bar a,
html.has-js .solutions-section:not(.is-revealing) .solution-card--compact,
html.has-js .news-faq-section:not(.is-revealing) .news-column .section-tag,
html.has-js .news-faq-section:not(.is-revealing) .news-column .section-bar h2,
html.has-js .news-faq-section:not(.is-revealing) .news-column .section-bar a,
html.has-js .news-faq-section:not(.is-revealing) .news-column .article-card--news {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
  transition-delay: 0s;
}

html.has-js .factory-section.is-revealing::before,
html.has-js .factory-section.is-revealing .factory-stats article::after {
  animation: none;
  opacity: 0;
}

/* Final mobile hero overrides: keep the panel, actions and stats in a stable order across iPhone and Android browsers. */
@media (max-width: 720px) {
  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(680px, 78vh, 820px);
    min-height: clamp(680px, 78svh, 820px);
    min-height: clamp(680px, 78dvh, 820px);
  }

  .hero-shell {
    align-items: flex-start;
    padding:
      40px max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)))
      calc(244px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)));
  }

  .hero-panel {
    max-width: clamp(280px, 86vw, 360px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: clamp(11px, 2.9vw, 13px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(22px, 8vw, 32px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-summary {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.45;
  }

  .hero-overlay {
    justify-content: flex-end;
    gap: 12px;
    padding:
      0 max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)))
      calc(18px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)));
  }

  .hero-actions,
  .hero-stats,
  .hero-pagination {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
    transform: none !important;
    animation: none !important;
    transition: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 1;
    align-self: flex-start;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: clamp(11px, 3vw, 14px);
    letter-spacing: 0.05em;
  }

  .hero-actions .button__icon {
    width: 14px;
    height: 9px;
    flex: 0 0 14px;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-stats .container {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    column-gap: 12px;
    row-gap: 12px;
  }

  .hero-stat {
    gap: 8px;
    min-height: 68px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stat::after {
    display: none;
  }

  .hero-pagination {
    align-self: flex-start;
    margin-top: 2px;
  }

  .hero-arrows {
    left: 14px;
    right: 14px;
    top: 40%;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow__icon {
    width: 11px;
    height: 11px;
  }
}

@media (min-width: 481px) and (max-width: 699px) {
  .hero-shell {
    padding:
      40px max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)))
      calc(228px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)));
  }

  .hero-panel,
  .hero-summary {
    max-width: min(100%, 340px);
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-summary {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-slide img {
    object-position: center 12% !important;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(640px, 76vh, 760px);
    min-height: clamp(640px, 76svh, 760px);
    min-height: clamp(640px, 76dvh, 760px);
  }

  .hero-shell {
    padding:
      36px max(var(--content-left-line), calc(12px + env(safe-area-inset-left, 0px)))
      calc(236px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(12px + env(safe-area-inset-right, 0px)));
  }

  .hero-panel,
  .hero-summary {
    max-width: min(100%, 310px);
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-summary {
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero-slide img {
    object-position: center 10% !important;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img,
  .hero-shell {
    min-height: clamp(620px, 74vh, 720px);
    min-height: clamp(620px, 74svh, 720px);
    min-height: clamp(620px, 74dvh, 720px);
  }

  .hero-shell {
    padding:
      34px max(var(--content-left-line), calc(10px + env(safe-area-inset-left, 0px)))
      calc(228px + env(safe-area-inset-bottom, 0px))
      max(var(--content-left-line), calc(10px + env(safe-area-inset-right, 0px)));
  }

  .hero-panel {
    max-width: min(100%, 292px);
  }

  .hero-title {
    font-size: 21px;
  }

  .hero-summary {
    max-width: min(100%, 290px);
    margin-top: 16px;
  }

  .hero-arrows {
    left: 12px;
    right: 12px;
    top: 41%;
  }
}

@media (min-width: 360px) and (max-width: 430px) {
  .hero-arrows {
    left: 10px;
    right: 10px;
    top: 42%;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow__icon {
    width: 10px;
    height: 10px;
  }

  .quote-modal {
    padding: 24px 14px;
  }

  .quote-modal__dialog {
    padding: 28px 18px 24px;
  }

  .quote-modal__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-modal__form textarea {
    min-height: 132px;
  }

  .quote-modal__header p {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.has-js .factory-section::before,
  html.has-js .factory-section .factory-stats article::after {
    opacity: 0 !important;
  }

  html.has-js .factory-section .factory-copy .section-tag,
  html.has-js .factory-section .factory-title p,
  html.has-js .factory-section .factory-copy > p:not(.section-tag),
  html.has-js .factory-section .factory-stats article {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  html.has-js .about-section .about-media__link,
  html.has-js .about-section .about-copy .section-label,
  html.has-js .about-section .about-copy h2,
  html.has-js .about-section .about-copy p,
  html.has-js .about-section .about-copy .button--dark,
  html.has-js .about-section .feature-card,
  html.has-js .products-section .section-bar .section-tag,
  html.has-js .products-section .section-bar h2,
  html.has-js .products-section .section-bar a,
  html.has-js .products-section .product-card,
  html.has-js .solutions-section .section-bar .section-tag,
  html.has-js .solutions-section .section-bar h2,
  html.has-js .solutions-section .section-bar a,
  html.has-js .solutions-section .solution-card--compact,
  html.has-js .news-faq-section .news-column .section-tag,
  html.has-js .news-faq-section .news-column .section-bar h2,
  html.has-js .news-faq-section .news-column .section-bar a,
  html.has-js .news-faq-section .news-column .article-card--news {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
