:root {
  --lema-orange: #f27c00;
  --lema-orange-dark: #dd6b00;
  --lema-text: #1a1a1a;
  --lema-muted: #6f7277;
  --lema-soft: #f4f5f7;
  --lema-line: #e9ecef;
  --lema-container: 1604px;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLocal";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--lema-text);
  background: #fff;
  font-family: MontserratLocal, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.lema-home {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

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

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

.lema-container {
  width: min(var(--lema-container), calc(100% - 16.6vw));
  margin: 0 auto;
}

.lema-section {
  padding: 94px 0;
}

.lema-section-heading {
  max-width: 650px;
  margin: 0 auto 70px;
  text-align: center;
}

.lema-section-heading h2,
.lema-application__heading h2,
.lema-about__copy h2,
.lema-certificate__heading h2 {
  margin: 0;
  color: var(--lema-orange);
  font-size: clamp(32px, 2.4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
}

.lema-section-heading h2::after,
.lema-certificate__heading h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--lema-orange);
}

.lema-section-heading p {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--lema-muted);
  font-size: 18px;
  line-height: 1.45;
}

.lema-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

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

.lema-button--orange,
.lema-button--solid {
  color: #fff;
  background: var(--lema-orange);
}

.lema-button--solid {
  border-radius: 2px;
}

.lema-button--about-more {
  gap: 2px;
}

.lema-button--about-more span {
  align-self: flex-start;
  margin-top: 11px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.lema-hero {
  position: relative;
  min-height: min(919px, 47.86vw);
  overflow: hidden;
  color: #fff;
  background-color: #ef7900;
  background-image: var(--hero-image);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.lema-hero::after {
  content: none;
}

.lema-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: min(var(--lema-container), calc(100% - 16.6vw));
  margin: 0 auto;
  padding: min(36px, 1.9vw) 0;
  transition: transform .26s ease, opacity .26s ease, padding .26s ease, background-color .26s ease, box-shadow .26s ease;
}

.lema-header.is-scroll-nav {
  position: fixed;
  z-index: 30;
  width: 100%;
  min-height: 78px;
  padding: 14px max(28px, 6.8vw);
  background: var(--lema-orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(127, 69, 22, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.lema-header.is-scroll-nav .lema-logo img {
  width: 190px;
  min-width: 150px;
  max-width: 9.8vw;
}

.lema-header.is-scroll-nav .lema-nav {
  gap: clamp(20px, 1.35vw, 30px);
  margin-right: clamp(24px, 2.4vw, 48px);
  font-size: clamp(14px, .84vw, 16px);
}

.lema-header.is-scroll-nav .lema-nav-icon {
  width: min(28px, 1.45vw);
  height: min(28px, 1.45vw);
}

.lema-header.is-scroll-nav .lema-nav-icon--search {
  width: min(25px, 1.28vw);
  height: min(24px, 1.24vw);
}

.lema-header.is-scroll-nav .lema-nav__submenu {
  top: calc(100% + 38px);
}

.lema-header.is-scroll-nav .lema-nav__submenu::before {
  inset: -38px 0 auto;
  height: 38px;
}

.lema-header.is-scroll-nav.is-scroll-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lema-logo {
  flex: 0 0 auto;
}

.lema-logo img {
  width: 235px;
  min-width: 158px;
  max-width: 12.25vw;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .18));
}

.lema-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 1.75vw, 38px);
  margin-left: auto;
  margin-right: clamp(36px, 4.2vw, 82px);
  color: #fff;
  font-size: clamp(15px, .92vw, 18px);
  font-family: MontserratLocal, Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
}

.lema-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.lema-nav__item-head {
  display: flex;
  align-items: center;
}

.lema-nav__link {
  position: relative;
  white-space: nowrap;
}

.lema-nav a {
  position: relative;
  white-space: nowrap;
}

.lema-nav > a:not(.lema-nav-icon)::after,
.lema-nav__item > .lema-nav__item-head > .lema-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.lema-nav > a:not(.lema-nav-icon):hover::after,
.lema-nav__item:hover > .lema-nav__item-head > .lema-nav__link::after,
.lema-nav__item:focus-within > .lema-nav__item-head > .lema-nav__link::after {
  transform: scaleX(1);
}

.lema-nav__link--dropdown {
  padding-right: 12px;
}

.lema-nav__link--dropdown::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  transform: translateY(-25%);
}

.lema-nav__submenu-toggle {
  display: none;
}

.lema-nav__submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  min-width: 228px;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 38px rgba(18, 28, 41, .16);
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lema-nav__submenu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.lema-nav__submenu a {
  padding: 12px 20px;
  color: #20242b;
  font-size: 15px;
  line-height: 1.35;
  transition: background .18s ease, color .18s ease;
}

.lema-nav__submenu a:hover,
.lema-nav__submenu a:focus-visible {
  color: var(--lema-orange);
  background: rgba(242, 124, 0, .08);
}

.lema-nav__item:hover > .lema-nav__submenu,
.lema-nav__item:focus-within > .lema-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lema-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(34px, 1.78vw);
  height: min(34px, 1.78vw);
}

.lema-nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lema-nav-icon--search {
  width: min(29px, 1.51vw);
  height: min(28px, 1.46vw);
}

.lema-header-search {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 340px) auto;
  gap: 10px;
  width: min(520px, calc(100vw - 32px));
  padding: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 28, 41, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lema-header.is-search-open .lema-header-search {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lema-header-search input {
  min-width: 0;
  height: 44px;
  border: 1px solid rgba(8, 35, 63, .14);
  padding: 0 16px;
  color: #1a1a1a;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.lema-header-search input:focus {
  border-color: var(--lema-orange);
  box-shadow: 0 0 0 3px rgba(242, 124, 0, .12);
}

.lema-header-search button {
  min-width: 96px;
  height: 44px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: var(--lema-orange);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lema-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
}

.lema-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.lema-hero__content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 16.6vw));
  padding-top: min(304px, 15.84vw);
  margin-left: 8.2vw;
}

.lema-hero__eyebrow {
  margin: 0 0 12px;
  font-family: MontserratLocal, Arial, Helvetica, sans-serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.06;
  text-transform: uppercase;
  white-space: nowrap;
}

.lema-hero h1 {
  margin: 0;
  color: #fff;
  font-family: MontserratLocal, Arial, Helvetica, sans-serif;
  font-size: 82px;
  font-weight: 800;
  line-height: .91;
  text-transform: uppercase;
  white-space: nowrap;
}

.lema-hero__features {
  display: flex;
  gap: 0;
  width: min(520px, 27.1vw);
  margin: min(70px, 3.65vw) 0 min(44px, 2.3vw);
}

.lema-hero__features div {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 min(30px, 1.56vw);
  border-left: 1px solid rgba(255, 255, 255, .55);
  text-align: center;
}

.lema-hero__features div:first-child {
  padding-left: 0;
  border-left: 0;
}

.lema-feature-icon {
  display: block;
  width: auto;
  height: 64px;
  max-width: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.lema-hero__features strong,
.lema-hero__features small {
  display: block;
  font-family: PoppinsLocal, MontserratLocal, Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.12;
  white-space: nowrap;
}

.lema-hero .lema-button {
  width: 199px;
  min-height: 50px;
  padding: 0;
  font-size: 24px;
  font-family: MontserratLocal, Arial, Helvetica, sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

.lema-advantages {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 48px 0 56px;
  background: #fff;
  box-shadow: none;
}

.lema-advantages .lema-container {
  width: min(1664px, calc(100% - 13.33vw));
}

.lema-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 62px;
}

.lema-advantage {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.lema-advantage img {
  width: 60px;
}

.lema-advantage:nth-child(1) img {
  width: 56px;
}

.lema-advantage:nth-child(2) img {
  width: 58px;
}

.lema-advantage:nth-child(3) img {
  width: 71px;
}

.lema-advantage:nth-child(4) img {
  width: 66px;
}

.lema-advantage h2 {
  margin: 0 0 4px;
  color: #7f8288;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.lema-advantage p {
  margin: 0;
  color: #878a90;
  font-size: 13px;
  line-height: 1.25;
}

.lema-products {
  background: var(--lema-soft);
  padding-top: 28px;
  padding-bottom: 0;
}

.lema-products .lema-container {
  width: min(1664px, calc(100% - 13.33vw));
}

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

.lema-products .lema-section-heading h2 {
  font-size: 40px;
  font-weight: 700;
}

.lema-products .lema-section-heading h2::after {
  width: 140px;
  margin-top: 14px;
}

.lema-products .lema-section-heading p {
  max-width: 704px;
  margin-top: 16px;
}

.lema-product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 444px) 1fr;
  gap: 22px;
}

.lema-product-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  padding: 58px 52px 54px;
  color: #fff;
  background: var(--product-intro);
  background-size: cover;
  background-position: center;
}

.lema-product-intro p {
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.52;
}

.lema-product-intro .lema-button {
  align-self: flex-start;
  gap: 9px;
  min-height: 40px;
  padding: 0 21px 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.lema-product-intro .lema-button span {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.lema-product-intro .lema-button:hover span {
  transform: translateX(4px) rotate(45deg);
}

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

.lema-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 289px;
  overflow: hidden;
  padding: 34px 48px 22px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 31, 40, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lema-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(25, 31, 40, .12);
}

.lema-product-card__text {
  position: relative;
  z-index: 2;
}

.lema-product-card strong {
  display: block;
  color: #111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.lema-product-card em {
  display: block;
  margin-top: 10px;
  color: var(--lema-orange);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.lema-product-card img {
  align-self: end;
  justify-self: center;
  width: min(96%, 560px);
  max-height: 230px;
  margin-top: 0;
  object-fit: contain;
}

.lema-product-card:nth-child(1) img {
  width: min(90%, 520px);
  max-height: 232px;
}

.lema-product-card:nth-child(2) img {
  width: min(98%, 580px);
  max-height: 248px;
}

.lema-product-card:nth-child(3) img {
  width: min(92%, 540px);
  max-height: 242px;
}

.lema-product-card:nth-child(4) img {
  width: min(90%, 520px);
  max-height: 238px;
}

.lema-about {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 76px solid #f4f5f7;
  background-color: #fff;
  padding-top: 54px;
  padding-bottom: 54px;
}

.lema-about .lema-container {
  position: relative;
  z-index: 2;
  width: min(1745px, calc(100% - 8.4vw));
}

.lema-about::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 123px;
  width: min(48vw, 920px);
  aspect-ratio: 1229 / 1872;
  background: url('../images/about-bg-lines-new.webp') left bottom / contain no-repeat;
  pointer-events: none;
}

.lema-about::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 4.3vw;
  right: 4.3vw;
  bottom: 0;
  height: 123px;
  background: #f1f1f1;
  pointer-events: none;
}

.lema-about__grid {
  display: grid;
  grid-template-columns: 46.8% 53.2%;
  align-items: center;
  gap: 0;
}

.lema-about__copy {
  max-width: 690px;
  padding-left: 156px;
}

.lema-about__copy h2 {
  color: #161616;
  font-size: 42px;
  line-height: 1;
}

.lema-about__copy p {
  max-width: 606px;
  margin: 24px 0 0;
  color: #1d1f23;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.52;
}

.lema-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 76px;
  max-width: 600px;
  margin: 48px 0 60px;
}

.lema-stat strong {
  color: var(--lema-orange);
  font-size: 64px;
  font-weight: 400;
  line-height: .9;
}

.lema-stat span {
  margin-left: 8px;
  color: var(--lema-orange);
  font-size: 18px;
  font-weight: 800;
}

.lema-stat p {
  margin: 9px 0 0;
  color: #8b8d93;
  font-size: 14px;
  font-weight: 500;
}

.lema-about__media {
  position: relative;
  display: block;
  width: calc(100% + 6.7vw);
  overflow: hidden;
  transition: transform .28s ease;
}

.lema-about__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lema-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: min(176px, 11vw);
  height: min(176px, 11vw);
  background: url('../images/about-play-circle.webp') center / contain no-repeat;
  transform: translate(-50%, -50%) scale(.86);
  transform-origin: center;
  opacity: .94;
  transition: transform .28s ease, opacity .28s ease, filter .28s ease;
}

.lema-play::before {
  content: "";
  position: absolute;
  inset: 18%;
  background: url('../images/about-play-mark.webp') center / contain no-repeat;
}

.lema-about__media:hover .lema-play,
.lema-about__media:focus-visible .lema-play {
  opacity: 1;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .12));
  transform: translate(-50%, -50%) scale(1);
}

.lema-application {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: #fff;
  padding-top: 42px;
  padding-bottom: 22px;
}

.lema-application .lema-container {
  position: relative;
  z-index: 1;
}

.lema-application .lema-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: calc(4.3vw - ((100vw - 100%) / 2) + 6px);
  right: calc(4.3vw - ((100vw - 100%) / 2) + 6px);
  top: -165px;
  height: 682px;
  background: #f1f1f1;
  pointer-events: none;
}

.lema-application__heading,
.lema-application__layout {
  position: relative;
  z-index: 1;
}

.lema-application__heading {
  margin-left: 86px;
  margin-bottom: 20px;
}

.lema-application__heading h2 {
  color: #111;
  font-size: clamp(30px, 2.05vw, 39px);
}

.lema-application__heading p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #202226;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.lema-application__layout {
  position: relative;
  max-width: 1490px;
  height: 690px;
  margin: 0 auto;
}

.lema-application__lead {
  position: absolute;
  left: 0;
  top: 0;
  width: 440px;
  height: 486px;
  min-height: 0;
  padding: 42px 45px 38px;
  color: #fff;
  background: var(--lema-orange);
}

.lema-application__lead h3 {
  position: relative;
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.13;
}

.lema-application__lead h3::after {
  content: "";
  display: block;
  width: 315px;
  height: 2px;
  margin-top: 16px;
  background: rgba(255, 255, 255, .78);
}

.lema-application__lead h3::before,
.lema-application-card h3::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 326px;
  width: 37px;
  height: 21px;
  background: url('../images/application-horse.webp') center / contain no-repeat;
}

.lema-application__lead h3::before {
  top: calc(100% - 1px);
  transform: translateY(-50%);
}

.lema-application__lead p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.lema-application__lead a {
  position: absolute;
  left: 58px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 162px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 400;
}

.lema-application__lead a span {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.lema-application-card {
  position: absolute;
  overflow: hidden;
  width: 440px;
  height: 292px;
  background: #ddd;
}

.lema-application-card:nth-of-type(2) {
  left: 512px;
  top: 28px;
}

.lema-application-card:nth-of-type(3) {
  left: 1030px;
  top: 78px;
}

.lema-application-card:nth-of-type(4) {
  left: 512px;
  top: 356px;
}

.lema-application-card:nth-of-type(5) {
  left: 1030px;
  top: 406px;
}

.lema-application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.lema-application-card:hover img {
  transform: scale(1.045);
}

.lema-application-card::after {
  content: none;
}

.lema-application-card h3 {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 24px;
  bottom: 28px;
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.05;
}

.lema-application-card h3::before {
  top: calc(100% + 1px);
  transform: translateY(-50%);
}

.lema-application-card h3::after {
  content: "";
  display: block;
  width: 292px;
  height: 2px;
  margin-top: 10px;
  background: rgba(255, 255, 255, .8);
}

.lema-certificate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 850px;
  padding: 76px 0 0;
  color: #fff;
  background: #fff;
}

.lema-certificate::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 15%;
  background: var(--certificate-bg) center top / cover no-repeat;
  pointer-events: none;
}

.lema-certificate::after {
  content: none;
}

.lema-certificate .lema-container {
  position: relative;
  z-index: 2;
}

