:root {
  --red: #e30613;
  --red-dark: #b8000b;
  --ink: #151515;
  --ink-2: #242424;
  --muted: #686868;
  --line: #dedbd6;
  --line-dark: #373737;
  --paper: #f5f3ef;
  --surface: #ffffff;
  --soft: #ece9e3;
  --success: #147a45;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 18px 60px rgba(18, 18, 18, 0.09);
  --container: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.42);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section {
  padding-block: clamp(72px, 9vw, 124px);
}

.section--white {
  background: var(--surface);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

#solutions {
  color: var(--ink);
  background: #f3f4f6;
}

#solutions .section-head p {
  color: #5d626b;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
}

.section--dark .section-head p {
  color: #b9b9b9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(227, 6, 19, 0.22);
}

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

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: #333;
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--ink);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.trustbar {
  color: #fff;
  background: var(--ink);
  font-size: 12px;
}

.trustbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trustbar__status,
.trustbar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #36d17a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(54, 209, 122, 0.12);
}

.trustbar a:hover {
  color: #ff6670;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(21, 21, 21, 0.11);
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
}

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

.brand__mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 700;
}

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

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  min-width: 44px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.language-switch:hover {
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100svh - 110px));
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding-block: clamp(64px, 8vw, 112px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.6vw, 104px);
  font-weight: 730;
  letter-spacing: -0.072em;
  line-height: 0.89;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: #4f4f4f;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: #5b5b5b;
  font-size: 13px;
  font-weight: 700;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__proof span::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
}

.hero__visual {
  position: relative;
  min-height: 590px;
}

.hero__photo {
  position: absolute;
  inset: 0 0 68px 44px;
  overflow: hidden;
  background: #dedbd5;
  border-radius: 160px 20px 20px 20px;
  box-shadow: var(--shadow);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 -110px 100px rgba(0, 0, 0, 0.2);
  content: "";
  pointer-events: none;
}

.selector-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 0;
  left: 0;
  padding: 22px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(18, 18, 18, 0.16);
  backdrop-filter: blur(15px);
}

.selector-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.selector-card__head strong {
  font-size: 16px;
}

.selector-card__head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selector-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.selector-option {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.selector-option:hover {
  border-color: var(--red);
  background: #fff;
  transform: translateY(-3px);
}

.selector-option small {
  color: var(--red);
  font-size: 17px;
}

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

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 118px;
  padding: 27px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.metric:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.metric span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.84;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 225px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step__number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 45px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-step::after {
  position: absolute;
  top: 46px;
  right: -9px;
  z-index: 2;
  color: var(--red);
  background: var(--paper);
  content: "→";
  font-size: 17px;
  font-weight: 900;
}

.process-step:last-child::after {
  display: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 310px;
  grid-column: span 4;
  overflow: hidden;
  color: #fff;
  background: #222;
  border-radius: var(--radius);
}

.category-card:nth-child(1),
.category-card:nth-child(6) {
  grid-column: span 6;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.83;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 300ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.02) 67%);
  content: "";
}

.category-card__copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.category-card__copy span {
  display: block;
  margin-bottom: 8px;
  color: #ff7c84;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  font-size: clamp(22px, 2.1vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.category-card h3::after {
  content: "↗";
  font-size: 18px;
  transition: transform 180ms ease;
}

.category-card:hover img {
  opacity: 0.95;
  transform: scale(1.045);
}

.category-card:hover h3::after {
  transform: translate(3px, -3px);
}

.section--news {
  background: #f3f4f6;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid #e1e3e7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 25, 36, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(19, 25, 36, 0.12);
}

.news-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.035);
}

.news-card__body {
  padding: 24px;
}

.news-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.news-card p {
  margin-bottom: 20px;
  color: #62666d;
  font-size: 15px;
}

