@font-face {
  font-family: "Manrope";
  src: url("../fonts/ui-fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --red: #e40000;
  --navy: #001523;
  --navy-2: #031d2e;
  --text: #172534;
  --muted: #6c7885;
  --line: #e8edf1;
  --soft: #f5f6f7;
  --white: #fff;
  --container: min(1800px, calc(100vw - 120px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
  letter-spacing: 0;
}

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

[href^="tel:"],
[href^="mailto:"],
input[type="tel"],
input[type="email"],
.product-code,
.sku,
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .footer-contact,
html[dir="rtl"] .footer-contact p,
html[dir="rtl"] .footer-contact a,
html[dir="rtl"] .mega-contact,
html[dir="rtl"] .mega-contact p,
html[dir="rtl"] .mega-contact > a {
  text-align: left;
}

html[dir="rtl"] .footer-contact p,
html[dir="rtl"] .footer-contact a,
html[dir="rtl"] .mega-contact p,
html[dir="rtl"] .mega-contact > a {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .footer-contact img {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .footer-contact .socials,
html[dir="rtl"] .mega-contact .socials {
  justify-content: flex-start;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  height: 92px;
  margin: 0 auto;
  color: var(--white);
  transition: height .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  width: 100%;
  height: 76px;
  padding: 0 max(60px, calc((100vw - 1800px) / 2));
  background: rgba(0, 16, 28, .86);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 285px;
  height: auto;
}

.menu-pill,
.language button,
.round-button {
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  background: rgba(0, 0, 0, .18);
  cursor: pointer;
}

.menu-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.language button {
  height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.language {
  position: relative;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 130px;
  padding: 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 17, 29, .96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: .2s ease;
}

.language:hover .language-menu,
.language:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a:focus {
  background: var(--red);
}

.round-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.round-button.red {
  border-color: var(--red);
  background: var(--red);
}

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  height: 100vh;
  height: 100dvh;
  padding: 34px 32px 34px;
  color: var(--white);
  background: #000;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .25s ease, transform .25s ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

.mega-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

.mega-brand {
  display: inline-grid;
  justify-self: start;
  gap: 8px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}

.mega-brand img {
  width: 430px;
  height: auto;
}

.mega-brand span {
  padding-left: 346px;
  margin-top: -8px;
}

.mega-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.mega-close .icon-close {
  font-size: 18px;
}

.mega-search {
  position: relative;
  justify-self: end;
  width: min(490px, 100%);
}

.mega-search span {
  position: absolute;
  top: 50%;
  left: 24px;
  color: var(--red);
  font-size: 25px;
  transform: translateY(-50%);
}

.mega-search input {
  width: 100%;
  height: 70px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 26px 0 82px;
  color: #747474;
  outline: 0;
}

.mega-content {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(300px, 1fr) minmax(210px, 320px) minmax(270px, 430px);
  gap: clamp(28px, 3.2vw, 64px);
  align-items: start;
  margin-top: clamp(105px, 22vh, 205px);
}

.mega-categories,
.mega-products,
.mega-pages,
.mega-contact {
  min-width: 0;
  min-height: 455px;
}

.mega-products,
.mega-pages,
.mega-contact {
  border-left: 1px solid rgba(255, 255, 255, .14);
  padding-left: 72px;
}

.mega-categories a,
.mega-products a,
.mega-pages a,
.mega-contact a {
  display: block;
}

.mega-categories a {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .55);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.mega-categories .is-active {
  color: var(--white);
}

.mega-categories .icon-arrow-trio-right {
  margin-left: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
}

.mega-products a {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, .74);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 500;
}

.mega-product-panel {
  display: none;
}

.mega-product-panel.is-active {
  display: block;
}

.mega-product-link {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.mega-product-link .icon-arrow-trio-right {
  display: inline-block;
  margin-left: 12px;
  color: var(--red);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.mega-product-link:hover,
.mega-product-link:focus {
  color: var(--red);
  transform: translateX(6px);
}

.mega-product-link:hover .icon-arrow-trio-right,
.mega-product-link:focus .icon-arrow-trio-right {
  opacity: 1;
  transform: translateX(0);
}

.mega-products .mega-all {
  margin-top: 36px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}

.mega-pages a {
  margin-bottom: 27px;
  font-size: 26px;
  font-weight: 800;
}

.mega-contact {
  text-align: center;
  color: rgba(255, 255, 255, .58);
}

.mega-contact h2 {
  max-width: 390px;
  margin: 0 auto 64px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.mega-contact p {
  max-width: 365px;
  margin: 0 auto 24px;
  font-size: 19px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.mega-contact > a {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, .62);
  font-size: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.mega-contact .socials {
  justify-content: center;
  margin-top: 56px;
}

@media (max-width: 1500px) {
  .mega-menu {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px 24px;
  }

  .mega-top {
    grid-template-columns: minmax(300px, 1fr) auto minmax(320px, 420px);
    gap: 26px;
  }

  .mega-brand img {
    width: 360px;
  }

  .mega-brand span {
    padding-left: 290px;
    font-size: 14px;
  }

  .mega-search {
    width: 100%;
  }

  .mega-content {
    grid-template-columns: minmax(220px, 260px) minmax(260px, 1fr) minmax(180px, 230px) minmax(240px, 300px);
    gap: clamp(22px, 2vw, 34px);
    margin-top: clamp(82px, 16vh, 140px);
  }

  .mega-products,
  .mega-pages,
  .mega-contact {
    padding-left: 38px;
  }

  .mega-categories a {
    font-size: 22px;
  }

  .mega-products a {
    font-size: 19px;
  }

  .mega-pages a {
    font-size: 22px;
  }

  .mega-contact h2 {
    font-size: 22px;
  }

  .mega-contact p {
    font-size: 16px;
  }

  .mega-contact > a {
    font-size: 20px;
  }
}

@media (max-width: 1450px) {
  .mega-top {
    grid-template-columns: minmax(250px, 1fr) auto minmax(280px, 390px);
    gap: 22px;
  }

  .mega-brand img {
    width: 320px;
  }

  .mega-brand span {
    padding-left: 258px;
    font-size: 13px;
  }

  .mega-search input {
    height: 60px;
  }

  .mega-content {
    grid-template-columns: minmax(210px, 250px) minmax(260px, 1fr) minmax(180px, 230px);
    gap: 28px;
    margin-top: clamp(58px, 10vh, 90px);
  }

  .mega-contact {
    grid-column: 1 / -1;
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 28px 0 0;
    text-align: left;
  }

  .mega-contact h2,
  .mega-contact p,
  .mega-contact > a {
    max-width: none;
    margin-inline: 0;
  }

  .mega-contact h2 {
    max-width: 560px;
    margin-bottom: 22px;
    font-size: 20px;
  }

  .mega-contact p {
    max-width: 640px;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .mega-contact > a {
    font-size: 18px;
  }

  .mega-contact .socials {
    justify-content: flex-start;
    margin-top: 22px;
  }
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 13, 23, .18), rgba(0, 13, 23, .18) 62%, var(--navy) 100%),
    rgba(0, 0, 0, .18);
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 748px;
  padding: 150px 24px 105px;
  text-align: center;
}

.hero-content p {
  margin: 0 0 12px;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 700;
}

.hero-content h1 {
  position: relative;
  margin: 0;
  padding-bottom: 44px;
  font-size: clamp(58px, 7.1vw, 136px);
  line-height: .9;
  font-weight: 800;
}

.hero-content h1::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 8px;
  background: var(--red);
}

.scroll-cue {
  position: absolute;
  bottom: 92px;
  left: 14%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
}

.after-hero {
  padding-top: 54px;
  background: linear-gradient(180deg, #021120 0 430px, #f8f8f8 430px 100%);
}

.section-card,
.products-panel {
  width: var(--container);
  margin-inline: auto;
  border-radius: 38px;
}

.about-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  min-height: 760px;
  margin-top: 0;
  padding: 180px 190px 145px;
  overflow: hidden;
  background: var(--white);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../images/line.svg") center / 100% 100% no-repeat,
    url("../images/pages/bg-about-us.svg") 50% 52% / 62% no-repeat;
  opacity: .46;
}

.about-copy,
.about-mark {
  position: relative;
}

.eyebrow {
  display: block;
  margin-bottom: 66px;
  color: #98a3ad;
  font-size: 22px;
  font-weight: 700;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 130px;
  color: #071827;
  font-size: 28px;
  line-height: 1.55;
}

.text-link,
.product-card a,
.catalog-card a,
.all-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-mark {
  align-self: center;
  color: var(--red);
}

.about-mark p {
  max-width: 520px;
  margin: 0 0 36px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
}

.about-mark strong {
  display: block;
  font-size: clamp(96px, 8.8vw, 168px);
  line-height: .82;
}

.products-panel {
  position: relative;
  margin-top: 0;
  padding: 92px 0 128px;
  overflow: hidden;
  color: var(--white);
  background: #021120;
}

.products-panel::after {
  content: none;
}

.lottie-decor {
  overflow: hidden;
}

.lottie-decor svg {
  position: relative;
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.lottie-decor canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.waves-lottie {
  position: absolute;
  right: -120px;
  top: 92px;
  z-index: 1;
  width: 1120px;
  height: 720px;
  opacity: .9;
  pointer-events: none;
}

.products-star {
  position: absolute;
  top: -12px;
  right: -255px;
  z-index: 1;
  max-width: none;
  opacity: .22;
  pointer-events: none;
}

.panel-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 0 190px 58px;
}

.panel-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.12;
}

.slider-controls {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.product-track {
  position: relative;
  z-index: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 610px;
  gap: 30px;
  padding: 0 190px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  min-height: 320px;
  padding: 54px 44px;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  scroll-snap-align: start;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  order: 2;
}

.product-card h3 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 27px;
}

.product-card p {
  min-height: 78px;
  margin: 0 0 58px;
  color: #7b8792;
  font-size: 16px;
  line-height: 1.55;
}

.all-link {
  position: relative;
  z-index: 3;
  display: block;
  margin-right: 190px;
  text-align: right;
  color: var(--white);
}

.search-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  width: min(1400px, calc(100vw - 200px));
  min-height: 160px;
  margin: -60px auto 94px;
  padding: 38px 76px;
  border-radius: 16px;
  color: var(--white);
  background: var(--red);
}

.search-band h2 {
  margin: 0 0 8px;
  font-size: 31px;
  line-height: 1.1;
}

.search-band p {
  max-width: 520px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.product-search {
  position: relative;
}

.product-search span {
  position: absolute;
  left: 24px;
  top: 50%;
  color: var(--red);
  transform: translateY(-50%);
}

.product-search input {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px 0 62px;
  outline: 0;
}

.why {
  position: relative;
  z-index: 4;
  margin-bottom: -168px;
  padding: 95px 190px 55px;
  background: var(--white);
}

.why-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.dots-field {
  width: 220px;
  height: 150px;
  margin: 8px auto 0;
}

.why-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
}

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

.feature-grid article {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 36px 68px 74px;
  text-align: center;
  overflow: hidden;
}

.feature-grid article + article {
  border-left: 1px solid var(--line);
}

.feature-grid span {
  color: var(--navy);
  font-size: 48px;
  transition: transform .28s ease, color .28s ease;
}

.feature-grid h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  transition: transform .28s ease;
}

.feature-grid p {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(360px, calc(100% - 72px));
  max-width: 360px;
  margin: 0;
  overflow: hidden;
  color: #8b96a1;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity .28s ease, transform .28s ease;
}

.feature-grid article:hover span,
.feature-grid article:focus-within span {
  color: #8d98a2;
  transform: translateY(-18px);
}

.feature-grid article:hover h3,
.feature-grid article:focus-within h3 {
  transform: translateY(-12px);
}

.feature-grid article:hover p,
.feature-grid article:focus-within p {
  opacity: 1;
  transform: translate(-50%, 0);
}

.road-banner {
  position: relative;
  min-height: 660px;
  margin-top: 0;
  color: var(--white);
  overflow: hidden;
}

.road-banner img {
  width: 100%;
  height: 760px;
  object-fit: cover;
}

.road-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 62%);
}

.road-copy {
  position: absolute;
  z-index: 1;
  left: max(70px, calc((100vw - 1400px) / 2));
  bottom: 145px;
}

.road-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 52px);
}