.lema-certificate__heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lema-certificate__heading h2 {
  color: #fff;
}

.lema-certificate__heading h2::after {
  display: none;
}

.lema-certificate__heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.lema-certificate__slider {
  position: relative;
  z-index: 4;
  min-height: 610px;
  margin-top: 28px;
}

.lema-certificate__stack {
  position: relative;
  z-index: 2;
  min-height: 610px;
}

.cert {
  position: absolute;
  bottom: 52px;
  left: 50%;
  width: 314px;
  height: 442px;
  object-fit: cover;
  border: 11px solid #2e3036;
  box-shadow: 0 24px 28px rgba(0, 0, 0, .18);
  transform-origin: bottom center;
  opacity: 1;
  filter: none;
  transition: opacity .35s ease, filter .35s ease;
}

.lema-certificate__stack.is-certificate-switching .cert {
  transition: width 1.15s cubic-bezier(.32, .72, .18, 1), height 1.15s cubic-bezier(.32, .72, .18, 1), bottom 1.15s cubic-bezier(.32, .72, .18, 1), transform 1.15s cubic-bezier(.32, .72, .18, 1), opacity .8s ease, filter .8s ease;
}

.lema-certificate__stack.is-certificate-switching .cert-to-0 {
  z-index: 2;
  bottom: 88px;
  width: 314px;
  height: 442px;
  opacity: .82;
  transform: translateX(-220%) scale(.9);
}

.lema-certificate__stack.is-certificate-switching .cert-to-1 {
  z-index: 4;
  bottom: 64px;
  width: 314px;
  height: 442px;
  opacity: 1;
  transform: translateX(-132%) scale(1);
}

.lema-certificate__stack.is-certificate-switching .cert-to-2 {
  z-index: 6;
  bottom: 34px;
  width: 416px;
  height: 584px;
  opacity: 1;
  filter: none;
  transform: translateX(-50%) scale(1);
}

.lema-certificate__stack.is-certificate-switching .cert-to-3 {
  z-index: 4;
  bottom: 58px;
  width: 314px;
  height: 442px;
  opacity: 1;
  transform: translateX(24%) scale(1);
}

.lema-certificate__stack.is-certificate-switching .cert-to-4 {
  z-index: 2;
  bottom: 82px;
  width: 314px;
  height: 442px;
  opacity: .82;
  transform: translateX(88%) scale(.9);
}

.cert--2 {
  z-index: 5;
  width: 416px;
  height: 584px;
  opacity: 1;
  filter: none;
  bottom: 34px;
  transform: translateX(-50%);
}

.cert--1 {
  z-index: 4;
  bottom: 64px;
  transform: translateX(-132%);
}

.cert--0 {
  z-index: 3;
  bottom: 88px;
  transform: translateX(-220%) scale(.9);
}

.cert--3 {
  z-index: 4;
  bottom: 58px;
  transform: translateX(24%);
}

.cert--4 {
  z-index: 3;
  bottom: 82px;
  transform: translateX(88%) scale(.9);
}

.lema-certificate__stack::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 34px;
  width: min(860px, 72vw);
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0) 68%);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.lema-certificate__arrow {
  position: absolute;
  z-index: 8;
  top: 39%;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lema-certificate__arrow:hover {
  background: rgba(255, 255, 255, .38);
  transform: translateY(-2px);
}

.lema-certificate__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.lema-certificate__arrow--prev {
  left: -10px;
}

.lema-certificate__arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-45deg);
}

.lema-certificate__arrow--next {
  right: 5vw;
}

.lema-certificate__arrow--next::before {
  transform: translate(-62%, -50%) rotate(135deg);
}

.lema-news {
  overflow: hidden;
  background: #fff;
  margin-top: -62px;
  padding-top: 54px;
  padding-bottom: 60px;
}

.lema-news .lema-container {
  width: 100%;
  max-width: none;
}

.lema-news__layout {
  display: grid;
  grid-template-columns: min(754px, 39.3vw) max-content;
  align-items: start;
  gap: 0;
  min-width: 0;
  margin-top: 38px;
  opacity: 1;
  transition: opacity .24s ease, transform .24s ease;
}

.lema-news.is-news-changing .lema-news__layout {
  opacity: .62;
  transform: translateY(4px);
}

.lema-news-feature {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background: none;
}

.lema-news-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .812;
  object-fit: cover;
  object-position: center;
  padding: 0;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.lema-news-feature time {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  padding: 10px 18px;
  color: #fff;
  background: var(--lema-orange);
  font-size: 16px;
  font-weight: 900;
}

.lema-news-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 474px);
  gap: 28px;
  min-width: 0;
  margin-top: 72px;
  transform: translateX(-150px);
}

.lema-news-card {
  position: relative;
  width: 474px;
  height: 376px;
  min-height: 0;
  padding: 46px 38px 84px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 31, 40, .09);
  transition: transform .24s ease, box-shadow .24s ease;
}

.lema-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25, 31, 40, .12);
}

.lema-news-card h3 {
  margin: 0 0 25px;
  color: var(--lema-orange);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
}

.lema-news-card p {
  margin: 0;
  color: #8f9298;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.38;
}

.lema-news-card a {
  position: absolute;
  right: 48px;
  bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--lema-orange);
  font-size: 0;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.lema-news-card:hover a {
  transform: rotate(45deg);
}

.lema-news-card:nth-child(n+2) a {
  background: #e6e6e6;
}

.lema-news-card a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-1px, 1px);
}

.lema-news-card a::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg) translate(-1px, 0);
}

.lema-news-controls {
  display: flex;
  align-items: center;
  gap: 136px;
  margin-top: 26px;
  margin-left: 48.2vw;
}

.lema-news-dots {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.lema-news-dots button {
  width: 58px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #e2e2e2;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}

.lema-news-dots .active {
  background: var(--lema-orange);
}

.lema-news-arrows {
  display: flex;
  gap: 16px;
}

.lema-news-arrows button {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.lema-news-arrows button:hover,
.lema-news-arrows button:focus-visible {
  border-color: #ddd;
  transform: translateY(-2px);
}

.lema-news-dots button:focus-visible,
.lema-news-arrows button:focus-visible {
  outline: 2px solid rgba(242, 124, 0, .34);
  outline-offset: 4px;
}

.lema-news-arrows button::before {
  content: "";
  position: absolute;
  top: 14px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #8d8f94;
  border-left: 2px solid #8d8f94;
}

.lema-news-arrows .prev::before {
  left: 16px;
  transform: rotate(-45deg);
}

.lema-news-arrows .next::before {
  right: 16px;
  transform: rotate(135deg);
}

.lema-footer {
  color: #fff;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center 58%;
}

.lema-footer .lema-container {
  width: min(1524px, calc(100% - 20.6vw));
}

.lema-footer__grid {
  display: grid;
  grid-template-columns: 2.15fr 1fr 1.73fr 2fr;
  gap: 100px;
  padding: 108px 0 26px;
}

.lema-footer__brand img {
  width: 258px;
  margin-bottom: 26px;
}

.lema-footer p {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.lema-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.lema-footer nav,
.lema-footer address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.lema-footer a,
.lema-footer span {
  color: rgba(255, 255, 255, .94);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.lema-footer nav a,
.lema-footer address a {
  position: relative;
  width: fit-content;
  transition: transform .2s ease, color .2s ease;
}

.lema-footer nav a::after,
.lema-footer address a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.lema-footer nav a:hover,
.lema-footer address a:hover {
  color: #fff;
  transform: translateX(6px);
}

.lema-footer nav a:hover::after,
.lema-footer address a:hover::after {
  transform: scaleX(1);
}

.lema-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 58px;
  padding: 0 0 72px;
}

.lema-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lema-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: transparent;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
}

.lema-footer__social img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 28px;
  object-fit: contain;
}

.lema-footer__social a:nth-child(5) img {
  height: 22px;
}

.lema-footer__social a:nth-child(6) img {
  height: 25px;
}

.lema-footer__social a:hover {
  opacity: .82;
  transform: translateY(-4px);
}

.lema-footer__search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(260px, 100%);
  height: 30px;
}

.lema-footer__search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #333;
  background: rgba(255, 255, 255, .96);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: box-shadow .2s ease, background .2s ease;
}

.lema-footer__search input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .22);
}

.lema-footer__search button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--lema-orange);
  background: #fff;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lema-footer__search button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lema-footer__search button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lema-footer__search button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.lema-footer__search button::before {
  content: none;
}

.lema-footer__search button::after {
  content: none;
}

.lema-footer-mobile-simple {
  display: none;
}

.lema-footer-mobile-simple__brand img {
  width: 160px;
  margin-bottom: 14px;
}

.lema-footer-mobile-simple__brand p,
.lema-footer-mobile-simple__copyright {
  margin: 0;
}

.lema-footer-mobile-simple__contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px;
}

.lema-footer-mobile-simple__contact a {
  width: fit-content;
}

.lema-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.lema-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lema-reveal,
  .lema-application-card img,
  .lema-news-card,
  .lema-footer a,
  .lema-footer__social a,
  .lema-footer__search button,
  .lema-footer__search input {
    transition: none;
  }
}

.lema-home--fallback {
  min-height: 70vh;
}

@media (max-width: 1440px) {
  .lema-header {
    width: 100%;
  }

  .lema-nav {
    gap: clamp(18px, 1.55vw, 34px);
  }

  .lema-hero__content {
    margin-left: 8.2vw;
  }
}