.news-card__body > a {
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.news-card__body > a:hover {
  color: var(--red-dark);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(21, 21, 21, 0.4);
  box-shadow: 0 16px 45px rgba(21, 21, 21, 0.08);
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  display: grid;
  aspect-ratio: 1.18;
  place-items: center;
  overflow: hidden;
  background: #f0efec;
}

.product-card__image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card__model {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-card h3 {
  margin-bottom: 15px;
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.spec-list span {
  padding: 5px 8px;
  color: #5f5f5f;
  background: var(--paper);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card__price {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-card__action {
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.product-card__action:hover {
  color: var(--red);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 0;
  border-radius: 18px;
  background-color: #30343a;
  background-image: linear-gradient(180deg, rgba(8, 10, 13, 0.12) 12%, rgba(8, 10, 13, 0.88) 88%), var(--solution-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 32px rgba(12, 18, 28, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card--energy {
  --solution-image: url("/assets/solution-energy.webp");
}

.solution-card--industry {
  --solution-image: url("/assets/solution-industry.webp");
}

.solution-card--construction {
  --solution-image: url("/assets/solution-construction.webp");
}

.solution-card--datacenter {
  --solution-image: url("/assets/solution-datacenter.webp");
}

.solution-card--solar {
  --solution-image: url("/assets/solution-solar.webp");
}

.solution-card--panels {
  --solution-image: url("/assets/solution-panels.webp");
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.18);
}

.solution-card__number {
  position: absolute;
  top: 26px;
  left: 30px;
  display: block;
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.solution-card h3 {
  max-width: 310px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.solution-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: #e4e6e8;
  font-size: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #ddd;
  border-radius: 18px 140px 18px 18px;
}

.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-copy > p {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 35px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact {
  min-height: 135px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.resource-subsection + .resource-subsection {
  margin-top: 58px;
}

.resource-subsection__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.resource-subsection__head > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.resource-subsection__head h3,
.resource-subsection__head p {
  margin: 0;
}

.resource-subsection__head h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.resource-subsection__head p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.document-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.document-grid--compact .document-card {
  min-height: 205px;
  padding: 23px;
}

.document-grid--compact .document-card h3 {
  font-size: 20px;
}

.document-grid.document-grid--compact .document-card:last-child {
  grid-column: auto;
}

.resource-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.document-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.document-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

.document-card__type {
  align-self: flex-start;
  padding: 7px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
}

.document-card h3 {
  max-width: 320px;
  margin: auto 0 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.document-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.document-card p::after {
  color: var(--red);
  content: "↓";
  font-size: 22px;
}

article.document-card p::after {
  display: none;
}

.document-card__parts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.document-card__parts a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}

.document-card__parts a:hover {
  border-color: var(--red);
  color: var(--red);
}

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

.certificate-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.certificate-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

.certificate-card strong {
  color: var(--red);
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.certificate-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.certificate-card--all {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.certificate-card--all strong,
.certificate-card--all span {
  color: #fff;
}

.contact-section {
  padding-block: clamp(72px, 9vw, 112px);
  color: #fff;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(43px, 6.7vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.contact-copy > p {
  max-width: 570px;
  margin-bottom: 36px;
  font-size: 18px;
  opacity: 0.88;
}

.contact-list {
  display: grid;
  gap: 13px;
  font-weight: 750;
}

.contact-list a,
.contact-list address {
  font-style: normal;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(95, 0, 6, 0.21);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.contact-form > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form--direct {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.direct-form__status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form--direct h3 {
  max-width: 420px;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 0.98;
}

.contact-form--direct > div > p {
  max-width: 500px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.direct-form__features {
  display: grid;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.direct-form__features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.direct-form__features li:last-child {
  border-bottom: 0;
}

.direct-form__features strong {
  font-size: 13px;
}

.direct-form__features span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.direct-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 9px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.form-consent {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.site-footer {
  padding-block: 54px 28px;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 50px;
  padding-bottom: 46px;
}

.footer-brand .brand__text small {
  color: #8f8f8f;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: #969696;
  font-size: 13px;
}

.footer-column h3 {
  margin-bottom: 17px;
  color: #777;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 11px;
}

.footer-column a {
  color: #d6d6d6;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #303030;
  color: #777;
  font-size: 11px;
}

.mobile-cta {
  display: none;
}

/* Catalog */
.catalog-hero {
  padding-block: 72px 48px;
  border-bottom: 1px solid var(--line);
}

.catalog-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 58px;
  align-items: end;
}

.catalog-hero h1 {
  margin-bottom: 0;
  font-size: clamp(52px, 8vw, 104px);
  letter-spacing: -0.072em;
  line-height: 0.9;
}

.catalog-hero__intro p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.factory-range {
  padding-block: 54px 64px;
  border-bottom: 1px solid var(--line);
  background: #f3f4f6;
}

.factory-range__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.factory-range__head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.055em;
}

.factory-range__head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.factory-range__grid {
  display: grid;
  gap: 12px;
}

.factory-group {
  overflow: hidden;
  border: 1px solid #dedfe2;
  border-radius: 16px;
  background: #fff;
}

.factory-group summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
}

.factory-group summary::-webkit-details-marker {
  display: none;
}

.factory-group summary span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.factory-group summary strong {
  font-size: 20px;
}

.factory-group summary i {
  padding: 6px 10px;
  border-radius: 999px;
  color: #60646b;
  background: #f0f1f3;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.factory-group[open] summary {
  border-bottom: 1px solid #e5e6e8;
}

.factory-group__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  padding: 26px 28px 30px;
}

.factory-subgroup h3 {
  margin-bottom: 13px;
  font-size: 16px;
}

.factory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.factory-links button {
  appearance: none;
  padding: 8px 11px;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  color: #33373d;
  background: #fafafa;
  font-family: inherit;
  font-size: 13px;
  font-weight: 720;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.factory-links button::after {
  content: " →";
  color: var(--red);
}

.factory-links button:hover,
.factory-links button:focus-visible {
  border-color: #f0b3b6;
  color: var(--red-dark);
  background: #fff6f6;
}

.factory-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid #f0b3b6;
  border-radius: 14px;
  background: #fff6f6;
}

.factory-selection[hidden] {
  display: none;
}

.factory-selection div {
  display: grid;
  gap: 3px;
}

.factory-selection span {
  color: #777b82;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.factory-selection strong {
  font-size: 19px;
}

.factory-selection button {
  border: 0;
  color: var(--red-dark);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-search {
  position: relative;
}

.catalog-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 54px 0 18px;
  border: 1px solid var(--ink);
  background: #fff;
  border-radius: 999px;
  outline: 0;
}

.catalog-search svg {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 21px;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-toolbar {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 239, 0.95);
  backdrop-filter: blur(14px);
}

.catalog-toolbar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-toolbar__inner::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 39px;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 36px;
  padding-block: 48px 100px;
}

.catalog-sidebar {
  position: sticky;
  top: 145px;
  align-self: start;
}

.catalog-sidebar h2 {
  margin-bottom: 18px;
  font-size: 14px;
}

.sidebar-group {
  padding-block: 19px;
  border-top: 1px solid var(--line);
}

.sidebar-group:last-child {
  border-bottom: 1px solid var(--line);
}

.sidebar-group h3 {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-block: 9px;
  font-size: 13px;
  font-weight: 650;
}

.check-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--red);
}

.catalog-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-sort {
  min-height: 39px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.catalog-products {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-more {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-more .button {
  min-width: 220px;
}

.product-card__image img.is-placeholder,
.product-dialog__image img.is-placeholder {
  mix-blend-mode: normal;
}

.empty-state {
  display: none;
  padding: 70px 30px;
  border: 1px dashed #bbb;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.empty-state h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.empty-state p {
  margin-bottom: 22px;
  color: var(--muted);
}

/* Dialogs */
.site-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(830px, calc(100svh - 28px));
  padding: 0;
  overflow: hidden auto;
  border: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.32);
}

.site-dialog::backdrop {
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
}

.product-dialog__grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.product-dialog__image {
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 35px;
  background: #f0efec;
}

.product-dialog__image img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-dialog__copy {
  display: flex;
  flex-direction: column;
  padding: 50px 44px 38px;
}

.product-dialog__category {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-dialog__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.product-dialog__model {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.product-dialog__description {
  color: #4f4f4f;
}

.product-dialog__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-block: 20px 28px;
}

.product-dialog__specs span {
  padding: 12px 10px;
  background: var(--paper);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.product-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.request-dialog {
  width: min(680px, calc(100% - 28px));
}

.request-dialog--embedded {
  width: min(900px, calc(100% - 28px));
}

.request-dialog__inner {
  padding: 42px;
}

.request-dialog__inner h2 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.request-dialog__inner > p {
  margin-bottom: 25px;
  color: var(--muted);
}

.request-dialog__inner--embedded {
  padding: 28px;
}

.request-dialog__head {
  display: flex;
  min-height: 75px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-right: 50px;
}

.request-dialog__head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.request-product {
  max-width: 330px;
  margin-top: 9px;
  padding: 8px 12px;
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

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

.request-frame-shell {
  position: relative;
  height: min(650px, 72svh);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.request-frame-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.request-frame-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.request-frame-shell iframe.is-loaded {
  opacity: 1;
}

.request-frame-shell.is-loaded .request-frame-loading {
  display: none;
}

.request-fallback {
  margin: 12px 2px 0 !important;
  font-size: 12px;
}

.request-fallback a {
  color: var(--red);
  font-weight: 750;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .header-actions .button {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .product-grid,
  .catalog-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.1fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

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

  .trustbar__status span:last-child,
  .trustbar__contacts a:first-child {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    gap: 13px;
  }

  .main-nav {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

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

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

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

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    margin-left: auto;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 70px;
  }

  .hero__visual {
    min-height: 550px;
  }

  .hero__photo {
    inset: 0 0 70px 12%;
  }

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

  .metric:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step__number {
    margin-bottom: 24px;
  }

  .process-step::after {
    top: auto;
    right: 28px;
    bottom: -11px;
    transform: rotate(90deg);
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(6) {
    grid-column: span 6;
  }

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

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

  .about-grid,
  .contact-grid,
  .catalog-hero__top,
  .factory-range__head {
    grid-template-columns: 1fr;
  }

  .factory-group__body {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 520px;
  }

  .contact-grid {
    gap: 48px;
  }

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

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

  .document-card:last-child {
    grid-column: 1 / -1;
  }

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

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .section {
    padding-block: 68px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 39px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .trustbar__contacts a:last-child {
    font-size: 11px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__text strong {
    font-size: 15px;
  }

  .brand__text small {
    font-size: 8px;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__photo {
    inset: 0 0 176px 0;
    border-radius: 90px 16px 16px 16px;
  }

  .selector-card {
    right: 0;
    padding: 16px;
  }

  .selector-options {
    grid-template-columns: 1fr;
  }

  .selector-option {
    min-height: 54px;
    flex-direction: row-reverse;
    align-items: center;
    text-align: left;
  }

  .metric {
    min-height: 102px;
    padding: 22px 17px;
  }

  .metric strong {
    font-size: 25px;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(6) {
    min-height: 270px;
    grid-column: 1;
  }

  .product-grid,
  .catalog-products {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 1.35;
  }

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

  .solution-card,
  .solution-card:nth-child(2n),
  .solution-card:nth-child(3n) {
    min-height: 300px;
  }

  .about-media {
    min-height: 420px;
    border-radius: 14px 90px 14px 14px;
  }

  .fact {
    padding: 18px;
  }

  .fact strong {
    font-size: 25px;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .resource-subsection + .resource-subsection {
    margin-top: 42px;
  }

  .resource-subsection__head {
    grid-template-columns: auto 1fr;
  }

  .resource-subsection__head p {
    grid-column: 2;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .document-card:last-child {
    grid-column: auto;
  }

  .contact-copy h2 {
    font-size: 52px;
  }

  .contact-form,
  .request-dialog__inner {
    padding: 23px;
  }

  .contact-form--direct {
    min-height: 430px;
  }

  .direct-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .direct-form__actions .button {
    width: 100%;
  }

  .request-dialog__inner--embedded {
    padding: 14px;
  }

  .request-dialog__head {
    display: block;
    padding: 4px 46px 14px 2px;
  }

  .request-dialog__head h2 {
    font-size: 30px;
  }

  .request-product {
    display: block;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }

  .request-frame-shell {
    height: 70svh;
    border-radius: 10px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    min-height: 49px;
  }

  .catalog-hero {
    padding-block: 55px 38px;
  }

  .catalog-hero h1 {
    font-size: 59px;
  }

  .factory-range {
    padding-block: 42px 48px;
  }

  .factory-group summary {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .factory-group summary i {
    display: none;
  }

  .factory-group__body {
    padding: 22px 18px 24px;
  }

  .catalog-layout {
    padding-top: 32px;
  }

  .catalog-main__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-sort {
    width: 100%;
  }

  .product-dialog__grid {
    grid-template-columns: 1fr;
  }

  .product-dialog__image {
    min-height: 290px;
  }

  .product-dialog__copy {
    padding: 29px 23px 25px;
  }

  .product-dialog__specs {
    grid-template-columns: 1fr;
  }

  .product-dialog__actions .button {
    width: 100%;
  }
}

.about-hero {
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 132px);
  background: var(--ink);
  color: #fff;
}

.about-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 7vw, 104px);
}

.about-hero__copy h1 {
  max-width: 760px;
  margin: 18px 0 28px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.93;
}

.about-hero__copy p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 21px);
}

.about-hero__media {
  position: relative;
  min-height: 520px;
}

.about-hero__media::before {
  position: absolute;
  inset: -24px 28px 28px -24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
}

.about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-metrics {
  border-top: 0;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-principles article {
  min-height: 290px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-principles article > span {
  color: var(--red);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-principles h3 {
  margin: 58px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.about-principles p {
  margin: 0;
  color: var(--muted);
}

.about-profile {
  background: #ece9e3;
}

.about-profile__grid,
.local-rep {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 130px);
}

.about-profile h2,
.local-rep h2 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.about-profile__copy p,
.local-rep p {
  color: var(--muted);
  font-size: 18px;
}

.about-profile__copy .button,
.local-rep .button {
  margin-top: 18px;
}

.company-timeline {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.company-timeline li {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.company-timeline li > strong {
  color: var(--red);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.company-timeline h3 {
  margin: 2px 0 8px;
  font-size: clamp(22px, 2.4vw, 34px);
}

.company-timeline p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.about-rd {
  background: var(--ink);
  color: #fff;
}

.about-rd .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.rd-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.rd-grid article {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rd-grid strong {
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
}

.rd-grid span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .about-hero__grid,
  .about-profile__grid,
  .local-rep {
    grid-template-columns: 1fr;
  }

  .about-hero__media {
    min-height: 440px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 230px;
  }

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

@media (max-width: 560px) {
  .about-hero__copy h1 {
    font-size: 56px;
  }

  .about-hero__media {
    min-height: 300px;
  }

  .company-timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rd-grid {
    grid-template-columns: 1fr;
  }

  .rd-grid article {
    min-height: 180px;
  }
}

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

.factory-about {
  background: #f7f7f7;
}

.factory-about__masthead {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 25, 0.96) 0%, rgba(7, 17, 25, 0.78) 48%, rgba(7, 17, 25, 0.22) 100%),
    url("/assets/about/profile.webp") center 56% / cover no-repeat;
}

.factory-about__subnav {
  display: flex;
  gap: 34px;
  padding: 22px 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  scrollbar-width: none;
}

.factory-about__subnav::-webkit-scrollbar {
  display: none;
}

.factory-about__subnav a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.factory-about__subnav a:first-child,
.factory-about__subnav a:hover {
  color: #fff;
}

.factory-about__title {
  max-width: 700px;
  padding: clamp(78px, 12vw, 160px) 0 clamp(88px, 13vw, 176px);
}

.factory-about__title h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(60px, 9vw, 126px);
  line-height: 0.88;
}

.factory-about__title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 26px);
}

.factory-values {
  padding: clamp(68px, 8vw, 116px) 0;
}

.factory-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.factory-value {
  min-height: 380px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid #dedede;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.factory-value:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 54px rgba(18, 27, 34, 0.1);
}

.factory-value img {
  width: auto;
  height: 66px;
  object-fit: contain;
}

.factory-value h3 {
  margin: 56px 0 18px;
  font-size: clamp(27px, 2.6vw, 38px);
}

.factory-value p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.factory-values__slogan {
  margin-top: 22px;
  padding: 42px;
  color: #fff;
  background: var(--red);
  font-size: clamp(30px, 4.5vw, 66px);
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.factory-profile {
  padding: clamp(72px, 9vw, 132px) 0;
  background: #eceff1;
}

.factory-profile__grid,
.factory-rd__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
}

.factory-profile__media,
.factory-rd__media {
  position: relative;
}

.factory-profile__media::before,
.factory-rd__media::before {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--red);
  content: "";
}

.factory-profile__media img,
.factory-rd__media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.factory-profile__copy h2,
.factory-rd__copy h2 {
  margin: 14px 0 26px;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 0.98;
}

.factory-profile__copy p,
.factory-rd__copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.factory-history {
  padding: clamp(74px, 9vw, 132px) 0;
  color: #fff;
  background: #071119;
}

.factory-section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.factory-section-title h2 {
  margin: 12px 0 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.factory-section-title > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.factory-history .factory-section-title {
  grid-template-columns: minmax(0, 1fr) auto;
}

.factory-history .factory-section-title h2,
.factory-production .factory-section-title h2 {
  color: #fff;
}

.factory-history__arrows {
  display: flex;
  gap: 10px;
}

.factory-history__arrows button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.factory-history__arrows button:hover {
  border-color: var(--red);
  background: var(--red);
}

.factory-history__stage {
  min-height: 540px;
}

.factory-history__slide {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 130px);
  animation: about-history-in 380ms ease both;
}

.factory-history__slide[hidden] {
  display: none;
}

.factory-history__slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.factory-history__slide span {
  display: block;
  color: var(--red);
  font-size: clamp(66px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.factory-history__slide h3 {
  max-width: 650px;
  margin: 34px 0 18px;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 52px);
  line-height: 1.05;
}

.factory-history__slide p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.7;
}

.factory-history__years {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 58px;
  padding-top: 26px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  scrollbar-width: thin;
}

.factory-history__years button {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 4px;
  border: 0;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.factory-history__years button::before {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5d6469;
  content: "";
  transform: translateX(-50%);
}

.factory-history__years button.is-active {
  color: #fff;
}

.factory-history__years button.is-active::before {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(232, 30, 50, 0.2);
}

.factory-rd {
  padding: clamp(76px, 9vw, 132px) 0 0;
  background: #fff;
}

.factory-rd__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.factory-rd__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(70px, 8vw, 112px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.factory-rd__stats article {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-rd__stats strong,
.factory-have__grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1;
}

.factory-rd__stats span,
.factory-have__grid span {
  display: block;
  margin-top: 56px;
  color: var(--muted);
}

.factory-global {
  padding: clamp(74px, 9vw, 130px) 0;
}

.factory-global__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.factory-global h2 {
  margin: 14px 0 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

.factory-global p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.factory-production {
  padding: clamp(74px, 9vw, 132px) 0;
  color: #fff;
  background: #101820;
}

.factory-production .factory-section-title > p,
.factory-production__text p {
  color: rgba(255, 255, 255, 0.65);
}

.factory-production__gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, 30vw));
  gap: 14px;
}

.factory-production__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-production__gallery img:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1;
}

.factory-production__gallery img:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.factory-production__gallery img:nth-child(3) {
  grid-column: 1 / 6;
  grid-row: 2;
}

.factory-production__gallery img:nth-child(4) {
  grid-column: 6 / 13;
  grid-row: 2;
}

.factory-production__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
}

.factory-production__text p {
  grid-column: 2;
  margin: 0;
  font-size: 18px;
  line-height: 1.72;
}

.factory-have {
  padding: clamp(76px, 9vw, 132px) 0;
}

.factory-have__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.factory-have__grid article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-have__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.factory-have__copy p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.factory-local {
  color: #fff;
  background: var(--red);
}

.factory-local .eyebrow,
.factory-local h2,
.factory-local p {
  color: #fff;
}

.factory-local__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.factory-local .button--primary {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

@keyframes about-history-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .factory-values__grid,
  .factory-profile__grid,
  .factory-rd__grid,
  .factory-global__grid {
    grid-template-columns: 1fr;
  }

  .factory-value {
    min-height: auto;
  }

  .factory-history__slide {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
  }

  .factory-history__stage {
    min-height: 430px;
  }

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

  .factory-production__text,
  .factory-have__copy {
    grid-template-columns: 1fr;
  }

  .factory-production__text p,
  .factory-have__copy p {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .factory-about__masthead {
    background-position: 60% center;
  }

  .factory-about__subnav {
    gap: 24px;
  }

  .factory-about__title h1 {
    font-size: 62px;
  }

  .factory-values__slogan {
    padding: 30px 18px;
  }

  .factory-profile__media::before,
  .factory-rd__media::before {
    inset: 12px -10px -12px 10px;
  }

  .factory-section-title,
  .factory-history .factory-section-title {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .factory-history__slide {
    grid-template-columns: 1fr;
  }

  .factory-history__slide img {
    aspect-ratio: 16 / 11;
  }

  .factory-history__stage {
    min-height: 710px;
  }

  .factory-history__years {
    justify-content: flex-start;
    gap: 28px;
  }

  .factory-history__years button::before {
    left: 4px;
    transform: none;
  }

  .factory-rd__stats,
  .factory-have__grid {
    grid-template-columns: 1fr;
  }

  .factory-rd__stats article,
  .factory-have__grid article {
    min-height: 160px;
  }

  .factory-rd__stats span,
  .factory-have__grid span {
    margin-top: 34px;
  }

  .factory-production__gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .factory-production__gallery img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Modern editorial home page */
.home-page {
  --home-ink: #0b1118;
  --home-soft: #f1f3f5;
  --home-line: #dfe3e6;
  background: #fff;
}

.home-page .site-header {
  border-bottom-color: rgba(11, 17, 24, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.home-page .brand__mark,
.home-page .button,
.home-page .language-switch {
  border-radius: 3px;
}

.home-page .button {
  min-height: 52px;
  padding-inline: 24px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--home-ink);
}

.home-hero::before {
  position: absolute;
  top: -22vw;
  right: -14vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.018), 0 0 0 16vw rgba(255, 255, 255, 0.012);
  content: "";
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100svh - 110px));
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  padding-block: clamp(76px, 9vw, 132px);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero .eyebrow {
  color: #ff4b55;
}

.home-hero h1 {
  max-width: 780px;
  margin: 20px 0 30px;
  color: #fff;
  font-size: clamp(58px, 7.4vw, 108px);
  font-weight: 680;
  letter-spacing: -0.068em;
  line-height: 0.89;
}

.home-hero h1 span,
.home-hero h1 strong {
  display: block;
}

.home-hero h1 span {
  color: #fff;
  font-weight: inherit;
}

.home-hero h1 strong {
  color: #ff3340;
  font-weight: inherit;
}

.home-hero__copy > p {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-button--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.home-button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.home-hero__route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero__route > div {
  min-width: 0;
  padding: 18px 16px 0 0;
}

.home-hero__route span {
  display: block;
  margin-bottom: 7px;
  color: #ff4b55;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-hero__route strong {
  display: block;
  max-width: 150px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.home-hero__visual {
  position: relative;
  min-height: 570px;
}

.home-hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.home-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.45));
  content: "";
  pointer-events: none;
}

.home-hero__badge {
  position: absolute;
  z-index: 2;
  top: -22px;
  right: -22px;
  display: flex;
  width: 146px;
  height: 146px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: #fff;
  background: var(--red);
}

.home-hero__badge strong {
  font-size: 38px;
  line-height: 1;
}

.home-hero__badge span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.home-hero__quick {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 24px;
  padding: 24px 26px;
  color: #fff;
  background: rgba(10, 16, 22, 0.88);
  backdrop-filter: blur(14px);
}

.home-hero__quick > span {
  font-size: 13px;
  font-weight: 800;
}

.home-hero__quick strong {
  font-size: 24px;
  line-height: 1;
}

.home-hero__quick small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.home-hero__quick i {
  color: #ff4651;
  font-size: 24px;
  font-style: normal;
  transition: transform 180ms ease;
}

.home-hero__quick:hover i {
  transform: translate(3px, -3px);
}

.home-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-metrics > div {
  min-height: 118px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-metrics > div:not(:first-child) {
  padding-left: 28px;
}

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

.home-metrics strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-metrics span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.home-company {
  padding: clamp(84px, 10vw, 150px) 0;
  background: #fff;
}

.home-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 126px);
}

.home-company__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #dfe3e6;
}

.home-company__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-company__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 30px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.94));
}

.home-company__caption span,
.home-company__caption strong {
  display: block;
}

.home-company__caption span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-company__caption strong {
  font-size: clamp(21px, 2.2vw, 32px);
}

.home-company__copy h2 {
  margin: 18px 0 28px;
  font-size: clamp(44px, 5.8vw, 80px);
  font-weight: 690;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.home-company__copy > p {
  margin-bottom: 36px;
  color: #5b6268;
  font-size: 18px;
  line-height: 1.72;
}

.home-company__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.home-company__certs span {
  padding: 9px 12px;
  border: 1px solid var(--home-line);
  color: #4c5359;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.home-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 850;
}

.home-arrow-link::after {
  content: "↗";
  color: var(--red);
  font-size: 18px;
  transition: transform 180ms ease;
}

.home-arrow-link:hover::after {
  transform: translate(3px, -3px);
}

.home-page #solutions {
  padding-block: clamp(84px, 10vw, 150px);
  background: var(--home-soft);
}

.home-page #solutions .section-head {
  margin-bottom: 54px;
}

.home-page #solutions .section-head h2,
.home-page #products .section-head h2,
.home-page #news .section-head h2,
.home-page #documents .section-head h2 {
  font-size: clamp(43px, 5.8vw, 78px);
  font-weight: 690;
}

.home-solutions-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.home-solutions-grid .solution-card {
  min-height: 330px;
  grid-column: span 3;
  padding: 28px;
  border-radius: 2px;
  box-shadow: none;
}

.home-solutions-grid .solution-card:nth-child(1) {
  min-height: 440px;
  grid-column: span 7;
}

.home-solutions-grid .solution-card:nth-child(2) {
  min-height: 440px;
  grid-column: span 5;
}

.home-solutions-grid .solution-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  content: "";
  pointer-events: none;
}

.home-solutions-grid .solution-card > * {
  position: relative;
  z-index: 2;
}

.home-solutions-grid .solution-card > i {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  transition: transform 180ms ease;
}

.home-solutions-grid .solution-card:hover > i {
  transform: translate(3px, -3px);
}

.home-solutions-grid .solution-card h3 {
  font-size: clamp(22px, 2.1vw, 31px);
}

.home-page #products {
  padding-block: clamp(84px, 10vw, 150px);
}

.home-page #products .section-head > div:last-child > p {
  margin-bottom: 20px;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-category-grid .category-card,
.home-category-grid .category-card:nth-child(1),
.home-category-grid .category-card:nth-child(6) {
  display: grid;
  min-height: 390px;
  grid-column: auto;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 2px;
  color: var(--home-ink);
  background: #f5f6f7;
}

.home-category-grid .category-card::after {
  display: none;
}

.home-category-grid .category-card img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: multiply;
  transition: transform 380ms ease;
}

.home-category-grid .category-card__copy {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 24px 26px;
  border-top: 1px solid var(--home-line);
  background: #fff;
}

.home-category-grid .category-card__copy span {
  color: var(--red);
}

.home-category-grid .category-card h3 {
  color: var(--home-ink);
  font-size: clamp(20px, 2vw, 27px);
}

.home-category-grid .category-card:hover img {
  opacity: 1;
  transform: scale(1.025);
}

.home-page #news {
  padding-block: clamp(84px, 10vw, 142px);
  background: var(--home-ink);
}

.home-page #news .eyebrow,
.home-page #news .text-link {
  color: #ff4b55;
}

.home-page #news .section-head h2 {
  color: #fff;
}

.home-page #news .section-head p {
  color: rgba(255, 255, 255, 0.58);
}

.home-page .news-grid {
  gap: 16px;
}

.home-page .news-card {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: #141c24;
  box-shadow: none;
}

.home-page .news-card:hover {
  box-shadow: none;
}

.home-page .news-card__media {
  aspect-ratio: 16 / 10;
  background: #1c242c;
}

.home-page .news-card__body {
  padding: 27px;
}

.home-page .news-card h3 {
  color: #fff;
}

.home-page .news-card p {
  color: rgba(255, 255, 255, 0.58);
}

.home-page #documents {
  padding-block: clamp(84px, 10vw, 142px);
  background: #fff;
}

.home-page .resource-subsection__head {
  padding-top: 24px;
  border-top: 1px solid var(--home-ink);
}

.home-page .resource-subsection__head > span {
  color: var(--red);
}

.home-page .document-grid {
  gap: 10px;
}

.home-page .document-card {
  border-radius: 2px;
  background: #f6f7f8;
}

.home-page .document-card:hover {
  background: #fff;
}

.home-page .certificate-card {
  border-radius: 2px;
}

.home-page .contact-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.home-page .contact-section::before {
  position: absolute;
  top: -200px;
  left: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.035), 0 0 0 160px rgba(255, 255, 255, 0.02);
  content: "";
}

.home-page .contact-grid {
  position: relative;
  z-index: 2;
}

.home-page .contact-copy h2 {
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 680;
  letter-spacing: -0.065em;
}

.home-page .contact-form--direct {
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(91, 0, 7, 0.2);
}

@media (max-width: 1024px) {
  .home-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 820px;
  }

  .home-hero__visual {
    min-height: 560px;
  }

  .home-company__grid {
    grid-template-columns: 1fr;
  }

  .home-company__visual {
    min-height: 560px;
  }

  .home-solutions-grid .solution-card,
  .home-solutions-grid .solution-card:nth-child(1),
  .home-solutions-grid .solution-card:nth-child(2) {
    min-height: 360px;
    grid-column: span 6;
  }

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

@media (max-width: 640px) {
  .home-hero__grid {
    gap: 46px;
    padding-block: 64px 54px;
  }

  .home-hero h1 {
    font-size: clamp(49px, 14.6vw, 68px);
  }

  .home-hero__actions {
    display: grid;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__route {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .home-hero__route > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-hero__route span {
    margin: 0;
  }

  .home-hero__route strong {
    max-width: none;
  }

  .home-hero__visual {
    min-height: 390px;
  }

  .home-hero__badge {
    top: -16px;
    right: -8px;
    width: 114px;
    height: 114px;
    padding: 17px;
  }

  .home-hero__badge strong {
    font-size: 30px;
  }

  .home-hero__quick {
    gap: 10px;
    padding: 18px;
  }

  .home-hero__quick strong {
    font-size: 19px;
  }

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

  .home-metrics > div,
  .home-metrics > div:not(:first-child) {
    min-height: 96px;
    padding: 21px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-metrics strong {
    font-size: 26px;
  }

  .home-company,
  .home-page #solutions,
  .home-page #products,
  .home-page #news,
  .home-page #documents {
    padding-block: 76px;
  }

  .home-company__visual {
    min-height: 420px;
  }

  .home-company__copy h2 {
    font-size: 46px;
  }

  .home-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-solutions-grid .solution-card,
  .home-solutions-grid .solution-card:nth-child(1),
  .home-solutions-grid .solution-card:nth-child(2) {
    min-height: 320px;
    grid-column: 1;
  }

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-category-grid .category-card,
  .home-category-grid .category-card:nth-child(1),
  .home-category-grid .category-card:nth-child(6) {
    min-height: 360px;
    grid-column: 1;
  }
}

/* CNC Electric brand palette: bright red + white */
.home-page .trustbar {
  background: var(--red);
}

.home-page .button--dark {
  color: #fff;
  background: var(--red);
}

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

.home-hero {
  color: var(--home-ink);
  border-bottom: 1px solid #eadfe0;
  background: #fff;
}

.home-hero::before {
  border-color: rgba(227, 6, 19, 0.12);
  box-shadow: 0 0 0 8vw rgba(227, 6, 19, 0.025), 0 0 0 16vw rgba(227, 6, 19, 0.016);
}

.home-hero .eyebrow {
  color: var(--red);
}

.home-hero h1,
.home-hero h1 span {
  color: var(--home-ink);
}

.home-hero h1 strong {
  color: var(--red);
}

.home-hero__copy > p {
  color: #5f666c;
}

.home-button--outline {
  border-color: rgba(227, 6, 19, 0.45);
  color: var(--red);
  background: #fff;
}

.home-button--outline:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.home-hero__route {
  border-top-color: #eadfe0;
}

.home-hero__route strong {
  color: #4d545a;
}

.home-hero__visual::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  bottom: 34px;
  left: 34px;
  background: var(--red);
  content: "";
}

.home-hero__visual > img {
  z-index: 1;
  border: 0;
  box-shadow: 0 28px 70px rgba(87, 0, 7, 0.16);
}

.home-hero__visual::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 54%, rgba(97, 0, 6, 0.2));
}

.home-hero__quick {
  color: var(--home-ink);
  border: 1px solid #ebd7d9;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(84, 0, 7, 0.12);
}

.home-hero__quick small {
  color: #777d82;
}

.home-metrics {
  border-top: 0;
  background: var(--red);
  box-shadow: 0 0 0 100vmax var(--red);
  clip-path: inset(0 -100vmax);
}

.home-metrics > div {
  border-right-color: rgba(255, 255, 255, 0.28);
}

.home-metrics strong {
  color: #fff;
}

.home-metrics span {
  color: rgba(255, 255, 255, 0.82);
}

.home-page #solutions {
  background: #fff5f6;
}

.home-solutions-grid .solution-card {
  border: 1px solid #f0d9db;
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0.97) 89%), var(--solution-image);
}