.road-copy p {
  margin: 0;
  font-size: 17px;
}

.road-banner strong {
  position: absolute;
  z-index: 1;
  right: 18%;
  bottom: 105px;
  color: var(--red);
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(1400px, calc(100vw - 200px));
  margin: 110px auto 42px;
}

.request-card,
.catalog-card {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
}

.request-card {
  padding: 86px 62px;
  background: var(--white);
}

.corner-icon {
  position: absolute;
  top: 0;
  right: 70px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 92px;
  color: var(--white);
  background: var(--red);
  font-size: 38px;
}

.request-card h2,
.catalog-card h2 {
  margin: 0 0 24px;
  font-size: 28px;
}

.request-card p {
  max-width: 470px;
  margin: 0 0 52px;
  color: #6f7a85;
  line-height: 1.65;
}

.mini-products {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  opacity: .75;
}

.mini-products img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.catalog-card {
  color: var(--white);
  background: var(--navy);
}

.catalog-card > img {
  position: absolute;
  top: 74px;
  right: 38px;
  width: min(50%, 460px);
  height: auto;
  max-height: 310px;
  object-fit: contain;
}

.catalog-card > div {
  position: absolute;
  inset: 78px auto 48px 62px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

.catalog-card p {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.catalog-card h2 {
  margin-top: auto;
}

.news-strip {
  display: grid;
  grid-template-columns: 260px 1fr auto auto;
  gap: 36px;
  align-items: center;
  width: min(1400px, calc(100vw - 200px));
  min-height: 108px;
  margin: 0 auto 60px;
  padding: 12px 42px 12px 16px;
  border-radius: 999px;
  background: var(--white);
}

.news-strip img {
  width: 240px;
  height: 76px;
  object-fit: cover;
  border-radius: 999px;
}

.news-strip time {
  color: #7b8792;
  font-size: 12px;
  font-weight: 800;
}

.news-strip h2 {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.news-strip .round-button {
  border-color: var(--line);
  color: var(--muted);
  background: var(--white);
}

.content-block {
  margin-bottom: 0;
  padding: 72px 190px 96px;
  background: var(--white);
  border-radius: 38px 38px 0 0;
}

.content-block h2,
.content-block h3 {
  margin: 0 0 22px;
}

.content-block p {
  max-width: 1280px;
  margin: 0 0 36px;
  color: #5b6875;
  font-size: 15px;
  line-height: 1.9;
}

.site-footer {
  padding: 105px max(250px, calc((100vw - 1400px) / 2)) 54px;
  color: var(--white);
  background: var(--navy);
  border-radius: 80px 80px 0 0;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.05;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.socials a::before {
  width: auto;
  margin: 0;
  line-height: 1;
}

.socials .icon-social-youtube::before {
  content: "";
  width: 20px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: initial;
  transform: none;
}

.socials .icon-social-youtube::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-34%, -50%);
}

.socials .whatsapp {
  background: #12c44f;
}

.floating-whatsapp {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: var(--white);
  background: #12c44f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp::before {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 32px;
  padding: 70px 0;
  align-items: start;
}

.footer-contact {
  grid-column: span 6;
}

.footer-grid > div:not(.footer-contact) {
  grid-column: span 2;
}

.footer-grid img {
  width: 190px;
  margin-bottom: 42px;
}

.footer-grid h3 {
  margin: 0 0 22px;
  color: #afbdc9;
  font-size: 13px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  max-width: 360px;
  margin: 0 0 12px;
  color: #e0e8ee;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact a {
  font-size: 19px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #c6d0d8;
  font-size: 12px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 16, 28, .96);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-close {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
}

.search-overlay form {
  position: relative;
  width: min(880px, 100%);
}

.search-overlay span {
  position: absolute;
  left: 30px;
  top: 50%;
  color: var(--red);
  font-size: 24px;
  transform: translateY(-50%);
}

.search-overlay input {
  width: 100%;
  height: 86px;
  border: 0;
  border-radius: 10px;
  padding: 0 34px 0 78px;
  font-size: 26px;
  outline: 0;
}

.subpage {
  background: #f8f8f8;
}

.page-hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  color: var(--white);
  background: #021120;
}

.page-hero-waves {
  position: absolute;
  top: -120px;
  right: -230px;
  z-index: 0;
  width: 1120px;
  height: 650px;
  opacity: 1;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: var(--container);
  min-height: 360px;
  margin: 0 auto;
  padding-top: 160px;
}

.page-hero h1 {
  margin: 0 0 72px 190px;
  font-size: clamp(42px, 3.5vw, 64px);
  line-height: 1;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  margin: 0 190px 78px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
}

.news-subpage .breadcrumb {
  margin-bottom: 58px;
}

.news-detail-subpage .page-hero h1 {
  max-width: 930px;
  margin-left: 150px;
  margin-bottom: 105px;
  font-size: clamp(38px, 3.05vw, 58px);
  line-height: 1.08;
}

.news-detail-subpage .breadcrumb {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 620px;
  margin-bottom: 108px;
  line-height: 1.45;
  text-align: right;
}

.contact-subpage .page-hero-inner {
  min-height: 300px;
}

.contact-subpage .page-hero h1 {
  margin-left: 150px;
}

.product-detail-subpage .page-hero h1 {
  position: absolute;
  top: 150px;
  left: 106px;
  margin: 0;
  max-width: none;
  font-size: clamp(36px, 2.65vw, 50px);
  white-space: nowrap;
}

.product-detail-subpage .page-hero {
  min-height: 488px;
}

.product-detail-subpage .page-hero-waves {
  top: -85px;
  right: -240px;
}

.product-detail-subpage .page-hero-inner {
  min-height: 320px;
  padding-top: 26px;
}

.product-detail-subpage .breadcrumb {
  position: absolute;
  top: 196px;
  right: 126px;
  margin: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 8px;
}

.product-detail-subpage .breadcrumb span,
.product-detail-subpage .breadcrumb a {
  white-space: nowrap;
}

.about-detail-card {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: -390px auto 0;
  padding: 118px 190px 0;
  border-radius: 38px;
  overflow: hidden;
  background: var(--white);
}

.about-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 630px;
  background: url("../images/line.svg") center top / 100% 100% no-repeat;
  opacity: .36;
}