@media (max-width: 1180px) {
  .lema-section {
    padding: 78px 0;
  }

  .lema-header {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 8.4vw);
    margin: 0 auto;
    padding: min(36px, 1.9vw) 0;
  }

  .lema-header.is-scroll-nav {
    width: 100%;
    margin: 0;
    min-height: 68px;
    padding: 10px 4.2vw;
  }

  .lema-menu-toggle {
    display: block;
  }

  .lema-nav {
    position: absolute;
    top: 92px;
    right: 0;
    display: none;
    width: min(360px, calc(100vw - 56px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 18px;
    color: var(--lema-text);
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  }

  .lema-header-search {
    top: 92px;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 56px));
  }

  .lema-header.is-scroll-nav .lema-header-search {
    top: 76px;
  }

  .lema-header.is-open .lema-nav {
    display: flex;
  }

  .lema-nav a {
    padding: 13px 10px;
  }

  .lema-nav__item {
    display: block;
  }

  .lema-nav__item-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
  }

  .lema-nav__link--dropdown {
    padding-right: 10px;
  }

  .lema-nav__link--dropdown::before {
    display: none;
  }

  .lema-nav__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .lema-nav__submenu-toggle span {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .18s ease;
  }

  .lema-nav__item.is-submenu-open .lema-nav__submenu-toggle span {
    transform: rotate(-135deg) translateY(-1px);
  }

  .lema-nav__submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 14px;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .lema-nav__submenu::before {
    display: none;
  }

  .lema-nav__item.is-submenu-open .lema-nav__submenu {
    display: grid;
  }

  .lema-nav__submenu a {
    padding: 10px;
    font-size: 14px;
    color: var(--lema-muted);
  }

  .lema-nav-icon {
    display: none;
  }

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

  .lema-product-layout,
  .lema-about__grid,
  .lema-news__layout {
    grid-template-columns: 1fr;
  }

  .lema-product-intro {
    min-height: 330px;
  }

  .lema-about__media {
    width: 100%;
  }

  .lema-application__heading {
    margin-left: 0;
  }

  .lema-application__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 34px;
    height: auto;
  }

  .lema-application__lead {
    position: relative;
    left: auto;
    top: auto;
    grid-row: auto;
    width: auto;
    height: auto;
    min-height: 360px;
  }

  .lema-application-card:nth-of-type(n) {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: 310px;
  }

  .lema-news-cards {
    transform: none;
    grid-template-columns: repeat(3, minmax(270px, 1fr));
    overflow-x: auto;
    padding: 20px 0;
    margin-top: 0;
  }

  .lema-news-card {
    width: auto;
    height: auto;
  }

  .lema-news-controls {
    justify-content: center;
    margin-left: 0;
  }

  .lema-footer .lema-container {
    width: min(100% - 80px, var(--lema-container));
  }

  .lema-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px;
  }

  .lema-footer__brand img {
    width: 220px;
  }

  .lema-footer p {
    font-size: 16px;
  }

  .lema-footer h2 {
    font-size: 25px;
    white-space: normal;
  }

  .lema-footer a,
  .lema-footer span {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .lema-container {
    width: min(100% - 32px, var(--lema-container));
  }

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

  .lema-header {
    width: calc(100% - 32px);
    padding: 20px 0;
  }

  .lema-header.is-scroll-nav {
    left: 0;
    right: 0;
    width: 100%;
    min-height: 68px;
    padding: 12px 16px;
    background: rgba(242, 124, 0, .97);
    box-shadow: 0 10px 24px rgba(127, 69, 22, .18);
  }

  .lema-logo img {
    width: 158px;
  }

  .lema-header.is-scroll-nav .lema-logo img {
    width: 150px;
    min-width: 0;
    max-width: none;
  }

  .lema-hero {
    min-height: 620px;
    background-image: var(--hero-image);
    background-position: 58% center;
    background-size: cover;
  }

  .lema-hero__content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 132px;
  }

  .lema-hero__eyebrow {
    max-width: 310px;
    font-size: 21px;
    white-space: normal;
  }

  .lema-hero h1 {
    max-width: 100%;
    font-size: 40px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .lema-hero__features {
    flex-direction: column;
    gap: 12px;
    width: min(100%, 305px);
    margin: 26px 0 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .lema-hero__features div,
  .lema-hero__features div:first-child {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    row-gap: 1px;
    align-items: center;
    padding: 0;
    border-left: 0;
    text-align: left;
  }

  .lema-feature-icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: auto;
    max-height: 42px;
    margin: 0;
  }

  .lema-hero__features strong,
  .lema-hero__features small {
    grid-column: 2;
  }

  .lema-hero__features strong {
    align-self: end;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.16;
    white-space: normal;
    text-shadow: 0 1px 3px rgba(92, 54, 20, .32);
  }

  .lema-hero__features small {
    align-self: start;
    font-size: 11.5px;
    line-height: 1.16;
    white-space: normal;
    text-shadow: 0 1px 3px rgba(92, 54, 20, .32);
  }

  .lema-advantages {
    padding: 34px 0;
  }

  .lema-advantages__grid,
  .lema-product-grid,
  .lema-stats,
  .lema-application__layout,
  .lema-footer__grid {
    grid-template-columns: 1fr;
  }

  .lema-advantage {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .lema-advantage h2 {
    font-size: 20px;
  }

  .lema-section-heading {
    margin-bottom: 38px;
  }

  .lema-section-heading p {
    font-size: 16px;
  }

  .lema-product-intro {
    min-height: 390px;
    padding: 38px 28px;
  }

  .lema-product-intro .lema-button {
    min-height: 38px;
    padding: 0 19px 0 22px;
    font-size: 12px;
  }

  .lema-product-intro .lema-button span {
    width: 7px;
    height: 7px;
    border-width: 2px;
  }

  .lema-product-card {
    min-height: 238px;
    padding: 32px 30px 24px;
  }

  .lema-about {
    border-top-width: 28px;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .lema-about::before,
  .lema-about::after {
    display: none;
  }

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

  .lema-about__grid {
    gap: 28px;
  }

  .lema-about__copy {
    max-width: none;
    padding-left: 0;
  }

  .lema-about__copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .lema-about__media {
    order: -1;
    border-radius: 8px;
    background: #f5f6f8;
  }

  .lema-about__media img {
    width: 100%;
  }

  .lema-about__copy p {
    max-width: none;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.62;
  }

  .lema-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    max-width: none;
    margin: 26px 0 30px;
  }

  .lema-stat {
    min-height: 104px;
    padding: 18px 16px;
    border: 1px solid #eceff2;
    border-radius: 8px;
    background: #fff;
  }

  .lema-stat strong {
    font-size: 35px;
    line-height: .95;
  }

  .lema-stat span {
    margin-left: 4px;
    font-size: 13px;
  }

  .lema-stat p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .lema-button--about-more {
    min-height: 40px;
    padding: 0 22px;
    font-size: 13px;
  }

  .lema-play {
    width: 108px;
    height: 108px;
  }

  .lema-play::before {
    inset: 18%;
  }

  .lema-application .lema-container::before {
    display: none;
  }

  .lema-application__heading {
    margin-bottom: 34px;
  }

  .lema-application__lead {
    min-height: 410px;
    padding: 42px 34px;
  }

  .lema-application__lead p {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .lema-application__lead a {
    left: 34px;
    bottom: 34px;
  }

  .lema-application-card h3 {
    font-size: 23px;
  }

  .lema-certificate {
    padding-top: 58px;
    min-height: 660px;
  }

  .lema-certificate::before {
    inset: 0 0 30%;
  }

  .lema-certificate::after {
    height: 30%;
  }

  .lema-certificate__heading p {
    padding: 0 14px;
    font-size: 14px;
  }

  .lema-certificate__slider {
    min-height: 430px;
    margin-top: 26px;
  }

  .lema-certificate__stack {
    min-height: 430px;
    padding-bottom: 42px;
    overflow: hidden;
  }

  .cert {
    bottom: 58px;
    width: 138px;
    height: 194px;
    border-width: 6px;
  }

  .cert--2 {
    width: 176px;
    height: 248px;
    transform: translateX(-50%);
  }

  .cert--1 {
    transform: translateX(-98%) scale(.9);
  }

  .cert--0 {
    transform: translateX(-142%) scale(.78);
  }

  .cert--3 {
    transform: translateX(-2%) scale(.9);
  }

  .cert--4 {
    transform: translateX(42%) scale(.78);
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-0,
  .lema-certificate__stack.is-certificate-switching .cert-to-1,
  .lema-certificate__stack.is-certificate-switching .cert-to-3,
  .lema-certificate__stack.is-certificate-switching .cert-to-4 {
    width: 138px;
    height: 194px;
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-0 {
    bottom: 58px;
    transform: translateX(-142%) scale(.78);
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-1 {
    bottom: 58px;
    transform: translateX(-98%) scale(.9);
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-2 {
    width: 176px;
    height: 248px;
    bottom: 58px;
    transform: translateX(-50%) scale(1);
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-3 {
    bottom: 58px;
    transform: translateX(-2%) scale(.9);
  }

  .lema-certificate__stack.is-certificate-switching .cert-to-4 {
    bottom: 58px;
    transform: translateX(42%) scale(.78);
  }

  .lema-certificate__arrow {
    top: 40%;
    width: 48px;
    height: 48px;
  }

  .lema-certificate__arrow::before {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .lema-certificate__arrow--prev {
    left: 12px;
  }

  .lema-certificate__arrow--next {
    right: 12px;
  }

  .lema-news__layout {
    gap: 24px;
  }

  .lema-news-cards {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .lema-news-card {
    width: auto;
    height: auto;
    min-height: 280px;
    padding: 34px 32px 86px;
  }

  .lema-news-card h3 {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .lema-news-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .lema-news-controls {
    display: none;
  }

  .lema-footer__grid {
    gap: 34px;
    padding: 52px 0 30px;
  }

  .lema-footer__brand img {
    width: 160px;
    margin-bottom: 18px;
  }

  .lema-footer p {
    font-size: 13px;
  }

  .lema-footer h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .lema-footer nav,
  .lema-footer address {
    gap: 8px;
  }

  .lema-footer a,
  .lema-footer span {
    font-size: 11px;
  }

  .lema-footer__bottom {
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 36px;
  }

  .lema-footer__social {
    gap: 14px;
  }

  .lema-footer__search {
    width: 210px;
    height: 24px;
  }

  .lema-footer__search button {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .lema-footer__search button svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
  }

  .lema-home .lema-footer {
    background-position: center;
  }

  .lema-home .lema-footer__grid,
  .lema-home .lema-footer__bottom {
    display: none;
  }

  .lema-home .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-home .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-home .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-home .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-home .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lema-hero__eyebrow {
    font-size: 20px;
  }

  .lema-hero h1 {
    font-size: 36px;
  }

  .lema-product-card strong,
  .lema-advantage h2,
  .lema-news-card h3 {
    overflow-wrap: anywhere;
  }

  .lema-product-intro p {
    font-size: 19px;
  }
}

.lema-page {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.lema-contact-hero {
  position: relative;
  min-height: 430px;
  color: #fff;
  background-color: #ef7900;
  background-image: var(--contact-hero);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.lema-contact-hero::after {
  content: none;
}

.lema-contact-page .lema-contact-hero {
  background-position: center 45%;
}

.lema-contact-page .lema-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 28, 45, .72) 0%, rgba(12, 28, 45, .42) 48%, rgba(12, 28, 45, .2) 100%);
  pointer-events: none;
}

.lema-contact-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 168px;
}

.lema-contact-hero__inner p,
.lema-contact-kicker {
  margin: 0 0 14px;
  color: var(--lema-orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lema-contact-hero__inner p {
  color: #fff;
}

.lema-contact-hero__inner h1 {
  max-width: 680px;
  margin: 0;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
}

.lema-contact-hero__inner span {
  display: inline-flex;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.lema-breadcrumb {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.4;
}

.lema-breadcrumb a,
.lema-breadcrumb span {
  display: inline;
}

.lema-breadcrumb a {
  color: inherit;
  transition: color .2s ease;
}

.lema-breadcrumb a:hover {
  color: #fff;
}

.lema-breadcrumb a::after {
  content: "/";
  margin: 0 8px;
  color: rgba(255, 255, 255, .62);
}

.lema-application-page .lema-contact-hero {
  background-position: center 48%;
}

.lema-application-page .lema-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 28, 45, .76) 0%, rgba(12, 28, 45, .44) 50%, rgba(12, 28, 45, .18) 100%);
  pointer-events: none;
}

.lema-application-overview {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 124, 0, .08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 76%);
}

.lema-application-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.46fr);
  gap: clamp(30px, 3.2vw, 48px);
  align-items: start;
  max-width: 1420px;
}

.lema-application-overview__copy h2 {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--lema-text);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
}

.lema-application-overview__copy p:not(.lema-contact-kicker) {
  max-width: 900px;
  margin: 0 0 18px;
  color: #515865;
  font-size: 17px;
  line-height: 1.78;
}

.lema-application-overview__panel {
  padding: 34px 34px 30px;
  border-top: 4px solid var(--lema-orange);
  background: #fff;
  box-shadow: 0 20px 46px rgba(20, 37, 55, .1);
}

.lema-application-overview__panel h3 {
  margin: 0 0 22px;
  color: var(--lema-text);
  font-size: 22px;
  font-weight: 800;
}

.lema-application-overview__panel p {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 24px;
  border-top: 1px solid #e7edf3;
  color: #4e5662;
  font-size: 15px;
  line-height: 1.55;
}

.lema-application-overview__panel p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  background: var(--lema-orange);
  transform: rotate(45deg);
}

.lema-application-fields {
  position: relative;
  overflow: hidden;
  padding: 88px 0 98px;
  background: #fff;
}

.lema-application-fields .lema-container {
  position: relative;
}

.lema-application-fields__ghost {
  position: absolute;
  z-index: 0;
  top: -56px;
  left: 0;
  color: rgba(16, 34, 54, .045);
  font-size: clamp(78px, 9.6vw, 172px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.lema-application-fields__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .44fr) minmax(0, .56fr);
  gap: 78px;
  align-items: center;
  min-height: 720px;
}

.lema-application-fields__copy {
  max-width: 620px;
  padding-top: 34px;
}

.lema-application-fields__panels {
  display: grid;
  min-height: 310px;
}

.lema-application-fields__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.lema-application-fields__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lema-application-fields__copy h2 {
  margin: 0;
  color: #1c3a67;
  font-size: clamp(34px, 2.55vw, 52px);
  font-weight: 800;
  line-height: 1.18;
}

.lema-application-fields__copy .lema-contact-kicker {
  margin: 0 0 14px;
}

.lema-application-fields__copy p:not(.lema-contact-kicker) {
  max-width: 500px;
  margin: 28px 0 0;
  color: #526071;
  font-size: 18px;
  line-height: 1.78;
}

.lema-application-fields__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  margin-top: 38px;
  padding: 0 28px;
  border: 1px solid rgba(28, 58, 103, .36);
  border-radius: 999px;
  color: #1c3a67;
  font-size: 16px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.lema-application-fields__button:hover,
.lema-application-fields__button:focus-visible {
  color: #fff;
  border-color: var(--lema-orange);
  background: var(--lema-orange);
  transform: translateY(-2px);
}

.lema-application-fields__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.lema-application-fields__column {
  display: grid;
  gap: 46px;
}

.lema-application-fields__column--left {
  padding-top: 170px;
}

.lema-application-case {
  margin: 0;
  cursor: pointer;
  outline: none;
}

.lema-application-case img {
  display: block;
  width: 100%;
  aspect-ratio: 1.74 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(22, 40, 64, .12);
  transition: transform .24s ease, box-shadow .24s ease;
}

.lema-application-case:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(22, 40, 64, .18);
}

.lema-application-case.is-active img,
.lema-application-case:focus-visible img {
  box-shadow: 0 0 0 3px rgba(242, 124, 0, .28), 0 24px 54px rgba(22, 40, 64, .18);
  transform: translateY(-4px);
}

.lema-application-case.is-active figcaption {
  color: var(--lema-orange);
}

.lema-application-case figcaption {
  margin-top: 16px;
  color: #1c3a67;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.lema-contact-intro {
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 124, 0, .06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #fff 74%);
}

.lema-contact-intro h2 {
  margin: 0 0 54px;
  color: var(--lema-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.lema-contact-intro__grid,
.lema-contact-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .64fr);
  gap: 62px;
  align-items: stretch;
}

.lema-contact-intro__copy h2,
.lema-contact-details h2,
.lema-contact-form h2,
.lema-contact-mini-form h2 {
  margin: 0;
  color: var(--lema-orange);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
}

.lema-contact-form h2,
.lema-contact-mini-form h2 {
  color: var(--lema-text);
  font-size: 28px;
}

.lema-contact-intro__copy > p:not(.lema-contact-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--lema-muted);
  font-size: 18px;
  line-height: 1.72;
}

.lema-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.lema-contact-card {
  min-height: 248px;
  padding: 34px 28px 30px;
  border: 1px solid var(--lema-line);
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(26, 26, 26, .12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lema-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 124, 0, .55);
  box-shadow: 0 18px 38px rgba(26, 26, 26, .16);
}

.lema-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--lema-orange);
}

.lema-contact-card__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lema-contact-card h3 {
  margin: 0 0 22px;
  color: var(--lema-orange);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.lema-contact-card p {
  margin: 0;
  color: var(--lema-text);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.lema-contact-card a {
  color: var(--lema-text);
  font-weight: 500;
}

.lema-contact-form,
.lema-contact-mini-form {
  padding: 40px;
  border: 1px solid var(--lema-line);
  background: #fff;
  color: var(--lema-text);
  box-shadow: 0 18px 48px rgba(26, 26, 26, .09);
}

.lema-contact-form h2,
.lema-contact-mini-form h2 {
  color: var(--lema-text);
}

.lema-contact-form label {
  display: block;
  margin-top: 18px;
}

.lema-contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--lema-muted);
  font-size: 13px;
  font-weight: 700;
}

.lema-contact-form input,
.lema-contact-form textarea,
.lema-contact-mini-form input,
.lema-contact-mini-form textarea {
  width: 100%;
  border: 1px solid var(--lema-line);
  border-radius: 6px;
  outline: none;
  background: #f7f9fc;
  color: var(--lema-text);
  font: inherit;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lema-contact-form input,
.lema-contact-mini-form input {
  height: 48px;
  padding: 0 16px;
}

.lema-contact-mini-form input {
  height: 44px;
}

.lema-contact-form textarea,
.lema-contact-mini-form textarea {
  min-height: 108px;
  padding: 14px 15px;
  resize: vertical;
}

.lema-contact-mini-form textarea {
  min-height: 90px;
}

.lema-turnstile-field {
  margin-top: 14px;
  min-height: 65px;
}

.lema-turnstile-field .cf-turnstile {
  max-width: 100%;
}

.lema-contact-form input:focus,
.lema-contact-form textarea:focus,
.lema-contact-mini-form input:focus,
.lema-contact-mini-form textarea:focus {
  border-color: var(--lema-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 124, 0, .12);
}

.lema-contact-form button,
.lema-contact-mini-form button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  cursor: pointer;
}

.lema-contact-mini-form button {
  min-height: 42px;
  margin-top: 8px;
}

.lema-contact-alert {
  margin: 18px 0 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.lema-contact-alert--success {
  color: #155724;
  background: #d4edda;
}

.lema-contact-alert--error {
  color: #721c24;
  background: #f8d7da;
}

.lema-contact-details {
  padding: 78px 0 92px;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.lema-contact-details__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .62fr);
  gap: 30px;
  align-items: stretch;
}

.lema-contact-details article,
.lema-contact-mini-form {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 31, 45, .08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 31, 45, .08);
}

.lema-contact-map {
  display: grid;
  grid-template-rows: 128px minmax(280px, 1fr);
  height: 100%;
  min-height: 0;
}

.lema-contact-map__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 128px;
  padding: 18px 28px;
  background:
    linear-gradient(135deg, rgba(242, 124, 0, .1), rgba(242, 124, 0, 0) 58%),
    #fff;
}

.lema-contact-map__copy .lema-contact-kicker {
  margin: 0;
}

.lema-contact-map__copy h2 {
  margin: 0;
  color: var(--lema-text);
  font-size: clamp(26px, 1.9vw, 34px);
}

.lema-contact-map__copy p:not(.lema-contact-kicker) {
  margin: 6px 0 0;
  max-width: 500px;
  color: rgba(23, 33, 49, .76);
  font-size: 13px;
  line-height: 1.4;
}

.lema-contact-map__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.lema-contact-map__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--lema-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.lema-contact-map__frame {
  height: auto;
  min-height: 0;
  border-top: 1px solid rgba(20, 31, 45, .08);
  background:
    linear-gradient(135deg, rgba(242, 124, 0, .08), rgba(255, 255, 255, 0) 42%),
    #e9eef3;
}

.lema-contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.lema-contact-mini-form {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 24px 28px 26px;
}