.home-solutions-grid .solution-card::after {
  border-color: rgba(227, 6, 19, 0.13);
}

.home-solutions-grid .solution-card h3 {
  color: var(--home-ink);
}

.home-solutions-grid .solution-card p {
  color: #60676d;
}

.home-solutions-grid .solution-card > i {
  color: var(--red);
}

.home-page #news {
  background: #fff;
}

.home-page #news .section-head h2 {
  color: var(--home-ink);
}

.home-page #news .section-head p {
  color: #646b71;
}

.home-page .news-card {
  border-color: #eadbdd;
  background: #fff;
  box-shadow: 0 12px 34px rgba(92, 0, 7, 0.07);
}

.home-page .news-card:hover {
  box-shadow: 0 20px 48px rgba(92, 0, 7, 0.11);
}

.home-page .news-card h3 {
  color: var(--home-ink);
}

.home-page .news-card p {
  color: #646b71;
}

.home-page .certificate-card--all {
  border-color: var(--red);
  background: var(--red);
}

.home-page .site-footer {
  color: var(--home-ink);
  border-top: 6px solid var(--red);
  background: #fff;
}

.home-page .footer-brand .brand__text small,
.home-page .footer-brand p,
.home-page .footer-column h3,
.home-page .footer-bottom {
  color: #747b80;
}

.home-page .footer-column a {
  color: #343a40;
}

.home-page .footer-column a:hover {
  color: var(--red);
}

.home-page .footer-bottom {
  border-top-color: #e4e7e9;
}

@media (max-width: 640px) {
  .home-hero__route > div {
    border-bottom-color: rgba(227, 6, 19, 0.14);
  }

  .home-hero__visual::before {
    top: -14px;
    right: -8px;
    bottom: 22px;
    left: 18px;
  }
}

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

@supports (content-visibility: auto) {
  .section,
  .contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}