.about-detail-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: start;
}

.about-detail-copy .lead {
  max-width: 760px;
  margin: 0 0 48px;
  color: #071827;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.about-detail-copy p:not(.lead) {
  max-width: 760px;
  margin: 0 0 36px;
  color: #3d4b58;
  font-size: 16px;
  line-height: 1.85;
}

.about-detail-mark {
  padding-top: 34px;
  color: var(--red);
}

.about-detail-mark p {
  max-width: 470px;
  margin: 0 0 30px;
  color: var(--red) !important;
  font-size: 26px !important;
  line-height: 1.45 !important;
  font-weight: 500;
}

.about-detail-mark strong {
  display: block;
  font-size: clamp(92px, 8vw, 150px);
  line-height: .82;
  font-weight: 800;
}

.factory-photo {
  position: relative;
  z-index: 1;
  width: calc(100% + 380px);
  max-width: none;
  height: 800px;
  margin: 84px -190px 0;
  object-fit: cover;
  object-position: center;
}

.about-features {
  position: relative;
  z-index: 3;
  width: min(1460px, calc(100vw - 300px));
  margin: -150px auto 80px;
  padding: 74px 98px 55px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
}

.about-features .why-head {
  margin-bottom: 58px;
}

.about-features .eyebrow {
  margin-bottom: 34px;
  font-size: 16px;
}

.about-features .why-head h2 {
  max-width: 740px;
  font-size: 32px;
}

.about-features .feature-grid article {
  min-height: 205px;
}

.news-list-card {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -410px auto 92px;
  padding: 96px 185px 112px;
  border-radius: 30px;
  background: var(--white);
}

.news-list-card::before,
.news-list-card::after {
  display: none;
}

.news-list-item {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 22px;
  min-height: 150px;
  margin-bottom: 20px;
  padding: 28px 54px 28px 32px;
  border: 1px solid #dfe5ea;
  border-radius: 999px;
  background: var(--white);
}

.news-list-item:last-child {
  margin-bottom: 0;
}

.news-list-image {
  overflow: hidden;
  border-radius: 999px;
}

.news-list-image img {
  width: 250px;
  height: 90px;
  object-fit: cover;
}

.news-list-copy time {
  display: block;
  margin-bottom: 12px;
  color: #6f7b86;
  font-size: 12px;
  font-weight: 800;
}

.news-list-copy h2 {
  max-width: 735px;
  margin: 0;
  color: #172534;
  font-size: 21px;
  line-height: 1.35;
}

.news-list-copy a {
  transition: color .2s ease;
}

.news-list-copy a:hover {
  color: var(--red);
}

.news-list-link {
  justify-self: end;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.news-detail-card {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -330px auto 92px;
  padding: 56px 180px 86px;
  border-radius: 30px;
  background: var(--white);
}

.news-detail-head {
  display: grid;
  grid-template-columns: minmax(420px, 675px) minmax(360px, 1fr);
  gap: 140px;
  align-items: center;
  margin-bottom: 105px;
}

.news-detail-head img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
}

.news-detail-title time {
  display: block;
  margin-bottom: 54px;
  color: #6f7b86;
  font-size: 13px;
  font-weight: 900;
}

.news-detail-title h2 {
  max-width: 660px;
  margin: 0;
  color: #071827;
  font-size: clamp(38px, 2.65vw, 52px);
  line-height: 1.16;
  font-weight: 500;
}

.news-detail-content {
  max-width: 1330px;
  color: #263442;
  font-size: 18px;
  line-height: 1.75;
}

.news-detail-content p {
  margin: 0 0 34px;
}

.news-detail-content p:last-child {
  margin-bottom: 0;
}

.news-detail-content strong {
  color: #172534;
  font-weight: 900;
}

.catalog-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  min-height: 650px;
  margin: -410px auto 92px;
  padding: 98px 110px;
  border-radius: 30px;
  background: var(--white);
}

.catalog-panel .catalog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  align-items: center;
  gap: 54px;
  width: min(900px, 100%);
  min-height: 430px;
  padding: 48px 58px;
  border: 1px solid #dfe5ea;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.catalog-panel .catalog-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  max-width: none;
}

.catalog-panel .catalog-card h2 {
  margin: 0 0 22px;
  color: #071827;
  font-size: 31px;
  line-height: 1.1;
}

.catalog-panel .catalog-card p {
  margin: 0 0 28px;
  color: #6f7b86;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.catalog-panel .catalog-card img {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: min(100%, 330px);
  height: auto;
  margin: 0;
}

.catalog-panel .catalog-card a {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.products-group-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -410px auto 92px;
  padding: 88px 155px 96px;
  border-radius: 30px;
  background: var(--white);
}

.products-group-intro {
  max-width: 840px;
  margin-bottom: 88px;
}

.products-group-intro h2 {
  margin: 0;
  color: #071827;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

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

.product-group-card {
  min-height: 445px;
  padding: 38px 38px 36px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .055);
  transition: transform .24s ease, box-shadow .24s ease;
}

.product-group-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, .09);
  transform: translateY(-5px);
}

.product-group-card img {
  width: 100%;
  height: 205px;
  margin-bottom: 38px;
  object-fit: contain;
}

.product-group-card h3 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 21px;
  line-height: 1.2;
}

.product-group-card p {
  max-width: 285px;
  min-height: 52px;
  margin: 0 0 34px;
  color: #7b858f;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.product-group-card a {
  color: #071827;
  font-size: 12px;
  font-weight: 900;
  transition: color .2s ease;
}

.product-group-card a:hover,
.product-group-card a:focus {
  color: var(--red);
}

.products-search-box {
  grid-column: span 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 445px;
  padding: 40px;
  border-radius: 14px;
  background: #f5f5f5;
  text-align: center;
}

.products-search-box h3 {
  margin: 0 0 28px;
  color: #172534;
  font-size: 27px;
  line-height: 1.2;
}

.products-search-box > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  width: min(520px, 100%);
  height: 60px;
  margin-bottom: 24px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--white);
}

.products-search-box > div span {
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 21px;
  border-right: 1px solid #edf0f2;
}

.products-search-box input {
  width: 100%;
  border: 0;
  padding: 0 22px;
  color: #172534;
  font-size: 13px;
  outline: none;
}

.products-search-box p {
  max-width: 560px;
  margin: 0;
  color: #586572;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.product-listing-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -410px auto 92px;
  padding: 105px 155px 96px;
  border-radius: 30px;
  background: var(--white);
}

.product-listing-head {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
  margin-bottom: 74px;
}

.product-listing-head h2 {
  margin: 0;
  color: #071827;
  font-size: 52px;
  line-height: 1.05;
}

.product-listing-head p {
  margin: 0;
  color: #7b858f;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.product-listing-tools {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  padding-bottom: 24px;
  margin-bottom: 36px;
  border-bottom: 1px solid #dfe5ea;
}

.product-listing-tools button,
.product-listing-tools form {
  height: 58px;
  border: 1px solid #dfe5ea;
  background: var(--white);
}

.product-listing-tools button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: #52606d;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-dropdown {
  position: relative;
  z-index: 5;
}

.filter-dropdown > button {
  width: 100%;
}

.filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 340px;
  padding: 10px;
  border: 1px solid #dfe5ea;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 24, 39, .12);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.filter-dropdown.is-open .filter-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #52606d;
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
}

.filter-menu a:hover,
.filter-menu a:focus,
.filter-menu a.is-active {
  color: var(--red);
  background: #f7f8f9;
}

.filter-menu a.is-child {
  padding-left: 30px;
  font-weight: 700;
}

.product-listing-tools form {
  display: grid;
  grid-template-columns: 68px 1fr;
}