.lema-contact-mini-form__head {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.lema-contact-mini-form .lema-contact-alert,
.lema-contact-mini-form textarea,
.lema-contact-mini-form button {
  grid-column: 1 / -1;
}

.lema-contact-mini-form__head .lema-contact-kicker {
  margin-bottom: 8px;
}

.lema-contact-mini-form__head h2 {
  color: var(--lema-text);
  font-size: clamp(26px, 2vw, 32px);
}

.lema-contact-mini-form__head p:not(.lema-contact-kicker) {
  margin: 8px 0 0;
  color: rgba(23, 33, 49, .68);
  font-size: 14px;
  line-height: 1.45;
}

.lema-contact-mini-form input::placeholder {
  color: #9aa0a6;
}

.lema-about-hero {
  background-image:
    linear-gradient(90deg, rgba(143, 62, 0, .24), rgba(143, 62, 0, .02) 38%, rgba(143, 62, 0, 0) 58%),
    var(--contact-hero);
  background-position: center bottom;
}

.lema-about-profile {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  background: #fff;
}

.lema-about-profile,
.lema-about-history,
.lema-about-factory,
.lema-about-certificates {
  scroll-margin-top: 78px;
}

.lema-about-profile::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -260px;
  width: min(42vw, 760px);
  aspect-ratio: 1229 / 1872;
  background: url('../images/about-bg-lines-new.webp') left bottom / contain no-repeat;
  opacity: .42;
  pointer-events: none;
}

.lema-about-profile__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.lema-about-profile__copy {
  min-width: 0;
}

.lema-about-profile__copy h2,
.lema-about-factory__heading h2,
.lema-about-certificates h2,
.lema-about-cta h2 {
  margin: 0;
  color: var(--lema-text);
  font-size: clamp(32px, 2.35vw, 48px);
  font-weight: 800;
  line-height: 1.14;
}

.lema-about-profile__copy > p:not(.lema-contact-kicker),
.lema-about-certificates p,
.lema-about-cta p {
  margin: 24px 0 0;
  color: var(--lema-muted);
  font-size: 17px;
  line-height: 1.78;
}

.lema-about-profile__copy > p:not(.lema-contact-kicker) {
  max-width: 57ch;
  overflow-wrap: break-word;
}

.lema-about-profile__media {
  position: relative;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.lema-about-profile__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 112px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
  pointer-events: none;
}

.lema-about-profile__media img {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  object-fit: cover;
}

.lema-about-numbers {
  padding: 36px 0;
  background: var(--lema-orange);
  color: #fff;
}

.lema-about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.lema-about-number {
  min-width: 0;
  padding: 18px 26px;
  border-left: 1px solid rgba(255, 255, 255, .34);
}

.lema-about-number:first-child {
  border-left: 0;
}

.lema-about-number strong {
  font-size: clamp(42px, 3.2vw, 66px);
  font-weight: 400;
  line-height: .95;
}

.lema-about-number span {
  margin-left: 8px;
  font-size: 20px;
  font-weight: 800;
}

.lema-about-number p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.lema-about-history {
  position: relative;
  overflow: hidden;
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #f6f8fb 0%, #f6f8fb 100%);
}

.lema-about-history .lema-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(calc(100svh - 92px), 844px);
}

.lema-about-history .lema-section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
}

.lema-about-history .lema-section-heading h2 {
  font-size: clamp(34px, 2.8vw, 46px);
}

.lema-about-history .lema-section-heading h2::after {
  margin-top: 14px;
}

.lema-about-history .lema-section-heading p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.42;
}

.lema-about-history::before,
.lema-about-history::after {
  display: none;
}

.lema-about-history::after {
  display: none;
}

.lema-about-history__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.lema-about-history__feature {
  display: grid;
  grid-template-columns: minmax(240px, .36fr) minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  height: clamp(520px, 38vw, 590px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 35, 56, .08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(24, 34, 48, .1);
}

.lema-about-history__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  padding: 24px 28px 26px;
  isolation: isolate;
  background: #ffffff;
}

.lema-about-history__copy-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.lema-about-history__copy-top::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 124, 0, .3), rgba(19, 31, 49, .05));
}

.lema-about-history__meta-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--lema-orange);
  background: rgba(242, 124, 0, .09);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lema-about-history__eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: var(--lema-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lema-about-history__year-ghost {
  position: absolute;
  z-index: 0;
  left: 18px;
  top: 84px;
  color: rgba(18, 30, 48, .05);
  font-size: clamp(92px, 8.6vw, 138px);
  font-weight: 800;
  line-height: .85;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.lema-about-history__copy strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 14px;
  color: #131f31;
  font-size: clamp(58px, 5.6vw, 86px);
  font-weight: 800;
  line-height: .92;
}

.lema-about-history__copy p:last-child {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: 0;
  color: #666c73;
  font-size: 14px;
  line-height: 1.56;
}

.lema-about-history__image-wrap {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
}

.lema-about-history__image-wrap::after {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-top: 2px solid rgba(255, 255, 255, .9);
  border-left: 2px solid rgba(255, 255, 255, .9);
  pointer-events: none;
}

.lema-about-history__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.lema-about-history__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  min-height: 100%;
  padding-left: 24px;
}

.lema-about-history__rail::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 124, 0, .3), rgba(242, 124, 0, .16));
}

.lema-about-history__year {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(26, 42, 60, .11);
  border-left: 4px solid transparent;
  border-radius: 16px;
  color: #1e2c3f;
  background: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}

.lema-about-history__year::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(242, 124, 0, .2);
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.lema-about-history__year-number {
  color: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.lema-about-history__year-label {
  display: block;
  color: #6e7883;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lema-about-history__year:hover {
  transform: translateX(4px);
  border-color: rgba(242, 124, 0, .28);
  box-shadow: 0 18px 32px rgba(32, 43, 58, .1);
}

.lema-about-history__year.is-active {
  border-color: rgba(242, 124, 0, .3);
  border-left-color: var(--lema-orange);
  background: linear-gradient(135deg, rgba(242, 124, 0, .12), rgba(255, 255, 255, .96) 64%);
  box-shadow: 0 22px 42px rgba(242, 124, 0, .14);
}

.lema-about-history__year.is-active::before {
  border-color: var(--lema-orange);
  background: var(--lema-orange);
  box-shadow: 0 0 0 6px rgba(242, 124, 0, .12);
}

.lema-about-history__year.is-active .lema-about-history__year-number {
  color: var(--lema-orange);
}

.lema-about-history__year.is-active .lema-about-history__year-label {
  color: #273244;
}

.lema-about-history__shell.is-history-changing .lema-about-history__copy,
.lema-about-history__shell.is-history-changing .lema-about-history__image-wrap {
  opacity: .58;
  transition: opacity .16s ease;
}

.lema-about-factory {
  padding: 88px 0 104px;
  background: var(--lema-soft);
}

.lema-about-factory__heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.lema-about-factory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lema-about-factory__card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111;
}

.lema-about-factory__card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .45s ease;
}

.lema-about-factory__card:hover img {
  transform: scale(1.045);
}

.lema-about-factory__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .62) 100%);
}

.lema-about-factory__card h3 {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.lema-about-certificates {
  padding: 88px 0 96px;
  background: #fff;
}

.lema-about-certificates__grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.lema-about-certificates__slider {
  position: relative;
}

.lema-about-certificates__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.lema-about-certificates__arrow {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 31, 40, .16);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lema-about-certificates__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #222933;
  border-right: 2px solid #222933;
  transform-origin: center;
}

.lema-about-certificates__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.lema-about-certificates__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.lema-about-certificates__arrow:hover {
  border-color: rgba(242, 124, 0, .42);
  box-shadow: 0 10px 22px rgba(242, 124, 0, .12);
  transform: translateY(-2px);
}

.lema-about-certificates__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lema-about-certificates figure {
  margin: 0;
  background: #f4f5f7;
  box-shadow: 0 16px 34px rgba(26, 26, 26, .08);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, opacity .28s ease;
  padding: 16px 16px 18px;
}

.lema-about-certificates img {
  width: 100%;
  aspect-ratio: 314 / 442;
  object-fit: cover;
  border: 8px solid #2e3036;
}

.lema-about-certificates figcaption {
  margin-top: 14px;
  color: var(--lema-orange);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.lema-about-certificates figure.is-about-certificate-active {
  background: #f4f5f7;
  box-shadow: 0 16px 34px rgba(26, 26, 26, .08);
  transform: translateY(-6px);
}

.lema-about-certificates figure.is-about-certificate-dimmed {
  opacity: .82;
}

.lema-about-cta {
  padding: 72px 0;
  color: #172131;
  background: #fff6ed;
}

.lema-about-cta__inner {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1fr);
  grid-template-areas:
    "title copy"
    "action copy";
  gap: 18px 48px;
  align-items: start;
}

.lema-about-cta h2 {
  grid-area: title;
  margin: 0;
  color: #172131;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.12;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.lema-about-cta p {
  grid-area: copy;
  align-self: center;
  margin: 0;
  max-width: 680px;
  color: rgba(23, 33, 49, .78);
}

.lema-about-cta .lema-button {
  grid-area: action;
  min-width: 168px;
  min-height: 52px;
  justify-self: start;
  margin-left: 0;
  margin-top: 6px;
}

@media (max-width: 1440px) {
  .lema-contact-intro__grid,
  .lema-contact-details__grid,
  .lema-application-overview__grid {
    gap: 42px;
  }

  .lema-contact-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lema-about-profile__grid,
  .lema-about-certificates__grid {
    gap: 48px;
  }

  .lema-about-history__shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .lema-about-history .lema-container {
    display: block;
    min-height: 0;
  }

  .lema-about-history .lema-section-heading {
    margin-bottom: 28px;
  }

  .lema-contact-hero {
    min-height: 360px;
  }

  .lema-contact-hero__inner {
    padding-top: 142px;
  }

  .lema-contact-hero__inner h1 {
    font-size: 46px;
  }

  .lema-contact-intro__grid,
  .lema-contact-details__grid,
  .lema-application-overview__grid {
    grid-template-columns: 1fr;
  }

  .lema-contact-intro {
    padding: 66px 0 72px;
  }

  .lema-application-overview {
    padding: 68px 0 58px;
  }

  .lema-application-fields {
    padding: 68px 0 76px;
  }

  .lema-application-fields__layout {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: 0;
  }

  .lema-application-fields__copy {
    max-width: 720px;
    padding-top: 0;
  }

  .lema-application-fields__button {
    margin-top: 42px;
  }

  .lema-application-fields__gallery {
    gap: 32px;
  }

  .lema-application-fields__column--left {
    padding-top: 92px;
  }

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

  .lema-contact-details {
    padding: 68px 0 78px;
  }

  .lema-about-profile__grid,
  .lema-about-certificates__grid,
  .lema-about-cta__inner {
    grid-template-columns: 1fr;
  }

  .lema-about-cta__inner {
    grid-template-areas:
      "title"
      "copy"
      "action";
  }

  .lema-about-certificates__controls {
    justify-content: flex-start;
  }

  .lema-about-profile {
    background: #fff;
  }

  .lema-about-numbers__grid,
  .lema-about-factory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lema-about-history__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lema-about-history__rail {
    position: static;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    height: auto;
    min-height: 0;
    padding: 0 2px 10px;
    margin: 0 -2px;
    gap: 12px;
    scrollbar-width: thin;
  }

  .lema-about-history__rail::before {
    display: none;
  }

  .lema-about-history__feature {
    grid-template-columns: 1fr;
    height: auto;
  }

  .lema-about-history__copy {
    padding: 34px 30px 30px;
  }

  .lema-about-history__image-wrap {
    height: 360px;
  }

  .lema-about-history__image-wrap img {
    min-height: 0;
  }

  .lema-about-history__year {
    justify-content: flex-start;
    min-height: 82px;
    padding: 16px 18px;
    scroll-snap-align: start;
  }

  .lema-about-history__year::before {
    display: none;
  }

  .lema-about-history__year.is-active {
    background: linear-gradient(135deg, rgba(242, 124, 0, .12), rgba(255, 255, 255, .96));
  }

  .lema-about-number:nth-child(odd) {
    border-left: 0;
  }

  .lema-about-certificates__list {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .lema-contact-page {
    overflow-x: hidden;
  }

  .lema-contact-page .lema-contact-hero {
    min-height: 300px;
    background-position: 56% center;
  }

  .lema-contact-page .lema-contact-hero::before {
    background: linear-gradient(90deg, rgba(12, 28, 45, .82) 0%, rgba(12, 28, 45, .54) 64%, rgba(12, 28, 45, .28) 100%);
  }

  .lema-application-page {
    overflow-x: hidden;
  }

  .lema-application-page .lema-contact-hero {
    min-height: 300px;
    background-position: 54% center;
  }

  .lema-application-page .lema-contact-hero::before {
    background: linear-gradient(90deg, rgba(12, 28, 45, .82) 0%, rgba(12, 28, 45, .52) 64%, rgba(12, 28, 45, .28) 100%);
  }

  .lema-contact-hero {
    min-height: 330px;
  }

  .lema-contact-hero__inner {
    padding-top: 132px;
  }

  .lema-contact-hero__inner h1,
  .lema-contact-intro h2,
  .lema-contact-intro__copy h2,
  .lema-contact-details h2,
  .lema-application-overview__copy h2 {
    font-size: 34px;
  }

  .lema-contact-intro__copy > p:not(.lema-contact-kicker),
  .lema-application-overview__copy p:not(.lema-contact-kicker) {
    font-size: 16px;
  }

  .lema-application-overview {
    padding: 48px 0 44px;
  }

  .lema-application-overview__grid {
    gap: 28px;
  }

  .lema-application-overview__copy h2 {
    margin-bottom: 18px;
    line-height: 1.18;
  }

  .lema-application-overview__copy p:not(.lema-contact-kicker) {
    margin-bottom: 14px;
    line-height: 1.68;
  }

  .lema-application-overview__panel {
    padding: 24px 22px 20px;
    border-top-width: 3px;
    box-shadow: 0 14px 34px rgba(20, 37, 55, .09);
  }

  .lema-application-overview__panel h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .lema-application-overview__panel p {
    padding: 12px 0 12px 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .lema-application-overview__panel p::before {
    top: 19px;
    width: 7px;
    height: 7px;
  }

  .lema-application-fields {
    padding: 46px 0 54px;
  }

  .lema-application-fields__ghost {
    top: -12px;
    right: 0;
    width: 100%;
    max-width: 100%;
    font-size: 42px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: .92;
  }

  .lema-application-fields__layout {
    gap: 30px;
  }

  .lema-application-fields__panels {
    min-height: 220px;
  }

  .lema-application-fields__copy h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .lema-application-fields__copy p:not(.lema-contact-kicker) {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.66;
  }

  .lema-application-fields__button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 22px;
    border-radius: 8px;
  }

  .lema-application-fields__gallery {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lema-application-fields__column,
  .lema-application-fields__column--left {
    gap: 24px;
    padding-top: 0;
  }

  .lema-application-case img {
    aspect-ratio: 1.62 / 1;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(22, 40, 64, .1);
  }

  .lema-application-case figcaption {
    margin-top: 12px;
    font-size: 15px;
  }

  .lema-application-page .lema-about-cta__inner {
    gap: 16px;
  }

  .lema-application-page .lema-about-cta h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .lema-application-page .lema-about-cta p {
    font-size: 15px;
    line-height: 1.62;
  }

  .lema-application-page .lema-footer {
    background-position: center;
  }

  .lema-application-page .lema-footer__grid,
  .lema-application-page .lema-footer__bottom {
    display: none;
  }

  .lema-application-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-application-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-application-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-application-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-application-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }

  .lema-contact-form,
  .lema-contact-mini-form {
    padding: 28px;
  }

  .lema-contact-page .lema-contact-intro {
    padding: 48px 0 54px;
  }

  .lema-contact-page .lema-contact-intro h2 {
    margin-bottom: 26px;
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
  }

  .lema-contact-page .lema-contact-cards {
    gap: 14px;
  }

  .lema-contact-page .lema-contact-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 12px 28px rgba(26, 26, 26, .08);
  }

  .lema-contact-page .lema-contact-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .lema-contact-page .lema-contact-card__icon svg {
    width: 42px;
    height: 42px;
  }

  .lema-contact-page .lema-contact-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .lema-contact-page .lema-contact-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .lema-contact-page .lema-contact-details {
    padding: 48px 0 58px;
  }

  .lema-contact-page .lema-contact-details__grid {
    gap: 20px;
  }

  .lema-contact-mini-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
    border-radius: 8px;
  }

  .lema-contact-page .lema-contact-mini-form__head h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .lema-contact-page .lema-contact-mini-form__head p:not(.lema-contact-kicker) {
    font-size: 14px;
    line-height: 1.56;
  }

  .lema-contact-page .lema-contact-mini-form input,
  .lema-contact-page .lema-contact-mini-form textarea {
    min-width: 0;
    font-size: 14px;
  }

  .lema-contact-map__copy {
    display: grid;
    gap: 18px;
    min-height: 0;
    padding: 28px;
  }

  .lema-contact-map__actions {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: none;
  }

  .lema-contact-map__frame,
  .lema-contact-map__frame iframe {
    min-height: 320px;
  }

  .lema-contact-page .lema-contact-map {
    grid-template-rows: auto minmax(280px, 1fr);
  }

  .lema-contact-page .lema-contact-map__copy h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .lema-contact-page .lema-contact-map__route {
    width: 100%;
    min-height: 44px;
  }

  .lema-contact-page .lema-footer {
    background-position: center;
  }

  .lema-contact-page .lema-footer__grid,
  .lema-contact-page .lema-footer__bottom {
    display: none;
  }

  .lema-contact-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-contact-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-contact-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-contact-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-contact-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }

  .lema-about-profile,
  .lema-about-history,
  .lema-about-factory,
  .lema-about-certificates {
    padding: 46px 0;
  }

  .lema-about-page .lema-contact-hero {
    min-height: 286px;
    background-position: 58% bottom;
  }

  .lema-about-page .lema-contact-hero__inner {
    padding-top: 118px;
  }

  .lema-about-page .lema-contact-hero__inner p {
    max-width: 240px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .lema-about-page .lema-contact-hero__inner h1 {
    font-size: 32px;
  }

  .lema-about-page .lema-breadcrumb {
    margin-top: 14px;
    font-size: 13px;
  }

  .lema-about-profile__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lema-about-profile__copy h2,
  .lema-about-factory__heading h2,
  .lema-about-certificates h2,
  .lema-about-cta h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .lema-about-profile__copy > p:not(.lema-contact-kicker),
  .lema-about-certificates p,
  .lema-about-cta p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.68;
  }

  .lema-about-profile__copy > p:not(.lema-contact-kicker) {
    max-width: 100%;
  }

  .lema-about-profile__media {
    border-radius: 8px;
  }

  .lema-about-profile__media::after {
    height: 64px;
  }

  .lema-about-profile__media img {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .lema-about-numbers {
    padding: 18px 0;
  }

  .lema-about-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .lema-about-factory__grid,
  .lema-about-certificates__list {
    grid-template-columns: 1fr;
  }

  .lema-about-number {
    min-height: 128px;
    padding: 18px 14px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .26);
  }

  .lema-about-number:nth-child(-n + 2) {
    border-top: 0;
  }

  .lema-about-number:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, .26);
  }

  .lema-about-number strong {
    font-size: 38px;
  }

  .lema-about-number span {
    margin-left: 4px;
    font-size: 15px;
  }

  .lema-about-number p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  .lema-about-history .lema-section-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .lema-about-history .lema-section-heading h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .lema-about-history .lema-section-heading h2::after {
    margin-left: 0;
  }

  .lema-about-history .lema-section-heading p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .lema-about-history__shell {
    gap: 22px;
  }

  .lema-about-history__copy {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .lema-about-history__meta-chip {
    min-width: 0;
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .lema-about-history__year-ghost {
    left: 18px;
    top: 68px;
    font-size: 74px;
  }

  .lema-about-history__copy strong {
    margin-bottom: 10px;
    font-size: 50px;
  }

  .lema-about-history__copy p:last-child {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.58;
  }

  .lema-about-history__rail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .lema-about-history__year {
    width: 100%;
    min-height: 68px;
  }

  .lema-about-history__image-wrap {
    height: 232px;
    min-height: 0;
  }

  .lema-about-history__image-wrap::after {
    inset: 18px auto auto 18px;
    width: 42px;
    height: 42px;
  }

  .lema-about-history__image-wrap img {
    min-height: 0;
  }

  .lema-about-factory__card,
  .lema-about-factory__card img {
    min-height: 224px;
  }

  .lema-about-factory__heading {
    margin-bottom: 24px;
  }

  .lema-about-factory__card {
    border-radius: 8px;
  }

  .lema-about-factory__card h3 {
    left: 20px;
    right: 20px;
    bottom: 18px;
    font-size: 20px;
  }

  .lema-about-certificates__grid {
    gap: 28px;
  }

  .lema-about-certificates__controls {
    display: none;
  }

  .lema-about-certificates figure {
    padding: 14px;
    border-radius: 8px;
  }

  .lema-about-certificates img {
    max-height: 520px;
    border-width: 6px;
    object-fit: contain;
    background: #fff;
  }

  .lema-about-certificates figcaption {
    margin-top: 10px;
    font-size: 14px;
  }

  .lema-about-cta {
    padding: 40px 0;
  }

  .lema-about-cta__inner {
    gap: 14px;
  }

  .lema-about-cta .lema-button {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
  }

  .lema-about-page .lema-footer {
    background-position: center;
  }

  .lema-about-page .lema-footer__grid,
  .lema-about-page .lema-footer__bottom {
    display: none;
  }

  .lema-about-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-about-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-about-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-about-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-about-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lema-contact-hero__inner h1,
  .lema-contact-intro h2,
  .lema-contact-intro__copy h2,
  .lema-contact-details h2 {
    font-size: 30px;
  }

  .lema-contact-cards {
    grid-template-columns: 1fr;
  }

  .lema-contact-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .lema-about-profile__copy h2,
  .lema-about-factory__heading h2,
  .lema-about-certificates h2,
  .lema-about-cta h2 {
    font-size: 30px;
  }

  .lema-about-history__rail {
    grid-auto-columns: minmax(138px, 82vw);
  }

  .lema-about-history__year {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 76px;
    padding: 16px;
  }

  .lema-about-history__year-ghost {
    left: 20px;
    top: 74px;
    font-size: 78px;
  }

  .lema-about-history__copy strong {
    font-size: 56px;
  }
}

.lema-faq-hero {
  background-image: var(--contact-hero);
  background-position: 54% center;
}

.lema-faq-hero__inner {
  padding-top: 168px;
}

.lema-faq-hero__inner h1 {
  font-size: 62px;
  text-transform: uppercase;
}

.lema-faq-content {
  padding: 80px 0 96px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.lema-faq-accordion {
  display: grid;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lema-faq-item {
  overflow: hidden;
  border: 1px solid rgba(19, 31, 49, .1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(21, 30, 44, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lema-faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 124, 0, .3);
  box-shadow: 0 22px 48px rgba(21, 30, 44, .1);
}

.lema-faq-item.is-active {
  border-color: rgba(242, 124, 0, .28);
  box-shadow: 0 24px 56px rgba(242, 124, 0, .12);
}

.lema-faq-question {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 28px;
  align-items: center;
  width: 100%;
  padding: 28px 30px;
  border: 0;
  color: #172131;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lema-faq-question__index {
  color: rgba(242, 124, 0, .95);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.lema-faq-question__text {
  padding-right: 18px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.lema-faq-question__icon {
  position: relative;
  width: 28px;
  height: 28px;
  justify-self: end;
  border-radius: 50%;
  background: rgba(242, 124, 0, .12);
}

.lema-faq-question__icon::before,
.lema-faq-question__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--lema-orange);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.lema-faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lema-faq-item.is-active .lema-faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(.3);
}

.lema-faq-answer {
  padding: 0 30px 30px 112px;
}

.lema-faq-answer p {
  max-width: 760px;
  margin: 0;
  color: #67707a;
  font-size: 16px;
  line-height: 1.84;
}

.lema-faq-answer p + p {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .lema-faq-hero__inner {
    padding-top: 142px;
  }

  .lema-faq-hero__inner h1 {
    font-size: 46px;
  }

  .lema-faq-content {
    padding-top: 66px;
  }

  .lema-faq-question {
    grid-template-columns: 70px minmax(0, 1fr) 28px;
    padding: 26px 26px 22px;
  }

  .lema-faq-question__text {
    font-size: 22px;
  }

  .lema-faq-answer {
    padding: 0 26px 26px 96px;
  }
}

@media (max-width: 760px) {
  .lema-faq-page {
    overflow-x: hidden;
  }

  .lema-faq-page .lema-contact-hero {
    min-height: 300px;
    background-position: 56% center;
  }

  .lema-faq-hero__inner {
    padding-top: 128px;
  }

  .lema-faq-hero__inner h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .lema-faq-content {
    padding: 48px 0 54px;
  }

  .lema-faq-accordion {
    gap: 14px;
  }

  .lema-faq-question {
    grid-template-columns: 1fr 24px;
    gap: 10px 14px;
    padding: 18px 18px 16px;
  }

  .lema-faq-question__index {
    grid-column: 1 / 2;
    font-size: 16px;
  }

  .lema-faq-question__text {
    grid-column: 1 / 2;
    padding-right: 0;
    font-size: 18px;
    line-height: 1.34;
  }

  .lema-faq-question__icon {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
    align-self: center;
    width: 24px;
    height: 24px;
  }

  .lema-faq-answer {
    padding: 0 18px 18px;
  }

  .lema-faq-answer p {
    font-size: 15px;
    line-height: 1.72;
  }

  .lema-faq-page .lema-about-cta__inner {
    gap: 16px;
  }

  .lema-faq-page .lema-about-cta h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .lema-faq-page .lema-about-cta p {
    font-size: 15px;
    line-height: 1.62;
  }

  .lema-faq-page .lema-footer {
    background-position: center;
  }

  .lema-faq-page .lema-footer__grid,
  .lema-faq-page .lema-footer__bottom {
    display: none;
  }

  .lema-faq-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-faq-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-faq-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-faq-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-faq-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lema-faq-hero__inner h1 {
    font-size: 34px;
  }

  .lema-faq-question__text {
    font-size: 17px;
  }
}

.lema-news-hero {
  background-image: var(--contact-hero);
  background-position: center center;
}

.lema-news-hero__inner h1 {
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(18, 30, 46, .16);
}

.lema-news-detail-hero .lema-news-hero__inner h1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.08;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 10px 28px rgba(18, 30, 46, .22);
}

.lema-news-hero {
  background-position: 64% center;
}

.lema-news-detail-hero .lema-news-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

.lema-news-detail-meta {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.lema-news-detail-meta span,
.lema-news-detail-meta time {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  background: transparent;
}

.lema-news-detail-meta__category {
  color: #ffb347;
}

.lema-news-detail-meta__separator {
  width: 4px;
  height: 4px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.lema-news-detail-hero {
  background-position: center center;
}

.lema-news-hub {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(242, 124, 0, .08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.lema-news-hub__head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .88fr);
  gap: 28px 42px;
  align-items: end;
  margin-bottom: 36px;
}

.lema-news-hub__head h2,
.lema-news-single__related h2 {
  margin: 0;
  color: var(--lema-text);
  font-size: clamp(32px, 2.35vw, 48px);
  font-weight: 800;
  line-height: 1.14;
}

.lema-news-hub__head > p {
  margin: 0;
  color: var(--lema-muted);
  font-size: 17px;
  line-height: 1.82;
  text-align: right;
}

.lema-news-hub__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.lema-news-feed {
  display: grid;
  gap: 22px;
}

.lema-news-list-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  min-height: 236px;
  border: 1px solid rgba(22, 33, 49, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lema-news-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 124, 0, .24);
  box-shadow: 0 24px 48px rgba(17, 24, 39, .1);
}

.lema-news-list-card__image {
  overflow: hidden;
  width: 280px;
  height: 200px;
  align-self: center;
  border-radius: 18px;
  background: #eef2f6;
}

.lema-news-list-card__image img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
}

.lema-news-list-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 4px 4px 4px 0;
}

.lema-news-page-intro {
  padding: 86px 0 54px;
  background:
    radial-gradient(circle at 10% 16%, rgba(242, 124, 0, .08), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 72%);
}

.lema-news-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 48px;
  align-items: start;
}

.lema-news-page-intro__lead h2,
.lema-news-page-grid-section__head h2,
.lema-news-single__related h2 {
  margin: 0;
  color: var(--lema-text);
  font-size: clamp(32px, 2.35vw, 48px);
  font-weight: 800;
  line-height: 1.14;
}

.lema-news-page-intro__copy p,
.lema-news-page-grid-section__head > p {
  margin: 0;
  color: var(--lema-muted);
  font-size: 17px;
  line-height: 1.82;
}

.lema-news-page-intro__copy p + p {
  margin-top: 18px;
}

.lema-news-page-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.lema-news-topic {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgba(22, 33, 49, .08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 253, .98));
  box-shadow: 0 18px 40px rgba(17, 24, 39, .06);
}

.lema-news-topic::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(242, 124, 0, .08);
}

.lema-news-topic__index {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(23, 33, 49, .24);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .18em;
}

.lema-news-topic__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--lema-orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lema-news-topic h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--lema-text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
}

.lema-news-topic > p:last-child {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 46ch;
  color: #66707a;
  font-size: 16px;
  line-height: 1.76;
}

.lema-news-topic__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 20px;
  color: var(--lema-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lema-news-page-featured {
  padding: 28px 0 38px;
  background: #fff;
}

.lema-news-spotlight {
  display: grid;
  grid-template-columns: minmax(340px, .96fr) minmax(0, 1.04fr);
  gap: 34px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 56px rgba(19, 31, 49, .12);
}

.lema-news-spotlight__media {
  min-height: 420px;
  background: #f5f7fa;
}

.lema-news-spotlight__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lema-news-spotlight__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 46px 48px 0;
}

.lema-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lema-news-meta span,
.lema-news-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.lema-news-meta span {
  color: #fff;
  background: var(--lema-orange);
}

.lema-news-meta time {
  color: #51606f;
  background: rgba(23, 33, 49, .06);
}