.product-listing-tools form span {
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 21px;
  border-right: 1px solid #edf0f2;
}

.product-listing-tools input {
  border: 0;
  padding: 0 24px;
  color: #172534;
  font-size: 13px;
  outline: none;
}

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

.search-results-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -470px auto 92px;
  padding: 105px 195px 92px;
  border-radius: 30px;
  background: var(--white);
}

.search-results-subpage .page-hero-inner {
  padding-top: 100px;
}

.search-results-subpage .page-hero h1 {
  position: absolute;
  top: 180px;
  left: 140px;
  margin: 0;
}

.search-results-subpage .breadcrumb {
  position: absolute;
  top: 242px;
  right: 200px;
  margin: 0;
}

.product-request-subpage .page-hero-inner {
  padding-top: 98px;
}

.product-request-subpage .page-hero h1 {
  position: absolute;
  top: 170px;
  left: 170px;
  margin: 0;
  font-size: clamp(42px, 3vw, 56px);
}

.product-request-subpage .breadcrumb {
  position: absolute;
  top: 225px;
  right: 210px;
  margin: 0;
}

.product-request-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -430px auto 92px;
  padding: 52px 170px 86px;
  border-radius: 30px;
  background: var(--white);
}

.product-request-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid #dfe5ea;
  border-radius: 14px;
}

.request-note {
  margin-bottom: 42px;
  padding: 18px 22px;
  border-radius: 6px;
  background: #f7f7f7;
  color: #172534;
  font-size: 13px;
  line-height: 1.55;
}

.request-note p {
  margin: 0;
}

.request-note strong {
  display: block;
  margin-top: 2px;
  font-weight: 900;
}

.standalone-request-form {
  display: grid;
  grid-template-columns: minmax(390px, 590px) minmax(420px, 520px);
  gap: 50px;
  align-items: start;
  justify-content: center;
}

.standalone-request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.standalone-request-grid input,
.standalone-request-grid select,
.standalone-request-grid textarea {
  min-height: 50px;
  width: 100%;
  border: 1px solid #dfe5ea;
  border-radius: 4px;
  padding: 0 16px;
  color: #172534;
  background: var(--white);
  font-size: 13px;
  outline: 0;
}

.standalone-request-grid textarea {
  min-height: 108px;
  padding-top: 15px;
  resize: vertical;
}

.standalone-request-grid textarea,
.standalone-request-grid select:nth-of-type(3),
.standalone-request-grid input[type="number"],
.standalone-request-grid textarea:last-child {
  grid-column: 1 / -1;
}

.standalone-request-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.standalone-request-bottom label {
  color: #6c7885;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.standalone-request-bottom input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.standalone-request-bottom button {
  min-width: 124px;
  height: 54px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.request-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  border-top: 1px solid #dfe5ea;
  border-bottom: 1px solid #dfe5ea;
}

.request-product-meta span {
  padding: 7px 14px;
  border-radius: 6px;
  color: #7c8792;
  background: #f6f7f8;
  font-size: 9px;
  font-weight: 900;
}

.request-product-meta strong {
  color: #172534;
  font-size: 12px;
}

.request-product-summary h2 {
  margin: 20px 0 4px;
  color: #071827;
  font-size: 32px;
  line-height: 1.05;
}

.request-product-summary p {
  margin: 0 0 18px;
  color: #172534;
  font-size: 12px;
  font-weight: 800;
}

.request-product-image {
  height: 390px;
  min-height: 390px;
  border: 1px solid #dfe5ea;
  border-radius: 5px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.request-product-image img {
  width: 80%;
  height: 320px;
  object-fit: contain;
}

.search-results-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 62px;
}

.search-results-head h2 {
  margin: 0;
  color: #071827;
  font-size: 52px;
  line-height: 1.05;
}

.search-results-head p {
  margin: 0;
  color: #7b858f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

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

.listed-product-card {
  min-height: 360px;
  padding: 30px 28px 28px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: var(--white);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.listed-product-card:hover {
  border-color: rgba(228, 0, 0, .28);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .075);
  transform: translateY(-4px);
}

.listed-product-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 17px;
  border-radius: 6px;
  color: #7c8792;
  background: #f6f7f8;
  font-size: 10px;
  font-weight: 900;
}

.listed-product-image {
  display: block;
}

.listed-product-image img {
  width: 100%;
  height: 205px;
  margin: 10px 0 22px;
  object-fit: contain;
}

.listed-product-card p {
  margin: 0 0 8px;
  color: #172534;
  font-size: 11px;
  font-weight: 800;
}

.listed-product-card h3 {
  margin: 0;
  color: #071827;
  font-size: 15px;
  line-height: 1.3;
}

.listed-product-card p a,
.listed-product-card h3 a {
  color: inherit;
  transition: color .2s ease;
}

.listed-product-card:hover h3 a,
.listed-product-card h3 a:hover,
.listed-product-card h3 a:focus {
  color: var(--red);
}

.product-detail-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 78px);
  max-width: 1720px;
  margin: -256px auto 92px;
  padding: 42px 127px 105px;
  border-radius: 30px;
  background: var(--white);
}

.product-detail-top {
  display: grid;
  grid-template-columns: minmax(520px, 590px) minmax(460px, 1fr);
  gap: 30px;
  align-items: stretch;
  padding-bottom: 42px;
  border-bottom: 1px solid #dfe5ea;
  justify-content: center;
}