.lema-news-list-card__body h3 {
  margin: 16px 0 0;
  color: var(--lema-text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.45em * 2);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lema-news-list-card__body h3 a {
  color: inherit;
}

.lema-news-list-card__body p {
  margin: 14px 0 0;
  color: #64707c;
  font-size: 16px;
  line-height: 1.84;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lema-news-list-card__more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--lema-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lema-news-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 28px;
}

.lema-news-sidebar__panel {
  padding: 28px;
  border: 1px solid rgba(22, 33, 49, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
}

.lema-news-sidebar__panel h3 {
  margin: 0;
  color: var(--lema-orange);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.lema-news-category-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.lema-news-category-list__item {
  display: block;
  padding: 15px 18px;
  border-radius: 18px;
  background: #f7f9fc;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lema-news-category-list__item:hover,
.lema-news-category-list__item.is-active {
  background: #fff3e5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242, 124, 0, .12);
}

.lema-news-category-list__item strong {
  display: inline-block;
  color: var(--lema-text);
  font-size: 16px;
  font-weight: 800;
}

.lema-news-sidebar__latest {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.lema-news-sidebar__story + .lema-news-sidebar__story {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 33, 49, .08);
}

.lema-news-sidebar__story {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lema-news-sidebar__story-thumb {
  display: block;
  overflow: hidden;
  width: 78px;
  height: 78px;
  border-radius: 12px;
  background: #eef2f6;
}

.lema-news-sidebar__story-thumb img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.lema-news-sidebar__story-body {
  min-width: 0;
}

.lema-news-sidebar__story time {
  color: #7a8794;
  font-size: 13px;
  font-weight: 700;
}

.lema-news-sidebar__story h4 {
  margin: 6px 0 0;
  color: var(--lema-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.5em * 2);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lema-news-sidebar__story h4 a {
  color: inherit;
}

.lema-news-spotlight__body h3,
.lema-news-article-card h3 {
  margin: 18px 0 0;
  color: var(--lema-text);
  font-weight: 800;
  line-height: 1.18;
}

.lema-news-spotlight__body h3 {
  font-size: clamp(30px, 2.2vw, 44px);
}

.lema-news-spotlight__body p,
.lema-news-article-card p {
  margin: 18px 0 0;
  color: #64707c;
  font-size: 16px;
  line-height: 1.82;
}

.lema-news-spotlight__body .lema-button {
  margin-top: 26px;
  align-self: flex-start;
}

.lema-news-page-grid-section {
  padding: 34px 0 96px;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.lema-news-page-grid-section__head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .86fr);
  gap: 30px 42px;
  align-items: end;
  margin-bottom: 34px;
}

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

.lema-news-article-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border: 1px solid rgba(22, 33, 49, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lema-news-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 124, 0, .24);
  box-shadow: 0 26px 52px rgba(17, 24, 39, .12);
}

.lema-news-article-card__image {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc, #edf2f7);
}

.lema-news-article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lema-news-article-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px;
}

.lema-news-article-card h3 {
  font-size: 25px;
}

.lema-news-article-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--lema-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lema-news-single {
  padding: 40px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(242, 124, 0, .06), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.lema-news-single__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
  max-width: none;
  margin: 0 auto;
}

.lema-news-single__article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lema-news-content-meta {
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  max-width: none;
  margin: -18px 0 34px;
  gap: 12px;
}

.lema-news-content-meta span,
.lema-news-content-meta time {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
}

.lema-news-content-meta span {
  color: var(--lema-orange);
}

.lema-news-content-meta time {
  color: #7a8696;
}

.lema-news-prose {
  max-width: none;
  margin: 0;
  color: #556171;
}

.lema-news-single__sidebar {
  align-self: start;
}

.lema-news-single__sidebar .lema-news-sidebar__story h4 {
  font-size: 13px;
  line-height: 1.42;
}

.lema-news-prose p {
  margin: 0;
  font-size: 18px;
  line-height: 1.95;
}

.lema-news-prose p + p {
  margin-top: 20px;
}

.lema-news-prose h2,
.lema-news-prose h3,
.lema-news-prose h4 {
  margin: 38px 0 16px;
  color: var(--lema-text);
  font-weight: 800;
  line-height: 1.28;
}

.lema-news-prose ul,
.lema-news-prose ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.lema-news-prose li {
  margin-top: 10px;
  line-height: 1.8;
}

.lema-news-single__related {
  padding: 30px;
  border: 1px solid rgba(22, 33, 49, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
}

.lema-news-single__related-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.lema-news-related-card {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.lema-news-related-card img {
  display: block;
  width: 94px;
  height: 94px;
  border-radius: 18px;
  object-fit: cover;
}

.lema-news-related-card time {
  color: #7a8794;
  font-size: 13px;
  font-weight: 700;
}

.lema-news-related-card h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.lema-news-related-card a {
  color: var(--lema-text);
}

@media (max-width: 1200px) {
  .lema-news-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lema-news-list-card {
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 220px;
  }

  .lema-news-list-card__image {
    width: 240px;
  }

}

@media (max-width: 980px) {
  .lema-news-hub__head,
  .lema-news-hub__layout,
  .lema-news-single__shell,
  .lema-news-page-intro__grid,
  .lema-news-page-grid-section__head,
  .lema-news-spotlight {
    grid-template-columns: 1fr;
  }

  .lema-news-sidebar {
    position: static;
  }

  .lema-news-spotlight__body {
    padding: 0 34px 38px;
  }

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

@media (max-width: 760px) {
  .lema-news-page {
    overflow-x: hidden;
  }

  .lema-news-page .lema-news-hero {
    min-height: 300px;
    background-position: 58% center;
  }

  .lema-news-page .lema-news-hero__inner h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.08;
    white-space: normal;
  }

  .lema-news-hub,
  .lema-news-page-intro,
  .lema-news-page-featured,
  .lema-news-page-grid-section,
  .lema-news-single {
    padding-top: 44px;
    padding-bottom: 72px;
  }

  .lema-news-hub {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .lema-news-hub__head {
    margin-bottom: 24px;
  }

  .lema-news-hub__head h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .lema-news-hub__layout {
    gap: 28px;
  }

  .lema-news-feed {
    gap: 18px;
  }

  .lema-news-page-topics {
    margin-top: 30px;
  }

  .lema-news-list-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    min-height: 0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
  }

  .lema-news-list-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.52 / 1;
    border-radius: 8px;
  }

  .lema-news-list-card__image img {
    height: 100%;
  }

  .lema-news-list-card__body {
    padding: 0;
  }

  .lema-news-meta {
    gap: 8px;
  }

  .lema-news-meta span,
  .lema-news-meta time {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
  }

  .lema-news-list-card__body h3 {
    font-size: 17px;
    min-height: calc(1.45em * 2);
  }

  .lema-news-list-card__body p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.66;
  }

  .lema-news-list-card__more {
    padding-top: 14px;
    font-size: 12px;
  }

  .lema-news-sidebar {
    gap: 18px;
  }

  .lema-news-sidebar__panel {
    padding: 22px 18px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
  }

  .lema-news-sidebar__panel h3 {
    font-size: 20px;
  }

  .lema-news-category-list,
  .lema-news-sidebar__latest {
    margin-top: 16px;
  }

  .lema-news-category-list__item {
    padding: 13px 14px;
    border-radius: 8px;
  }

  .lema-news-sidebar__story {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .lema-news-sidebar__story-thumb,
  .lema-news-sidebar__story-thumb img {
    width: 70px;
    height: 70px;
  }

  .lema-news-sidebar__story-thumb {
    border-radius: 8px;
  }

  .lema-news-sidebar__story h4 {
    font-size: 14px;
    line-height: 1.42;
  }

  .lema-news-topic {
    min-height: 0;
    padding: 26px 24px;
  }

  .lema-news-topic h3,
  .lema-news-article-card h3 {
    font-size: 22px;
  }

  .lema-news-spotlight__media {
    min-height: 280px;
  }

  .lema-news-spotlight__body {
    padding: 0 24px 28px;
  }

  .lema-news-page-grid-section__head {
    margin-bottom: 28px;
  }

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

  .lema-news-article-card {
    grid-template-rows: 220px 1fr;
  }

  .lema-news-single__article {
    padding: 0;
  }

  .lema-news-detail-hero .lema-news-hero__inner h1 {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lema-news-detail-hero .lema-news-hero__inner {
    align-items: center;
    text-align: center;
    min-height: 220px;
  }

  .lema-news-content-meta {
    justify-content: flex-start;
    margin: -14px auto 28px;
    gap: 10px;
  }

  .lema-news-prose p {
    font-size: 16px;
  }

  .lema-news-page .lema-footer {
    background-position: center;
  }

  .lema-news-page .lema-footer__grid,
  .lema-news-page .lema-footer__bottom {
    display: none;
  }

  .lema-news-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-news-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-news-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-news-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-news-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lema-news-hub__head h2,
  .lema-news-page-intro__lead h2,
  .lema-news-page-grid-section__head h2,
  .lema-news-single__related h2 {
    font-size: 30px;
  }

  .lema-news-spotlight__body h3 {
    font-size: 28px;
  }

  .lema-news-meta {
    gap: 8px;
  }

  .lema-news-meta span,
  .lema-news-meta time {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }
}

.lema-products-page {
  background:
    radial-gradient(circle at top right, rgba(12, 90, 156, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 32%, #eef3f8 100%);
}

.lema-products-hero::after {
  content: none;
}

.lema-products-hero {
  background-color: #f27c00;
  background-position: 60% center;
  background-size: cover;
}

.lema-products-hero::before {
  content: none;
}

.lema-products-hero__inner {
  gap: 1.1rem;
}

.lema-products-overview,
.lema-product-family-spotlight,
.lema-single-product,
.lema-single-product__content {
  padding: 5.5rem 0;
}

.lema-products-overview__grid,
.lema-product-family-spotlight__grid,
.lema-single-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
}

.lema-products-overview__copy,
.lema-products-overview__stats,
.lema-product-family-spotlight__copy,
.lema-single-product__copy,
.lema-single-product__content-inner {
  border-radius: 1.8rem;
  box-shadow: 0 28px 64px rgba(6, 27, 49, 0.08);
}

.lema-products-overview__copy,
.lema-product-family-spotlight__copy,
.lema-single-product__copy,
.lema-single-product__content-inner {
  background: rgba(255, 255, 255, 0.94);
  padding: 2.5rem;
}

.lema-products-overview__copy h2,
.lema-product-family-spotlight__copy h2,
.lema-single-product__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  color: #08233f;
}

.lema-products-overview__copy p:not(.lema-contact-kicker),
.lema-product-family-spotlight__copy p:not(.lema-contact-kicker),
.lema-single-product__copy p {
  margin: 1rem 0 0;
  color: #4f6275;
  font-size: 1.02rem;
  line-height: 1.8;
}

.lema-products-overview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: linear-gradient(145deg, rgba(8, 35, 63, 0.98), rgba(10, 69, 119, 0.92));
  padding: 1.25rem;
  color: #fff;
}

.lema-products-metric {
  min-height: 10rem;
  border-radius: 1.45rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lema-products-metric strong {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.lema-products-metric span {
  margin-left: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.lema-products-metric p {
  margin: 1rem 0 0;
  max-width: 11rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.lema-products-catalog {
  padding: 0 0 5rem;
}

.lema-products-page:not(.lema-single-product-page) .lema-products-catalog {
  padding-top: 1.35rem;
}

.lema-products-catalog__layout {
  display: grid;
  grid-template-columns: minmax(238px, 278px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.lema-products-sidebar {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.lema-product-taxonomy-page .lema-products-catalog__layout .lema-products-sidebar {
  position: relative;
  top: auto;
  align-self: stretch;
  display: block;
  max-height: none;
  overflow: visible;
}

.lema-products-sidebar__panel {
  border-radius: 1.65rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(6, 27, 49, 0.08);
}

.lema-product-taxonomy-page .lema-products-catalog__layout .lema-products-sidebar__panel {
  position: relative;
  height: max-content;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 2;
}

.lema-products-sidebar__panel h2 {
  margin: 0 0 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ef8c1d 0%, #ff9f2d 100%);
  box-shadow: none;
}

.lema-products-sidebar__list {
  display: grid;
  gap: 1rem;
}

.lema-products-family-link {
  border-top: 1px solid rgba(8, 35, 63, 0.08);
  padding-top: 1rem;
}

.lema-products-family-link:first-child {
  border-top: 0;
  padding-top: 0;
}

.lema-products-family-link__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lema-products-family-link__title {
  display: inline-flex;
  color: #08233f;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.lema-products-family-link__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 140, 29, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lema-products-family-link__toggle span,
.lema-products-family-link__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 1.5px;
  background: #ef8c1d;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lema-products-family-link__toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lema-products-family-link.is-open .lema-products-family-link__toggle span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.lema-products-family-link.is-open .lema-products-family-link__title,
.lema-products-family-link__title:hover {
  color: #ef8c1d;
}

.lema-products-family-link__toggle:hover,
.lema-products-family-link.is-open .lema-products-family-link__toggle {
  background: rgba(239, 140, 29, 0.2);
}

.lema-products-family-link__title.is-current,
.lema-products-family-link__children a.is-current {
  color: #ef8c1d;
}

.lema-products-family-link__children {
  display: none;
  gap: 0.65rem;
  margin-top: 0.9rem;
  padding: 0.35rem 0 0.1rem 0.9rem;
  border-left: 2px solid rgba(239, 140, 29, 0.22);
}

.lema-products-family-link.is-open > .lema-products-family-link__children {
  display: grid;
}

.lema-products-family-link__children a {
  color: #4e5f71;
  font-size: 0.84rem;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lema-products-family-link__children a:hover {
  color: #ef8c1d;
  transform: translateX(0.16rem);
}

.lema-products-family-link__children a.is-current {
  font-weight: 700;
}

.lema-products-sidebar__panel--cta {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(8, 35, 63, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 14px 34px rgba(6, 27, 49, 0.05);
}

.lema-products-sidebar__panel--cta::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef8c1d 0%, #ffb14a 100%);
}

.lema-products-sidebar__panel--cta p:not(.lema-contact-kicker) {
  margin: 0.85rem 0 0;
  color: #5b6c7d;
  font-size: 0.92rem;
  line-height: 1.7;
}

.lema-products-sidebar__panel--cta .lema-contact-kicker {
  margin: 0;
  color: #ef8c1d;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.lema-products-sidebar__panel--cta h2 {
  margin: 0.55rem 0 0;
  color: #08233f;
  font-size: 1.1rem;
  line-height: 1.32;
}

.lema-products-sidebar__panel--cta .lema-button {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
  border-radius: 0.95rem;
  min-height: 2.9rem;
  font-size: 0.9rem;
  box-shadow: none;
}

.lema-products-main {
  display: grid;
  gap: 1.75rem;
}

.lema-products-main__section {
  border-radius: 1.8rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 64px rgba(6, 27, 49, 0.08);
}

.lema-products-main__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.15rem;
}

.lema-products-main__head h2 {
  margin: 0;
  color: #08233f;
  font-size: clamp(1.3rem, 1.9vw, 1.9rem);
  line-height: 1.18;
}

.lema-products-page .lema-products-main__head .lema-contact-kicker {
  font-size: clamp(1.3rem, 1.9vw, 1.9rem);
}

.lema-products-main__head > p {
  max-width: 29rem;
  margin: 0;
  color: #546779;
  font-size: 0.94rem;
  line-height: 1.65;
}

.lema-series-grid,
.lema-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lema-products-page:not(.lema-single-product-page) .lema-products-grid {
  grid-template-columns: 1fr;
}

.lema-products-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.lema-products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  min-height: 2.55rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(8, 35, 63, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #08233f;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lema-products-pagination a.page-numbers:hover,
.lema-products-pagination a.page-numbers:focus-visible,
.lema-products-pagination .page-numbers.current {
  border-color: #ef8c1d;
  background: #ef8c1d;
  color: #ffffff;
  outline: 0;
}

.lema-products-pagination a.page-numbers:hover {
  transform: translateY(-1px);
}

.lema-series-card,
.lema-product-tile {
  overflow: hidden;
  border-radius: 1.45rem;
  background: #ffffff;
  border: 1px solid rgba(8, 35, 63, 0.08);
  box-shadow: 0 18px 42px rgba(6, 27, 49, 0.06);
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

.lema-series-card__image,
.lema-product-tile__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile__image {
  width: 220px;
  height: 220px;
  min-width: 220px;
  min-height: 220px;
  border-right: 1px solid rgba(8, 35, 63, 0.08);
}

.lema-series-card__image img,
.lema-product-tile__image img,
.lema-product-family-spotlight__media img,
.lema-single-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lema-series-card__image img {
  aspect-ratio: 16 / 8;
  object-fit: contain;
  width: min(46%, 180px);
  max-height: 170px;
  padding: 0.9rem 0 0.75rem;
  background: #ffffff;
}

.lema-product-tile__image img {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  background: #ffffff;
  object-fit: cover;
  aspect-ratio: auto;
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile__image img {
  width: 188px;
  height: 188px;
  max-height: none;
  object-fit: contain;
  padding: 0;
}

.lema-series-card__body,
.lema-product-tile__body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.1rem 1.3rem 1.15rem;
}

.lema-series-card__body span,
.lema-product-tile__body span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 140, 29, 0.12);
  color: #d7790e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lema-series-card__body h3,
.lema-product-tile__body h3 {
  margin: 0.8rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile__body h3 {
  font-size: 1.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lema-series-card__body h3 a,
.lema-product-tile__body h3 a {
  color: #08233f;
}

.lema-series-card__body p,
.lema-product-tile__body p {
  margin: 0.75rem 0 0;
  color: #56697b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.lema-products-page:not(.lema-single-product-page) .lema-product-tile__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lema-series-card__link,
.lema-product-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  color: #0a5ba0;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.lema-series-card__link::after,
.lema-product-tile__link::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.lema-series-card:hover .lema-series-card__link::after,
.lema-product-tile:hover .lema-product-tile__link::after {
  transform: translateX(0.2rem);
}

.lema-product-family-spotlight__media,
.lema-single-product__media {
  overflow: hidden;
  border-radius: 1.85rem;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(10, 69, 119, 0.08), rgba(239, 140, 29, 0.1));
  box-shadow: 0 28px 64px rgba(6, 27, 49, 0.08);
}

.lema-product-family-spotlight__media img,
.lema-single-product__media img {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.lema-product-term-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.lema-product-term-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(8, 35, 63, 0.06);
  color: #08233f;
  font-weight: 600;
}

.lema-single-product__copy .lema-button {
  margin-top: 1.6rem;
}

.lema-single-product__content-inner {
  padding: 2rem;
}

.lema-single-product__wysiwyg {
  color: #4f6275;
  line-height: 1.85;
}

.lema-single-product__wysiwyg > *:first-child {
  margin-top: 0;
}

.lema-single-product__wysiwyg > *:last-child {
  margin-bottom: 0;
}

.lema-single-product__wysiwyg ul,
.lema-single-product__wysiwyg ol {
  padding-left: 1.4rem;
}

.lema-single-product__related {
  padding: 0 0 3.2rem;
}

.lema-single-product-page .lema-products-hero {
  min-height: 430px;
}

.lema-single-product-page {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 32%, #eef3f8 100%);
}

.lema-single-product-page .lema-products-hero__inner {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(var(--lema-container), calc(100% - 16.6vw));
  max-width: var(--lema-container);
  min-height: 0;
  padding-top: 0;
  gap: 0.7rem;
  text-align: center;
}

.lema-single-product-page .lema-contact-hero__inner h1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.08;
  text-align: center;
  color: #fff;
  text-shadow: 0 10px 28px rgba(18, 30, 46, 0.22);
}

.lema-single-product-page .lema-product-breadcrumb-bar {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb {
  display: block;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(8, 35, 63, .24);
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb a:hover {
  color: #fff;
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb a::after {
  color: rgba(255, 255, 255, .58);
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb a:last-child::after {
  content: none;
}

.lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb > span:last-child {
  color: rgba(255, 255, 255, .94);
  font-weight: 400;
}

.lema-single-product-page .lema-single-product,
.lema-single-product-page .lema-single-product__content {
  padding: 1.8rem 0 3.4rem;
}

.lema-single-product-page .lema-single-product__grid {
  max-width: 1240px;
  grid-template-columns: minmax(430px, 520px) minmax(420px, 1fr);
  gap: clamp(1.45rem, 2.1vw, 2.65rem);
  align-items: start;
}

.lema-single-product-page .lema-single-product__grid.is-with-sidebar {
  width: min(var(--lema-container), calc(100% - 16.6vw));
  max-width: var(--lema-container);
  grid-template-columns: minmax(238px, 278px) minmax(360px, 500px) minmax(360px, 1fr);
  gap: clamp(1rem, 1.45vw, 1.75rem);
}

.lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: block;
  position: relative;
  top: auto;
  max-height: none;
  overflow: visible;
}

.lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar__panel {
  position: relative;
  height: max-content;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  scrollbar-width: thin;
  z-index: 2;
}

.lema-single-product-page .lema-single-product__content-inner {
  grid-column: 1 / -1;
  margin-top: 0.6rem;
}

.lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-single-product__content-inner {
  grid-column: 2 / -1;
}

.lema-single-product-page .lema-single-product__media,
.lema-single-product-page .lema-single-product__copy,
.lema-single-product-page .lema-single-product__content-inner,
.lema-single-product-page .lema-products-main__section {
  border-radius: 1.45rem;
}

.lema-single-product-page .lema-single-product__media {
  min-height: 0;
  aspect-ratio: auto;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.lema-single-product-page .lema-single-product__copy,
.lema-single-product-page .lema-single-product__content-inner {
  padding: 1.5rem;
}

.lema-single-product-page .lema-single-product__copy h2 {
  font-size: clamp(1.22rem, 1.42vw, 1.58rem);
  line-height: 1.2;
}

.lema-single-product-page .lema-single-product__copy {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0.45rem 0 0.25rem 1rem;
}

.lema-single-product-page .lema-single-product__summary {
  font-size: 0.94rem;
  line-height: 1.7;
}

.lema-single-product-page .lema-single-product__summary p,
.lema-single-product-page .lema-single-product__summary ul,
.lema-single-product-page .lema-single-product__summary ol {
  margin: 0.75rem 0 0;
}

.lema-single-product-page .lema-single-product__summary p:first-child,
.lema-single-product-page .lema-single-product__summary ul:first-child,
.lema-single-product-page .lema-single-product__summary ol:first-child {
  margin-top: 0;
}

.lema-single-product-page .lema-single-product__summary ul,
.lema-single-product-page .lema-single-product__summary ol {
  padding-left: 1.2rem;
}

.lema-single-product-page .lema-single-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lema-single-product-page .lema-single-product__gallery-stage {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(8, 35, 63, 0.12);
}

.lema-single-product-page .lema-single-product__gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  object-fit: contain;
}

.lema-single-product-page .lema-single-product__gallery-nav {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 0.65rem;
}

.lema-single-product-page .lema-single-product__gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.lema-single-product-page .lema-single-product__gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.lema-single-product-page .lema-single-product__gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(8, 35, 63, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #08233f;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.lema-single-product-page .lema-single-product__gallery-arrow span {
  font-size: 1.3rem;
  line-height: 1;
}

.lema-single-product-page .lema-single-product__gallery-arrow:hover,
.lema-single-product-page .lema-single-product__gallery-arrow:focus-visible {
  border-color: #ef8c1d;
  color: #ef8c1d;
  outline: 0;
}

.lema-single-product-page .lema-single-product__gallery-arrow:disabled {
  opacity: 0.36;
  cursor: default;
}

.lema-single-product-page .lema-single-product__gallery-thumb {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 0.2rem;
  background: transparent;
  border: 1px solid rgba(8, 35, 63, 0.16);
  border-radius: 0.3rem;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lema-single-product-page .lema-single-product__gallery-thumb:hover,
.lema-single-product-page .lema-single-product__gallery-thumb:focus-visible,
.lema-single-product-page .lema-single-product__gallery-thumb.is-active {
  border-color: #ef8c1d;
  box-shadow: 0 0 0 1px rgba(239, 140, 29, 0.22);
  outline: 0;
}

.lema-single-product-page .lema-single-product__gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.lema-single-product-page .lema-product-term-links {
  gap: 0.55rem;
  margin-top: 1rem;
}

.lema-single-product-page .lema-product-term-links a {
  min-height: 2.2rem;
  padding: 0.38rem 0.8rem;
  font-size: 0.78rem;
}

.lema-single-product-page .lema-single-product__copy .lema-button {
  margin-top: 1.15rem;
  min-height: 2.8rem;
  padding: 0 1.25rem;
  font-size: 0.9rem;
}

.lema-single-product-page .lema-products-main__head {
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.lema-single-product-page .lema-products-main__head h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.lema-single-product-page .lema-products-main__head > p {
  max-width: 24rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

.lema-single-product-page .lema-single-product__wysiwyg {
  font-size: 0.94rem;
  line-height: 1.78;
}

.lema-single-product-page .lema-single-product__wysiwyg h2 {
  position: relative;
  margin: 0 0 1.6rem;
  padding-bottom: 1rem;
  color: #08233f;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.18;
}

.lema-single-product-page .lema-single-product__wysiwyg h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: var(--lema-orange);
}

.lema-single-product-page .lema-single-product__wysiwyg h2:not(:first-child) {
  margin-top: 1.6rem;
}

.lema-single-product-page .lema-single-product__wysiwyg h3 {
  margin: 0 0 1rem;
  color: #08233f;
  font-size: clamp(1.18rem, 1.5vw, 1.56rem);
  font-weight: 500;
  line-height: 1.25;
}

.lema-single-product-page .lema-single-product__wysiwyg table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
}

.lema-single-product-page .lema-single-product__wysiwyg img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
}

.lema-single-product-page .lema-single-product__wysiwyg ul,
.lema-single-product-page .lema-single-product__wysiwyg ol {
  margin: 0.75rem 0;
}

.lema-single-product-page .lema-single-product__related .lema-container {
  display: grid;
  gap: 2rem;
}

.lema-single-product-page .lema-single-product__related .lema-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: start;
  gap: 1.25rem;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile {
  display: flex;
  flex-direction: column;
  min-height: 550px;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(6, 27, 49, 0.05);
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__image {
  flex: 0 0 318px;
  min-height: 318px;
  max-height: 318px;
  background: #ffffff;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__image img {
  object-fit: contain;
  width: min(86%, 280px);
  height: min(86%, 280px);
  padding: 0.75rem;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem 1.25rem 1.35rem;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__body span {
  padding: 0.34rem 0.72rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__body h3 {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.42;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.lema-single-product-page .lema-single-product__related .lema-product-tile__link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.lema-search-results {
  padding: 4.6rem 0 5.2rem;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 42%, #eef3f8 100%);
}

.lema-search-results__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid rgba(8, 35, 63, 0.08);
  box-shadow: 0 18px 42px rgba(6, 27, 49, 0.06);
}

.lema-search-results__form input {
  min-width: 0;
  height: 3.2rem;
  border: 1px solid rgba(8, 35, 63, 0.12);
  padding: 0 1rem;
  color: #1a1a1a;
  background: #fff;
  font: inherit;
  outline: none;
}

.lema-search-results__form input:focus {
  border-color: var(--lema-orange);
  box-shadow: 0 0 0 3px rgba(242, 124, 0, 0.12);
}

.lema-search-results__form button {
  min-width: 8.6rem;
  height: 3.2rem;
  border: 0;
  padding: 0 1.4rem;
  color: #fff;
  background: var(--lema-orange);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lema-search-results__section {
  margin-top: 2.2rem;
}

.lema-search-results__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lema-search-results__section-head h3,
.lema-search-results__empty h3 {
  margin: 0;
  color: #08233f;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  line-height: 1.16;
}

.lema-search-results__section-head span {
  flex: 0 0 auto;
  color: #6c7a88;
  font-size: 0.9rem;
  font-weight: 700;
}

.lema-search-results .lema-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lema-search-results .lema-product-tile {
  display: flex;
  flex-direction: column;
}

.lema-search-results .lema-product-tile__image {
  min-height: 210px;
}

.lema-search-results .lema-product-tile__image img {
  object-fit: contain;
  width: min(76%, 180px);
  height: min(76%, 180px);
  padding: 0.75rem;
}

.lema-search-results .lema-product-tile__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.lema-search-results .lema-product-tile__link {
  margin-top: auto;
  padding-top: 0.85rem;
}

.lema-search-results__empty {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(8, 35, 63, 0.08);
  box-shadow: 0 18px 42px rgba(6, 27, 49, 0.06);
}

.lema-search-results__empty p {
  margin: 0.7rem 0 0;
  color: #56697b;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .lema-products-overview__grid,
  .lema-product-family-spotlight__grid,
  .lema-single-product__grid,
  .lema-products-catalog__layout {
    grid-template-columns: 1fr;
  }

  .lema-products-sidebar {
    position: static;
  }

  .lema-product-taxonomy-page .lema-products-catalog__layout .lema-products-sidebar,
  .lema-product-taxonomy-page .lema-products-catalog__layout .lema-products-sidebar__panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

  .lema-single-product-page .lema-single-product__grid {
    grid-template-columns: 1fr;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar {
    width: min(var(--lema-container), calc(100% - 48px));
    grid-template-columns: 1fr;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar {
    grid-row: auto;
    max-height: none;
    overflow: visible;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar__panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .lema-single-product-page .lema-single-product__content-inner,
  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-single-product__content-inner {
    grid-column: 1 / -1;
  }

  .lema-single-product-page .lema-single-product__copy {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .lema-products-overview,
  .lema-product-family-spotlight,
  .lema-single-product,
  .lema-single-product__content {
    padding: 4rem 0;
  }

  .lema-products-catalog {
    padding-bottom: 4.5rem;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-catalog {
    padding-top: 1rem;
  }

  .lema-products-overview__stats,
  .lema-series-grid,
  .lema-products-grid {
    grid-template-columns: 1fr;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile {
    grid-template-columns: 1fr;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image {
    width: 100%;
    height: 220px;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 35, 63, 0.08);
    min-height: 220px;
  }

  .lema-products-overview__copy,
  .lema-products-overview__stats,
  .lema-product-family-spotlight__copy,
  .lema-single-product__copy,
  .lema-single-product__content-inner,
  .lema-products-main__section,
  .lema-products-sidebar__panel {
    padding: 1.5rem;
    border-radius: 1.35rem;
  }

  .lema-products-metric {
    min-height: 0;
  }

  .lema-single-product-page .lema-products-hero {
    min-height: 360px;
  }

  .lema-single-product-page .lema-products-hero__inner {
    min-height: 360px;
  }

  .lema-single-product-page .lema-single-product,
  .lema-single-product-page .lema-single-product__content {
    padding: 2.7rem 0;
  }

  .lema-single-product-page .lema-single-product__media {
    max-width: none;
  }

  .lema-single-product-page .lema-single-product__gallery-stage {
    min-height: 0;
  }

  .lema-single-product-page .lema-single-product__related .lema-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lema-search-results .lema-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lema-products-page:not(.lema-single-product-page) .lema-products-hero {
    min-height: 300px;
    background-position: 58% bottom;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-hero__inner {
    padding-top: 120px;
    gap: 10px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-hero__inner p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-hero__inner h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-breadcrumb {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-catalog {
    padding: 28px 0 44px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-catalog__layout {
    gap: 16px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-sidebar__panel,
  .lema-products-page:not(.lema-single-product-page) .lema-products-main__section {
    border-radius: 12px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-sidebar__panel {
    padding: 14px;
    box-shadow: 0 12px 28px rgba(6, 27, 49, .07);
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-sidebar__panel h2 {
    margin-bottom: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-sidebar__list {
    gap: 0;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link {
    padding: 11px 0;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link:first-child {
    padding-top: 2px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link__head {
    gap: 10px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link__title {
    font-size: 14px;
    line-height: 1.35;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link__toggle {
    width: 30px;
    height: 30px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link__children {
    gap: 8px;
    margin-top: 9px;
    padding: 4px 0 2px 10px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-family-link__children a {
    font-size: 13px;
    line-height: 1.45;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-main__section {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-main__head {
    margin-bottom: 12px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-main__head .lema-contact-kicker {
    font-size: 22px;
    line-height: 1.15;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-grid {
    gap: 14px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile {
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(6, 27, 49, .07);
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image {
    height: 190px;
    min-height: 190px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image img {
    width: 176px;
    height: 176px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__body {
    padding: 15px 16px 17px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__body span {
    padding: 5px 9px;
    font-size: 11px;
    line-height: 1.2;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__body h3 {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.32;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__body p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__link {
    margin-top: 11px;
    font-size: 13px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-pagination {
    gap: 8px;
    margin-top: 22px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-pagination .page-numbers {
    min-width: 38px;
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer {
    background-position: center;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer__grid,
  .lema-products-page:not(.lema-single-product-page) .lema-footer__bottom {
    display: none;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .lema-single-product-page .lema-single-product__related .lema-products-grid {
    grid-template-columns: 1fr;
  }

  .lema-search-results__form {
    grid-template-columns: 1fr;
  }

  .lema-search-results__section-head {
    align-items: start;
    flex-direction: column;
  }

  .lema-search-results .lema-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lema-products-overview__copy h2,
  .lema-product-family-spotlight__copy h2,
  .lema-single-product__copy h2 {
    font-size: 1.75rem;
  }

  .lema-single-product-page .lema-single-product__copy h2 {
    font-size: 1.28rem;
  }

  .lema-products-main__head h2 {
    font-size: 1.5rem;
  }

  .lema-products-metric strong {
    font-size: 2rem;
  }

  .lema-product-family-spotlight__media img,
  .lema-single-product__media img,
  .lema-series-card__image img,
  .lema-product-tile__image img {
    aspect-ratio: 4 / 3;
  }

  .lema-series-card__image img,
  .lema-product-tile__image img {
    width: min(58%, 180px);
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image img {
    width: 188px;
    height: 188px;
    max-height: none;
    object-fit: contain;
    padding: 0;
  }

  .lema-single-product-page .lema-contact-hero__inner h1 {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lema-single-product-page .lema-single-product__media,
  .lema-single-product-page .lema-single-product__copy,
  .lema-single-product-page .lema-single-product__content-inner {
    padding: 1.2rem;
  }

  .lema-single-product-page .lema-single-product__media,
  .lema-single-product-page .lema-single-product__copy {
    padding: 0;
  }

  .lema-single-product-page .lema-single-product__gallery-stage {
    width: min(100%, 282px);
    min-height: 0;
    padding: 0.8rem;
  }

  .lema-single-product-page .lema-single-product__gallery-stage img {
    width: 100%;
    height: 100%;
  }

  .lema-single-product-page .lema-single-product__gallery-thumbs {
    gap: 0.5rem;
  }

  .lema-single-product-page .lema-single-product__gallery-nav {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 0.45rem;
  }

  .lema-single-product-page .lema-single-product__gallery-arrow {
    width: 30px;
    height: 30px;
  }

  .lema-single-product-page .lema-single-product__gallery-thumb {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 420px) {
  .lema-products-page:not(.lema-single-product-page) .lema-products-hero {
    min-height: 282px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-hero__inner h1 {
    font-size: 30px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-products-catalog {
    padding-top: 24px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image {
    height: 176px;
    min-height: 176px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__image img {
    width: 164px;
    height: 164px;
  }

  .lema-products-page:not(.lema-single-product-page) .lema-product-tile__body h3 {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .lema-single-product-page .lema-products-hero {
    min-height: 304px;
    background-position: 58% bottom;
  }

  .lema-single-product-page .lema-products-hero__inner {
    width: min(var(--lema-container), calc(100% - 36px));
    min-height: 304px;
    padding-top: 78px;
    justify-content: center;
  }

  .lema-single-product-page .lema-contact-hero__inner h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.12;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .lema-single-product-page .lema-product-breadcrumb-bar {
    bottom: 16px;
  }

  .lema-single-product-page .lema-product-breadcrumb-bar .lema-breadcrumb {
    display: -webkit-box;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .lema-single-product-page .lema-single-product,
  .lema-single-product-page .lema-single-product__content {
    padding: 28px 0 36px;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar {
    width: min(var(--lema-container), calc(100% - 36px));
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-single-product__media,
  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-single-product__copy,
  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar,
  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-single-product__content-inner {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .lema-single-product-page .lema-single-product__media {
    order: 1;
  }

  .lema-single-product-page .lema-single-product__copy {
    order: 2;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar .lema-products-sidebar {
    display: none;
  }

  .lema-single-product-page .lema-single-product__content-inner {
    order: 3;
  }

  .lema-single-product-page .lema-products-sidebar__panel {
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(6, 27, 49, .07);
  }

  .lema-single-product-page .lema-products-sidebar__panel h2 {
    margin-bottom: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  .lema-single-product-page .lema-products-sidebar__list {
    gap: 0;
  }

  .lema-single-product-page .lema-products-family-link {
    padding: 11px 0;
  }

  .lema-single-product-page .lema-products-family-link:first-child {
    padding-top: 2px;
  }

  .lema-single-product-page .lema-products-family-link__title {
    font-size: 14px;
    line-height: 1.35;
  }

  .lema-single-product-page .lema-products-family-link__toggle {
    width: 30px;
    height: 30px;
  }

  .lema-single-product-page .lema-products-family-link__children {
    gap: 8px;
    margin-top: 9px;
    padding: 4px 0 2px 10px;
  }

  .lema-single-product-page .lema-products-family-link__children a {
    font-size: 13px;
    line-height: 1.45;
  }

  .lema-single-product-page .lema-single-product__gallery {
    gap: 12px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .lema-single-product-page .lema-single-product__gallery-stage {
    width: min(100%, 336px);
    max-width: 100%;
    padding: 12px;
    border-radius: 12px;
  }

  .lema-single-product-page .lema-single-product__gallery-nav {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lema-single-product-page .lema-single-product__gallery-thumbs {
    min-width: 0;
    max-width: 100%;
  }

  .lema-single-product-page .lema-single-product__gallery-arrow {
    width: 30px;
    height: 30px;
  }

  .lema-single-product-page .lema-single-product__gallery-thumb {
    width: 66px;
    height: 66px;
  }

  .lema-single-product-page .lema-single-product__copy {
    padding: 2px 0 0;
  }

  .lema-single-product-page .lema-single-product__copy h2 {
    font-size: 22px;
    line-height: 1.24;
  }

  .lema-single-product-page .lema-single-product__summary {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .lema-single-product-page .lema-single-product__summary p,
  .lema-single-product-page .lema-single-product__summary ul,
  .lema-single-product-page .lema-single-product__summary ol {
    margin-top: 10px;
  }

  .lema-single-product-page .lema-single-product__copy .lema-button {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    justify-content: center;
  }

  .lema-single-product-page .lema-single-product__content-inner {
    padding: 18px;
    border-radius: 12px;
    overflow: hidden;
  }

  .lema-single-product-page .lema-single-product__wysiwyg {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
    overflow: hidden;
  }

  .lema-single-product-page .lema-single-product__wysiwyg h2 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 22px;
    line-height: 1.22;
  }

  .lema-single-product-page .lema-single-product__wysiwyg h3 {
    font-size: 18px;
    line-height: 1.28;
  }

  .lema-single-product-page .lema-single-product__wysiwyg table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .lema-single-product-page .lema-single-product__related {
    padding: 0 0 42px;
  }

  .lema-single-product-page .lema-single-product__related .lema-container {
    gap: 14px;
  }

  .lema-single-product-page .lema-single-product__related .lema-products-main__head {
    margin-bottom: 0;
  }

  .lema-single-product-page .lema-single-product__related .lema-products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lema-single-product-page .lema-single-product__related .lema-product-tile {
    min-height: 0;
    border-radius: 12px;
  }

  .lema-single-product-page .lema-single-product__related .lema-product-tile__image {
    flex-basis: 176px;
    min-height: 176px;
    max-height: 176px;
  }

  .lema-single-product-page .lema-single-product__related .lema-product-tile__image img {
    width: 164px;
    height: 164px;
    padding: 0;
  }

  .lema-single-product-page .lema-single-product__related .lema-product-tile__body {
    padding: 15px 16px 17px;
  }

  .lema-single-product-page .lema-single-product__related .lema-product-tile__body h3 {
    font-size: 15px;
    line-height: 1.34;
  }

  .lema-single-product-page .lema-footer {
    background-position: center;
  }

  .lema-single-product-page .lema-footer__grid,
  .lema-single-product-page .lema-footer__bottom {
    display: none;
  }

  .lema-single-product-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-single-product-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-single-product-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-single-product-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-single-product-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .lema-single-product-page .lema-products-hero {
    min-height: 286px;
  }

  .lema-single-product-page .lema-products-hero__inner {
    min-height: 286px;
  }

  .lema-single-product-page .lema-contact-hero__inner h1 {
    font-size: 28px;
  }

  .lema-single-product-page .lema-single-product__grid.is-with-sidebar {
    width: min(var(--lema-container), calc(100% - 30px));
  }

  .lema-single-product-page .lema-single-product__gallery-stage {
    max-width: 100%;
  }

  .lema-single-product-page .lema-single-product__copy h2 {
    font-size: 20px;
  }

  .lema-single-product-page .lema-single-product__content-inner {
    padding: 16px;
  }
}

.lema-not-found-page .lema-not-found-hero {
  background-position: center 46%;
}

.lema-not-found-page .lema-not-found-hero::before {
  background: linear-gradient(90deg, rgba(11, 31, 55, .78), rgba(11, 31, 55, .42) 48%, rgba(255, 124, 23, .18));
}

.lema-not-found-page .lema-not-found-hero__inner h1 {
  font-size: clamp(72px, 10vw, 132px);
  line-height: .88;
}

.lema-not-found-content {
  padding: 82px 0 96px;
  background: linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}

.lema-not-found-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: start;
}

.lema-not-found-card,
.lema-not-found-links {
  border: 1px solid rgba(30, 55, 82, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 36, 62, .08);
}

.lema-not-found-card {
  padding: 42px;
}

.lema-not-found-code {
  margin: 0 0 8px;
  color: var(--lema-orange);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lema-not-found-card h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #102b4c;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.lema-not-found-card p:not(.lema-not-found-code) {
  max-width: 760px;
  margin: 0;
  color: #5d6f83;
  font-size: 17px;
  line-height: 1.78;
}

.lema-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.lema-not-found-actions .lema-button {
  min-width: 150px;
  justify-content: center;
}

.lema-not-found-links {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.lema-not-found-link {
  display: block;
  padding: 23px 26px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 55, 82, .08);
  transition: background .2s ease, color .2s ease;
}

.lema-not-found-link:last-child {
  border-bottom: 0;
}

.lema-not-found-link span {
  display: block;
  margin-bottom: 7px;
  color: #102b4c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.lema-not-found-link small {
  display: block;
  color: #6a7b8e;
  font-size: 14px;
  line-height: 1.55;
}

.lema-not-found-link:hover {
  background: rgba(255, 124, 23, .08);
}

.lema-not-found-link:hover span {
  color: var(--lema-orange);
}

@media (max-width: 760px) {
  .lema-home .lema-footer,
  .lema-page .lema-footer {
    background-position: center;
  }

  .lema-home .lema-footer__grid,
  .lema-home .lema-footer__bottom,
  .lema-page .lema-footer__grid,
  .lema-page .lema-footer__bottom {
    display: none;
  }

  .lema-home .lema-footer-mobile-simple,
  .lema-page .lema-footer-mobile-simple {
    display: block;
    padding: 42px 0 34px;
  }

  .lema-home .lema-footer-mobile-simple__brand img,
  .lema-page .lema-footer-mobile-simple__brand img {
    width: 156px;
    margin-bottom: 16px;
  }

  .lema-home .lema-footer-mobile-simple__brand p,
  .lema-page .lema-footer-mobile-simple__brand p {
    max-width: 100%;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.65;
  }

  .lema-home .lema-footer-mobile-simple__contact a,
  .lema-page .lema-footer-mobile-simple__contact a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .lema-home .lema-footer-mobile-simple__copyright,
  .lema-page .lema-footer-mobile-simple__copyright {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
  }

  .lema-not-found-page {
    overflow-x: hidden;
  }

  .lema-not-found-page .lema-not-found-hero {
    min-height: 300px;
    background-position: 58% center;
  }

  .lema-not-found-page .lema-not-found-hero::before {
    background: linear-gradient(90deg, rgba(11, 31, 55, .82), rgba(11, 31, 55, .48) 58%, rgba(255, 124, 23, .12));
  }

  .lema-not-found-page .lema-not-found-hero__inner {
    min-height: 300px;
    padding-top: 112px;
    padding-bottom: 34px;
    justify-content: center;
  }

  .lema-not-found-page .lema-not-found-hero__inner h1 {
    font-size: 72px;
    line-height: .9;
  }

  .lema-not-found-page .lema-not-found-hero__inner p {
    font-size: 13px;
    line-height: 1.25;
  }

  .lema-not-found-page .lema-breadcrumb {
    font-size: 13px;
    line-height: 1.45;
  }

  .lema-not-found-content {
    padding: 44px 0 58px;
  }

  .lema-not-found-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lema-not-found-card {
    padding: 24px 18px;
  }

  .lema-not-found-code {
    font-size: 14px;
  }

  .lema-not-found-card h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .lema-not-found-card p:not(.lema-not-found-code) {
    font-size: 15px;
    line-height: 1.72;
  }

  .lema-not-found-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .lema-not-found-actions .lema-button {
    width: 100%;
    min-height: 48px;
  }

  .lema-not-found-link {
    padding: 19px 18px;
  }

  .lema-not-found-link span {
    font-size: 16px;
  }

  .lema-not-found-link small {
    font-size: 13px;
  }

  .lema-news-single-page {
    overflow-x: hidden;
  }

  .lema-news-single-page .lema-news-detail-hero {
    min-height: 320px;
    background-position: 58% center;
  }

  .lema-news-single-page .lema-news-detail-hero .lema-news-hero__inner {
    min-height: 320px;
    padding-top: 112px;
    padding-bottom: 34px;
    justify-content: center;
  }

  .lema-news-single-page .lema-news-detail-hero .lema-news-hero__inner h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.24;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .lema-news-single-page .lema-news-detail-hero .lema-breadcrumb {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }

  .lema-news-single-page .lema-news-single {
    padding: 42px 0 54px;
  }

  .lema-news-single-page .lema-news-single__shell {
    gap: 28px;
  }

  .lema-news-single-page .lema-news-content-meta {
    flex-wrap: wrap;
    margin: 0 0 22px;
    gap: 8px;
  }

  .lema-news-single-page .lema-news-content-meta span,
  .lema-news-single-page .lema-news-content-meta time {
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .lema-news-single-page .lema-news-prose {
    overflow-wrap: anywhere;
  }

  .lema-news-single-page .lema-news-prose p,
  .lema-news-single-page .lema-news-prose li {
    font-size: 16px;
    line-height: 1.76;
  }

  .lema-news-single-page .lema-news-prose img,
  .lema-news-single-page .lema-news-prose table,
  .lema-news-single-page .lema-news-prose iframe {
    max-width: 100%;
  }

  .lema-news-single-page .lema-news-single__sidebar .lema-news-sidebar__panel {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .lema-news-single-page .lema-news-sidebar__story {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .lema-news-single-page .lema-news-sidebar__story-thumb,
  .lema-news-single-page .lema-news-sidebar__story-thumb img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 420px) {
  .lema-news-single-page .lema-news-detail-hero .lema-news-hero__inner h1 {
    font-size: 22px;
  }
}