.product-detail-media {
  width: 100%;
  height: auto;
  min-height: 420px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-detail-media img {
  width: 74%;
  height: 340px;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-detail-media:hover img {
  transform: scale(1.12);
}

.product-detail-summary {
  padding-left: 0;
}

.detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid #dfe5ea;
  border-bottom: 1px solid #dfe5ea;
}

.detail-meta span {
  padding: 9px 16px;
  border-radius: 6px;
  color: #7c8792;
  background: #f6f7f8;
  font-size: 10px;
  font-weight: 900;
}

.detail-meta strong {
  color: #172534;
  font-size: 14px;
}

.product-detail-summary h2 {
  margin: 32px 0 29px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dfe5ea;
  color: #071827;
  font-size: 36px;
}

.detail-gallery p {
  margin: 0 0 19px;
  color: #52606d;
  font-size: 15px;
  font-weight: 800;
}

.detail-gallery div {
  display: flex;
  gap: 16px;
  min-height: 144px;
}

.detail-gallery button {
  width: 88px;
  height: 88px;
  padding: 10px;
  border: 1px solid #dfe5ea;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.detail-gallery button.is-active {
  border-color: var(--red);
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-accordion {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid #dfe5ea;
  border-bottom: 1px solid #dfe5ea;
  background: var(--white);
  color: #7b858f;
  font-size: 16px;
  font-weight: 800;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 70px;
  border-bottom: 1px solid #dfe5ea;
}

.detail-actions > * {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid #dfe5ea;
  color: #7b858f;
  font-size: 16px;
  font-weight: 800;
}

.detail-actions > *:last-child {
  border-right: 0;
}

.detail-actions a {
  color: #172534;
}

.detail-actions .whatsapp-action {
  color: #00b84c;
}

.detail-actions a span {
  margin-right: 9px;
  font-size: 28px;
}

.product-detail-tabs {
  display: flex;
  gap: 0;
  margin: 34px 0 18px;
}

.product-detail-tabs button {
  min-width: 210px;
  height: 48px;
  padding: 0 44px 0 0;
  border: 0;
  border-right: 1px solid #dfe5ea;
  background: var(--white);
  color: #7b858f;
  text-align: left;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.product-detail-tabs button + button {
  padding-left: 44px;
}

.product-detail-tabs button.is-active {
  color: var(--red);
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.is-active {
  display: block;
}

.detail-table-card,
.product-request-form {
  padding: 48px 56px 58px;
  border: 1px solid #dfe5ea;
  border-radius: 14px;
}

.detail-table-card h3,
.product-request-form h3 {
  margin: 0 0 28px;
  color: #172534;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.detail-table-card h3 span,
.product-request-form h3 span {
  padding: 0 12px;
  color: #7b858f;
}

.detail-table-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.45;
}

.detail-table-card th {
  height: 56px;
  padding: 0 22px;
  color: var(--white);
  background: #001523;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
}

.detail-table-card td {
  padding: 18px 22px;
  color: #172534;
  font-weight: 700;
  border-bottom: 1px solid #edf1f4;
}

.detail-table-card tbody tr:last-child td {
  border-bottom: 0;
}

.detail-table-card table tr:first-child td {
  padding-top: 18px;
}

.detail-table-card table:not(:has(thead)) tr:first-child td {
  height: 56px;
  color: var(--white);
  background: #001523;
  font-size: 13px;
  font-weight: 900;
}

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

.request-grid input,
.request-grid select,
.request-grid textarea {
  min-height: 54px;
  border: 1px solid #dfe5ea;
  padding: 0 16px;
  color: #172534;
  background: var(--white);
  font-size: 14px;
}

.request-grid > :nth-child(3),
.request-grid > :nth-child(6) {
  grid-column: 3 / 5;
}

.request-grid > :nth-child(9) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.request-grid > :nth-child(10) {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.request-grid textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.request-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 42px;
  margin-top: -50px;
}

.request-bottom label {
  max-width: 410px;
  color: #6c7885;
  font-size: 13px;
  font-weight: 700;
}

.request-bottom input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.request-bottom button {
  min-width: 130px;
  height: 54px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.product-detail-copy {
  margin-top: 34px;
  color: #66727f;
}

.product-detail-copy h3 {
  margin: 0 0 22px;
  color: #6c6f73;
  font-size: 24px;
  font-weight: 900;
}

.product-detail-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

.contact-panel {
  position: relative;
  z-index: 2;
  width: calc(100vw - 100px);
  max-width: 1720px;
  margin: -470px auto 62px;
  padding: 78px 170px 70px;
  background: transparent;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 1315px;
  border-radius: 30px;
  background: var(--white);
}

.contact-info {
  max-width: 1240px;
  margin: 0 auto 84px;
}

.contact-info h2 {
  margin: 0 0 42px;
  color: #172534;
  font-size: 26px;
  font-weight: 900;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr;
  border-bottom: 1px solid #dfe5ea;
}

.contact-info-grid article {
  min-height: 145px;
  padding: 0 48px 38px 0;
  border-right: 1px solid #dfe5ea;
}

.contact-info-grid article + article {
  padding-left: 68px;
}

.contact-info-grid article:last-child {
  border-right: 0;
}

.contact-info-grid span {
  display: inline-block;
  margin-right: 10px;
  color: var(--red);
  font-size: 32px;
  vertical-align: middle;
}

.contact-info-grid h3 {
  display: inline-block;
  margin: 0 0 30px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.contact-info-grid p {
  max-width: 520px;
  margin: 0;
  color: #263442;
  font-size: 22px;
  line-height: 1.5;
}

.contact-info-grid a {
  color: inherit;
  transition: color .2s ease;
}

.contact-info-grid a:hover,
.contact-info-grid a:focus {
  color: var(--red);
}

.contact-social-row {
  display: grid;
  grid-template-columns: 1.45fr 1.6fr;
  border-bottom: 1px solid #dfe5ea;
}

.whatsapp-line,
.social-follow {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 95px;
}

.whatsapp-line {
  padding-right: 48px;
  border-right: 1px solid #dfe5ea;
}

.social-follow {
  grid-template-columns: 1fr auto;
  padding-left: 48px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  color: var(--white);
  background: #00c853;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus {
  background: #00b84c;
  box-shadow: 0 12px 28px rgba(0, 200, 83, .22);
  transform: translateY(-2px);
}

.whatsapp-line p,
.social-follow p {
  margin: 0;
  color: #52606d;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.social-follow .socials {
  justify-content: flex-end;
}

.social-follow .socials a {
  width: 38px;
  height: 38px;
  color: #7c8792;
  background: #f0f2f4;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.social-follow .socials a:hover,
.social-follow .socials a:focus {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.contact-map {
  position: relative;
  max-width: 1240px;
  height: 510px;
  margin: 0 auto 50px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(228, 0, 0, .14) 0 2px, transparent 3px),
    linear-gradient(28deg, transparent 0 48%, rgba(120, 130, 140, .28) 49% 50%, transparent 51%),
    linear-gradient(-12deg, transparent 0 42%, rgba(120, 130, 140, .23) 43% 44%, transparent 45%),
    linear-gradient(84deg, transparent 0 60%, rgba(120, 130, 140, .2) 61% 62%, transparent 63%),
    repeating-linear-gradient(8deg, rgba(0, 0, 0, .025) 0 2px, transparent 2px 58px),
    repeating-linear-gradient(92deg, rgba(0, 0, 0, .022) 0 2px, transparent 2px 72px),
    #f0f1f2;
}

.contact-map::before {
  content: "KONYA ORGANİZE SANAYİ BÖLGESİ";
  position: absolute;
  left: 52%;
  top: 37%;
  color: rgba(38, 52, 66, .32);
  font-size: 11px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.map-route {
  position: absolute;
  left: 50%;
  top: 43%;
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 15px;
  font-weight: 900;
  transform: translateX(-50%);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.map-route:hover,
.map-route:focus {
  background: #c90000;
  box-shadow: 0 14px 34px rgba(228, 0, 0, .24);
  transform: translateX(-50%) translateY(-2px);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

.contact-map::before,
.map-pin {
  display: none;
}

.contact-map .map-route {
  z-index: 2;
}

.contact-form {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 52px;
  border: 1px solid #dfe5ea;
  border-radius: 16px;
  background: var(--white);
}

.contact-form-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 42px;
}

.contact-form h2 {
  margin: 0;
  color: #071827;
  font-size: 39px;
  line-height: 1.1;
}

.contact-form-head p {
  max-width: 420px;
  margin: 0;
  color: #7a858f;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.form-alert {
  margin: -12px 0 30px;
  padding: 15px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.form-alert-success {
  color: #0b6b33;
  background: #e3f7e9;
}

.form-alert-error {
  color: #a01818;
  background: #ffe6e6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #e1e6eb;
  color: #172534;
  background: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 104px;
  padding-top: 16px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 0, 0, .08);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 360px;
  color: #6c7885;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--red);
}

.form-bottom button {
  min-width: 110px;
  height: 50px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.form-bottom button:hover,
.form-bottom button:focus {
  background: #c90000;
  box-shadow: 0 14px 34px rgba(228, 0, 0, .24);
  transform: translateY(-2px);
}

.production-card {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: -390px auto 0;
  padding-bottom: 92px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.production-video {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.production-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-video-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 14, 25, .48);
}

.production-video-copy {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 610px;
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}

.production-video-copy h2 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.05;
}

.production-video-copy p {
  max-width: 620px;
  margin: 0 0 150px;
  font-size: 17px;
  line-height: 1.5;
}

.production-video-copy button {
  height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: min(1400px, calc(100% - 380px));
  margin: 92px auto 100px;
}

.process-grid article {
  min-height: 285px;
  padding: 36px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid strong {
  display: grid;
  place-items: end center;
  width: 68px;
  height: 132px;
  margin-bottom: 72px;
  padding-bottom: 14px;
  color: var(--white);
  background: var(--red);
  font-size: 22px;
  font-weight: 500;
}

.process-grid h3 {
  max-width: 190px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.2;
}

.process-grid p {
  margin: 0;
  color: #7c8792;
  font-size: 13px;
  line-height: 1.55;
}

.production-statement {
  max-width: 1320px;
  margin: 0 auto;
  color: #172534;
  text-align: center;
  font-size: 27px;
  line-height: 1.55;
  font-weight: 800;
}

.facility-section {
  margin-top: -64px;
  padding: 245px 0 160px;
  color: var(--white);
  background: #021120;
  overflow: hidden;
}

.facility-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  width: var(--container);
  margin: 0 auto 74px;
}

.facility-slider {
  width: calc(100vw - ((100vw - var(--container)) / 2));
  margin-left: calc((100vw - var(--container)) / 2);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.facility-slider::-webkit-scrollbar {
  display: none;
}

.facility-slider.is-dragging {
  cursor: grabbing;
}

.facility-slider.is-dragging img {
  pointer-events: none;
}

.facility-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-right: 0;
}

.facility-track img {
  flex: 0 0 min(535px, calc(100vw - 72px));
  width: min(535px, calc(100vw - 72px));
  height: 450px;
  object-fit: cover;
  display: block;
}

.facility-head h2 {
  margin: 0;
  font-size: clamp(38px, 3vw, 58px);
  line-height: 1;
}

.facility-head p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.production-features {
  margin-top: -58px;
  margin-bottom: 64px;
}

.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: var(--container);
  min-height: 120px;
  margin: 0 auto 64px;
  padding: 0 0 0 190px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  overflow: hidden;
  position: relative;
}

.products-cta a {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.products-cta-visual {
  position: relative;
  align-self: stretch;
  width: min(42%, 520px);
  min-height: 120px;
  overflow: hidden;
}

.products-cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 0, 0, .72);
  mix-blend-mode: multiply;
}

.products-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1180px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .site-header {
    width: calc(100vw - 32px);
  }

  .about-card,
  .why,
  .content-block {
    padding-inline: 70px;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding-block: 84px 78px;
  }

  .about-copy p {
    max-width: 760px;
    margin-bottom: 56px;
    font-size: clamp(20px, 2.4vw, 28px);
  }

  .about-mark {
    align-self: start;
  }

  .about-mark p {
    max-width: 720px;
    font-size: clamp(19px, 2.2vw, 28px);
  }

  .about-mark strong {
    font-size: clamp(76px, 13vw, 132px);
  }

  .panel-head,
  .product-track {
    padding-inline: 70px;
  }

  .all-link {
    margin-right: 70px;
  }

  .after-hero {
    padding-top: 40px;
  }

  .product-track {
    grid-auto-columns: 540px;
  }

  .search-band,
  .quick-actions,
  .news-strip {
    width: calc(100vw - 80px);
  }

  .news-list-card {
    width: calc(100vw - 40px);
    padding: 70px;
  }

  .news-list-item {
    grid-template-columns: 210px minmax(0, 1fr) 140px;
    padding-right: 36px;
  }

  .news-list-image img {
    width: 210px;
  }

  .news-detail-card {
    width: calc(100vw - 40px);
    padding: 56px 70px 76px;
  }

  .news-detail-head {
    grid-template-columns: minmax(330px, 1fr) minmax(320px, 1fr);
    gap: 70px;
  }

  .news-detail-head img {
    height: 360px;
  }

  .catalog-panel {
    width: calc(100vw - 40px);
    padding: 70px;
  }

  .products-group-panel {
    width: calc(100vw - 40px);
    padding: 70px;
  }

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

  .product-listing-panel {
    width: calc(100vw - 40px);
    padding: 70px;
  }

  .product-listing-head,
  .product-listing-tools {
    grid-template-columns: 1fr;
  }

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

  .product-detail-panel {
    width: calc(100vw - 40px);
    padding: 70px;
  }

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

  .contact-panel {
    width: calc(100vw - 40px);
    padding: 70px;
  }

  .contact-info,
  .contact-map,
  .contact-form {
    max-width: none;
  }

  .contact-info-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .contact-info-grid article {
    padding-right: 28px;
  }

  .contact-info-grid article + article {
    padding-left: 32px;
  }

  .mega-menu {
    overflow-y: auto;
    padding: 28px;
  }

  .mega-top {
    grid-template-columns: 1fr auto;
  }

  .mega-search {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .mega-brand img {
    width: 310px;
  }

  .mega-brand span {
    padding-left: 252px;
    font-size: 13px;
  }

  .mega-content {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-top: 70px;
  }

  .mega-categories,
  .mega-products,
  .mega-pages,
  .mega-contact {
    min-height: 0;
  }

  .mega-products,
  .mega-pages,
  .mega-contact {
    padding-left: 40px;
  }

  .mega-contact {
    text-align: left;
  }

  .mega-contact h2,
  .mega-contact p {
    margin-inline: 0;
  }

  .mega-contact .socials {
    justify-content: flex-start;
  }

  .page-hero-inner {
    width: calc(100vw - 40px);
  }

  .page-hero h1 {
    margin-left: 70px;
  }

  .breadcrumb {
    margin-right: 70px;
  }

  .about-detail-card {
    width: calc(100vw - 40px);
    padding-inline: 70px;
  }

  .about-detail-copy {
    gap: 55px;
  }

  .factory-photo {
    width: calc(100% + 140px);
    height: 650px;
    margin-inline: -70px;
  }

  .about-features {
    width: calc(100vw - 120px);
    padding-inline: 70px;
  }

  .production-card {
    width: calc(100vw - 40px);
  }

  .process-grid {
    width: calc(100% - 140px);
  }

  .facility-section {
    padding-right: 0;
    padding-left: 0;
  }

  .products-cta {
    width: calc(100vw - 80px);
    padding-left: 70px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header {
    height: 76px;
  }

  .site-header.is-scrolled {
    padding-inline: 20px;
  }

  .brand img {
    width: 230px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content h1 {
    font-size: clamp(76px, 10vw, 118px);
  }

  .mega-menu {
    padding: 24px 22px;
  }

  .mega-top {
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 22px;
    align-items: start;
  }

  .mega-search {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .mega-brand img {
    width: 295px;
  }

  .mega-brand span {
    padding-left: 238px;
    font-size: 12px;
  }

  .mega-close {
    min-width: 120px;
    width: max-content;
    height: 44px;
    justify-self: center;
    font-size: 14px;
    border-width: 1px;
  }

  .mega-search input {
    height: 54px;
    padding-left: 62px;
    font-size: 13px;
  }

  .mega-search span {
    left: 20px;
    font-size: 21px;
  }

  .mega-content {
    grid-template-columns: minmax(210px, .9fr) minmax(300px, 1.1fr);
    gap: 28px;
    margin-top: clamp(44px, 7vh, 66px);
  }

  .mega-products,
  .mega-pages,
  .mega-contact {
    padding-left: 28px;
  }

  .mega-pages {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 28px 0 0;
  }

  .mega-contact {
    grid-column: 2;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 28px;
  }

  .mega-categories a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .mega-categories .icon-arrow-trio-right {
    flex: 0 0 auto;
    margin-left: 0;
    margin-top: 1px;
  }

  .mega-products a {
    margin-bottom: 13px;
    font-size: 16px;
  }

  .mega-products .mega-all {
    margin-top: 24px;
    font-size: 13px;
  }

  .mega-pages a {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .mega-contact h2 {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.35;
  }

  .mega-contact p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .mega-contact > a {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .mega-contact .socials {
    margin-top: 28px;
  }

  .after-hero {
    background: linear-gradient(180deg, #021120 0 350px, #f8f8f8 350px 100%);
  }

  .about-card {
    gap: 48px;
    min-height: 560px;
    padding: 78px 64px 72px;
  }

  .eyebrow {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .about-copy p {
    margin-bottom: 52px;
    font-size: 18px;
    line-height: 1.65;
  }

  .about-mark p {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .about-mark strong {
    font-size: clamp(64px, 7.5vw, 86px);
  }

  .products-panel {
    padding: 70px 0 112px;
  }

  .panel-head {
    padding: 0 56px 46px;
  }

  .product-track {
    grid-auto-columns: minmax(430px, 500px);
    padding: 0 56px 44px;
  }

  .product-card {
    grid-template-columns: 1fr 190px;
    min-height: 270px;
    padding: 38px 34px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 22px;
  }

  .product-card p {
    min-height: 66px;
    margin-bottom: 34px;
    font-size: 14px;
  }

  .all-link {
    margin-right: 56px;
  }

  .search-band {
    width: calc(100vw - 100px);
    gap: 36px;
    min-height: 138px;
    margin-bottom: 70px;
    padding: 30px 42px;
  }

  .search-band h2 {
    font-size: 25px;
  }

  .why {
    margin-bottom: -115px;
    padding: 70px 56px 42px;
  }

  .why-head {
    gap: 24px;
    margin-bottom: 48px;
  }

  .dots-field {
    width: 150px;
    height: 100px;
  }

  .feature-grid article {
    min-height: 220px;
    padding: 28px 24px 62px;
  }

  .feature-grid h3 {
    font-size: 20px;
  }

  .feature-grid p {
    width: calc(100% - 36px);
    bottom: 22px;
    font-size: 13px;
  }

  .road-banner {
    min-height: 560px;
  }

  .road-banner img {
    height: 640px;
  }

  .quick-actions {
    width: calc(100vw - 80px);
    gap: 22px;
    margin-top: 80px;
  }

  .request-card,
  .catalog-card {
    min-height: 330px;
  }

  .request-card {
    padding: 70px 42px 46px;
  }

  .catalog-card > div {
    inset: 56px auto 42px 42px;
    max-width: 280px;
  }

  .catalog-card > img {
    top: 70px;
    right: 20px;
    width: min(48%, 320px);
    max-height: 240px;
  }

  .news-strip {
    width: calc(100vw - 80px);
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 22px;
    padding-right: 24px;
  }

  .news-strip > .text-link {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .page-hero {
    min-height: 610px;
  }

  .page-hero-inner {
    min-height: 320px;
    padding-top: 120px;
  }

  .page-hero h1 {
    margin-left: 56px;
    margin-bottom: 56px;
    font-size: clamp(38px, 5vw, 54px);
  }

  .breadcrumb {
    max-width: 430px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 56px;
    margin-bottom: 60px;
    line-height: 1.45;
    text-align: right;
  }

  .news-detail-subpage .page-hero h1 {
    max-width: 620px;
    margin-left: 56px;
    margin-bottom: 92px;
    font-size: clamp(34px, 4.4vw, 46px);
  }

  .news-detail-subpage .breadcrumb {
    max-width: 360px;
    margin-bottom: 94px;
  }

  .news-list-card,
  .news-detail-card,
  .catalog-panel,
  .products-group-panel,
  .product-listing-panel,
  .product-detail-panel,
  .product-request-panel,
  .contact-panel {
    width: calc(100vw - 40px);
    padding-inline: 56px;
  }

  .news-list-card,
  .catalog-panel,
  .products-group-panel,
  .product-listing-panel,
  .product-request-panel,
  .contact-panel {
    margin-top: -300px;
  }

  .news-detail-card {
    margin-top: -250px;
  }

  .news-detail-head {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 64px;
  }

  .catalog-panel .catalog-card {
    width: 100%;
  }

  .product-request-subpage .page-hero h1,
  .product-detail-subpage .page-hero h1 {
    left: 56px;
    max-width: calc(100vw - 112px);
    white-space: normal;
  }

  .product-request-subpage .breadcrumb,
  .product-detail-subpage .breadcrumb,
  .search-results-subpage .breadcrumb {
    right: 56px;
    max-width: 430px;
    white-space: normal;
  }

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

  .request-product-summary {
    max-width: none;
  }

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

  .request-grid > :nth-child(3),
  .request-grid > :nth-child(6),
  .request-grid > :nth-child(9),
  .request-grid > :nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }

  .request-grid textarea {
    grid-column: 1 / -1;
  }

  .request-bottom {
    margin-top: 28px;
  }

  .contact-panel {
    margin-top: -300px;
  }

  .contact-info-grid,
  .contact-social-row,
  .contact-form-head {
    grid-template-columns: 1fr;
  }

  .contact-info-grid article,
  .contact-info-grid article + article {
    min-height: 0;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #dfe5ea;
    margin-bottom: 28px;
  }

  .contact-info-grid article:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }

  .contact-info-grid p {
    font-size: 18px;
  }

  .whatsapp-line,
  .social-follow {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  .social-follow {
    border-top: 1px solid #dfe5ea;
  }

  .social-follow .socials {
    justify-content: flex-start;
  }

  .site-footer {
    padding: 82px 40px 44px;
    border-radius: 56px 56px 0 0;
  }

  .footer-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    padding-bottom: 54px;
  }

  .footer-cta h2 {
    font-size: clamp(31px, 4vw, 44px);
  }

  .footer-cta .text-link {
    grid-column: 2;
  }

  .footer-grid {
    column-gap: 22px;
    padding: 54px 0;
  }

  .footer-grid img {
    width: 170px;
    margin-bottom: 28px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 13px;
  }

  .footer-contact a {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    width: calc(100vw - 24px);
    height: 66px;
  }

  .site-header.is-scrolled {
    height: 66px;
    padding: 0 12px;
  }

  .brand img {
    width: 150px;
  }

  .menu-pill {
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 0;
    justify-content: center;
  }

  .menu-pill .icon-hamburger-menu {
    font-size: 17px;
  }

  .menu-pill span:last-child {
    display: none;
  }

  .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 0;
  }

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

  .language button {
    height: 34px;
    padding: 0 11px;
    font-size: 10px;
  }

  .language-menu {
    right: 0;
    min-width: 112px;
  }

  .mega-menu {
    padding: 18px;
    overflow-y: auto;
  }

  .mega-top,
  .mega-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mega-top {
    gap: 18px;
  }

  .mega-brand img {
    width: 180px;
  }

  .mega-brand span {
    padding-left: 146px;
    font-size: 11px;
  }

  .mega-close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-width: 92px;
    height: 34px;
    font-size: 12px;
    border-width: 1px;
  }

  .mega-search {
    margin-top: 22px;
  }

  .mega-search input {
    height: 54px;
    padding-left: 56px;
    font-size: 12px;
  }

  .mega-search span {
    left: 18px;
    font-size: 20px;
  }

  .mega-content {
    gap: 28px;
    margin-top: 38px;
  }

  .mega-products,
  .mega-pages,
  .mega-contact {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 26px 0 0;
  }

  .mega-categories a {
    margin-bottom: 17px;
    font-size: 19px;
  }

  .mega-products a {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .mega-products .mega-all {
    margin-top: 28px;
    font-size: 13px;
  }

  .mega-pages a {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .mega-contact {
    text-align: center;
  }

  .mega-contact h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .mega-contact p,
  .mega-contact > a {
    font-size: 16px;
  }

  .mega-contact .socials {
    justify-content: center;
    margin-top: 30px;
  }

  .page-hero {
    min-height: 440px;
  }

  .page-hero-waves {
    top: -40px;
    right: -260px;
    width: 620px;
    height: 420px;
  }

  .page-hero-inner {
    display: block;
    width: calc(100vw - 28px);
    min-height: 240px;
    padding-top: 115px;
  }

  .page-hero h1 {
    margin: 0 0 38px 28px;
    font-size: 36px;
  }

  .breadcrumb {
    margin: 0 28px;
    font-size: 11px;
  }

  .news-detail-subpage .page-hero {
    min-height: 520px;
  }

  .news-detail-subpage .page-hero h1 {
    max-width: calc(100vw - 56px);
    margin: 0 28px 30px;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.1;
  }

  .news-detail-subpage .breadcrumb {
    justify-content: flex-start;
    max-width: calc(100vw - 56px);
    margin: 0 28px;
    text-align: left;
  }

  .about-detail-card {
    width: calc(100vw - 28px);
    margin-top: -170px;
    padding: 52px 28px 0;
    border-radius: 20px;
  }

  .about-detail-card::before {
    height: 430px;
    background-size: 180% 100%;
  }

  .about-detail-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-detail-copy .lead {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .about-detail-copy p:not(.lead) {
    font-size: 13px;
    line-height: 1.75;
  }

  .about-detail-mark {
    padding-top: 4px;
  }

  .about-detail-mark p {
    font-size: 15px !important;
  }

  .about-detail-mark strong {
    font-size: 54px;
  }

  .factory-photo {
    width: calc(100% + 56px);
    height: 360px;
    margin: 34px -28px 0;
  }

  .about-features {
    width: calc(100vw - 40px);
    margin: -60px auto 42px;
    padding: 38px 28px 0;
    border-radius: 18px;
  }

  .about-features .why-head {
    margin-bottom: 30px;
  }

  .about-features .eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .about-features .why-head h2 {
    font-size: 19px;
  }

  .news-list-card {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 46px 22px;
    border-radius: 22px;
  }

  .news-list-card::before,
  .news-list-card::after {
    width: 34px;
    height: 34px;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .news-list-image {
    border-radius: 16px;
  }

  .news-list-image img {
    width: 100%;
    height: 170px;
  }

  .news-list-copy time {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .news-list-copy h2 {
    font-size: 17px;
  }

  .news-list-link {
    justify-self: start;
    font-size: 12px;
  }

  .news-detail-card {
    width: calc(100vw - 28px);
    margin: -115px auto 50px;
    padding: 28px 22px 46px;
    border-radius: 22px;
  }

  .news-detail-head {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 42px;
  }

  .news-detail-head img {
    height: 245px;
    border-radius: 16px;
  }

  .news-detail-title time {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .news-detail-title h2 {
    font-size: 28px;
  }

  .news-detail-content {
    font-size: 14px;
    line-height: 1.75;
  }

  .news-detail-content p {
    margin-bottom: 22px;
  }

  .catalog-panel {
    width: calc(100vw - 28px);
    min-height: 0;
    margin: -170px auto 50px;
    padding: 46px 22px;
    border-radius: 22px;
  }

  .catalog-panel .catalog-card {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }

  .catalog-panel .catalog-card h2 {
    font-size: 26px;
  }

  .catalog-panel .catalog-card img {
    width: min(100%, 320px);
  }

  .catalog-panel .catalog-card a {
    font-size: 12px;
  }

  .products-group-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 42px 20px;
    border-radius: 22px;
  }

  .products-group-intro {
    margin-bottom: 34px;
  }

  .products-group-intro h2 {
    font-size: 20px;
  }

  .products-group-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-group-card {
    min-height: 360px;
    padding: 26px;
  }

  .product-group-card img {
    height: 170px;
    margin-bottom: 24px;
  }

  .products-search-box {
    grid-column: auto;
    min-height: 330px;
    padding: 28px 20px;
  }

  .products-search-box h3 {
    font-size: 21px;
  }

  .product-listing-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 42px 20px;
    border-radius: 22px;
  }

  .product-listing-head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .product-listing-head h2 {
    font-size: 34px;
  }

  .product-listing-head p {
    font-size: 14px;
  }

  .product-listing-tools {
    gap: 14px;
    margin-bottom: 24px;
  }

  .product-listing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-results-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 42px 20px;
    border-radius: 22px;
  }

  .search-results-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  .search-results-head h2 {
    font-size: 34px;
  }

  .search-results-head p {
    font-size: 14px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-request-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 28px 18px 42px;
    border-radius: 22px;
  }

  .product-request-card {
    padding: 22px 18px;
  }

  .standalone-request-form {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .standalone-request-grid {
    grid-template-columns: 1fr;
  }

  .standalone-request-grid > * {
    grid-column: auto !important;
  }

  .standalone-request-bottom {
    grid-template-columns: 1fr;
  }

  .request-product-image {
    height: 280px;
  }

  .listed-product-card {
    min-height: 360px;
  }

  .listed-product-card img {
    height: 200px;
  }

  .product-detail-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 28px 20px 42px;
    border-radius: 22px;
  }

  .product-detail-media {
    min-height: 280px;
  }

  .product-detail-media img {
    height: 220px;
  }

  .detail-meta,
  .detail-actions,
  .request-grid,
  .request-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-detail-summary h2 {
    font-size: 26px;
  }

  .product-detail-subpage .page-hero h1 {
    white-space: normal;
  }

  .product-detail-tabs {
    overflow-x: auto;
  }

  .product-detail-tabs button {
    min-width: 165px;
    font-size: 13px;
  }

  .detail-table-card,
  .product-request-form {
    overflow-x: auto;
    padding: 24px 18px;
  }

  .detail-table-card table {
    min-width: 720px;
  }

  .request-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .request-bottom {
    gap: 18px;
    margin-top: 22px;
  }

  .contact-panel {
    width: calc(100vw - 28px);
    margin: -170px auto 50px;
    padding: 46px 22px;
    border-radius: 22px;
  }

  .contact-info {
    margin-bottom: 42px;
  }

  .contact-info h2 {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .contact-info-grid,
  .contact-social-row,
  .contact-form-head,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid article,
  .contact-info-grid article + article,
  .whatsapp-line,
  .social-follow {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .contact-info-grid p {
    font-size: 15px;
  }

  .contact-info-grid h3 {
    margin-bottom: 14px;
  }

  .whatsapp-line,
  .social-follow {
    grid-template-columns: 1fr;
  }

  .social-follow .socials {
    justify-content: flex-start;
  }

  .contact-map {
    height: 310px;
    margin-bottom: 40px;
    border-radius: 18px;
  }

  .map-route {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }

  .contact-form {
    padding: 34px 24px;
    border-radius: 14px;
  }

  .contact-form-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .contact-form h2 {
    font-size: 28px;
  }

  .contact-form-head p {
    font-size: 13px;
  }

  .form-grid textarea {
    min-height: 135px;
  }

  .form-bottom {
    display: grid;
    margin-top: 28px;
  }

  .form-bottom button {
    justify-self: start;
  }

  .production-card {
    width: calc(100vw - 28px);
    margin-top: -170px;
    padding-bottom: 42px;
    border-radius: 18px;
  }

  .production-video,
  .production-video-copy {
    min-height: 360px;
  }

  .production-video-copy h2 {
    max-width: 300px;
    font-size: 28px;
  }

  .production-video-copy p {
    max-width: 285px;
    margin-bottom: 58px;
    font-size: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin: 34px auto 42px;
    gap: 16px;
  }

  .process-grid article {
    min-height: 190px;
    padding: 24px;
  }

  .process-grid strong {
    width: 48px;
    height: 78px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .process-grid h3 {
    font-size: 16px;
  }

  .production-statement {
    padding: 0 24px;
    font-size: 17px;
  }

  .facility-section {
    margin-top: -34px;
    padding: 110px 0 88px;
  }

  .facility-head {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100vw - 40px);
    margin-bottom: 32px;
  }

  .facility-slider {
    width: calc(100vw - 20px);
    margin-left: 20px;
  }

  .facility-track {
    gap: 16px;
  }

  .facility-track img {
    height: 220px;
  }

  .production-features {
    margin-top: -46px;
  }

  .products-cta {
    display: flex;
    width: calc(100vw - 40px);
    min-height: 110px;
    margin-bottom: 34px;
    padding: 0 0 0 24px;
    text-align: left;
  }

  .products-cta a {
    font-size: 18px;
    white-space: normal;
  }

  .products-cta-visual {
    width: 42%;
    min-width: 130px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    min-height: 560px;
    padding: 95px 20px 84px;
    align-content: end;
  }

  .hero-content p {
    max-width: 210px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-content h1 {
    padding-bottom: 0;
    font-size: 31px;
  }

  .hero-content h1::after {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .floating-whatsapp {
    left: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp::before {
    font-size: 24px;
  }

  .section-card,
  .products-panel {
    border-radius: 18px;
  }

  .after-hero {
    padding-top: 28px;
    background: linear-gradient(180deg, #021120 0 42%, #f8f8f8 42% 100%);
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    margin-top: 0;
    padding: 46px 28px 52px;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
  }

  .about-copy p {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.75;
  }

  .about-mark {
    order: -1;
  }

  .about-mark p {
    margin: 0 auto 8px;
    font-size: 11px;
  }

  .about-mark strong {
    font-size: 43px;
  }

  .products-panel {
    padding: 56px 0 92px;
  }

  .products-star {
    top: -18px;
    right: -110px;
    width: 360px;
  }

  .waves-lottie {
    right: -210px;
    top: 140px;
    width: 430px;
    height: 330px;
  }

  .panel-head {
    display: block;
    padding: 0 28px 30px;
  }

  .panel-head h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  .panel-head .slider-controls {
    justify-content: center;
    margin-top: 32px;
  }

  .product-track {
    grid-auto-columns: minmax(292px, 320px);
    padding: 0 28px 24px;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 392px;
    align-content: start;
    padding: 25px;
  }

  .product-card img {
    height: 205px;
    order: 2;
  }

  .product-card p {
    min-height: 58px;
    margin-bottom: 28px;
    font-size: 13px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .all-link {
    margin: 0;
    text-align: center;
  }

  .search-band {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100vw - 40px);
    margin: -46px auto 48px;
    padding: 26px 20px;
    text-align: center;
  }

  .search-band h2 {
    font-size: 23px;
  }

  .product-search input {
    height: 52px;
    font-size: 12px;
  }

  .why {
    margin-bottom: -70px;
    padding: 46px 28px 0;
  }

  .why-head {
    display: block;
    margin-bottom: 34px;
    text-align: left;
  }

  .why-head h2 {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .dots-field {
    width: 132px;
    height: 88px;
    margin: 26px auto;
  }

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

  .feature-grid article {
    min-height: 190px;
    padding: 28px 22px 58px;
  }

  .feature-grid h3 {
    font-size: 17px;
  }

  .feature-grid p {
    bottom: 20px;
    font-size: 13px;
  }

  .feature-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .road-banner {
    min-height: 430px;
    padding-top: 70px;
  }

  .road-banner img {
    height: 430px;
  }

  .road-copy {
    left: 28px;
    right: 28px;
    bottom: 90px;
  }

  .road-copy h2 {
    max-width: 270px;
    font-size: 28px;
    line-height: 1.05;
  }

  .road-copy p {
    max-width: 260px;
    font-size: 12px;
  }

  .road-banner strong {
    right: auto;
    left: 28px;
    bottom: 36px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    margin: 46px auto 24px;
  }

  .request-card,
  .catalog-card {
    min-height: 330px;
  }

  .request-card {
    padding: 70px 30px 34px;
  }

  .corner-icon {
    right: 28px;
    width: 60px;
    height: 72px;
  }

  .request-card p {
    margin-bottom: 34px;
    font-size: 13px;
  }

  .catalog-card > div {
    inset: 38px 30px 34px;
  }

  .catalog-card p {
    margin-bottom: 10px;
  }

  .catalog-card > img {
    top: 72px;
    right: 24px;
    width: min(64%, 300px);
    max-height: 210px;
  }

  .news-strip {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    padding: 18px;
    border-radius: 18px;
    text-align: center;
  }

  .news-strip img {
    width: 100%;
    height: 88px;
  }

  .news-strip .slider-controls {
    justify-content: center;
  }

  .content-block {
    padding: 44px 28px 54px;
    border-radius: 18px 18px 0 0;
  }

  .content-block p {
    font-size: 13px;
  }

  .site-footer {
    padding: 54px 34px 34px;
    border-radius: 34px 34px 0 0;
    text-align: center;
  }

  .footer-cta,
  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-cta {
    gap: 30px;
    padding-bottom: 42px;
  }

  .footer-cta h2 {
    font-size: 25px;
  }

  .socials {
    justify-content: center;
  }

  .footer-grid {
    gap: 30px;
    padding: 42px 0;
  }

  .footer-contact,
  .footer-grid > div:not(.footer-contact) {
    grid-column: auto;
  }

  .footer-grid img,
  .footer-grid p,
  .footer-grid a {
    margin-inline: auto;
  }

  .footer-bottom {
    gap: 14px;
  }
}
