@font-face {
  font-family: Manrope;
  src: url("assets/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF, U+FEFF, U+FFFD;
}
:root {
  --navy: #0b1420;
  --navy-soft: #111f2c;
  --ink: #182633;
  --muted: #62707a;
  --silver: #c4cbd0;
  --paper: #f3f5f4;
  --white: #fff;
  --green: #a9e8c0;
  --green-ink: #133e2a;
  --line: #dce2df;
  --font: Manrope, Arial, sans-serif;
  --ease: 200ms ease;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
textarea,
select {
  font-family: var(--font);
}
button,
input,
textarea,
select {
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
select,
input,
textarea {
  border-radius: 3px;
}
button {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  outline-offset: 5px;
}
:focus-visible {
  outline: 3px solid #3c9c6b;
}
::selection {
  background: var(--green);
  color: var(--navy);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--green);
  color: var(--navy);
  padding: 14px 20px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  letter-spacing: 1.65px;
  font-weight: 700;
  line-height: 1.5;
}
.eyebrow > span:not(.status-dot) {
  color: #6d7b75;
}
h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.23;
}
h3 {
  font-size: 21px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.6px;
}
.section {
  padding: 96px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 44px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-intro {
  color: var(--muted);
  width: 325px;
  flex-shrink: 0;
  line-height: 1.9;
  padding-bottom: 3px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-weight: 650;
  font-size: 13px;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--ease);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  line-height: 1.4;
  font-size: 13px;
  font-weight: 750;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-green {
  background: var(--green);
  color: #143124;
}
.button-green:hover {
  background: #c8f4d7;
}
.button-outline {
  border-color: #63707b;
  color: var(--white);
  background: #ffffff04;
}
.button-outline:hover {
  background: #ffffff12;
  border-color: #b0b9c1;
}
.button-dark {
  background: var(--navy);
  color: var(--white);
}
.button-dark:hover {
  background: #213c4d;
}
.topbar {
  background: var(--navy);
  color: #acb6be;
  font-size: 10px;
  letter-spacing: 0.25px;
  border-bottom: 1px solid #ffffff12;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
}
.topbar .icon {
  width: 13px;
  height: 13px;
}
.topbar-note {
  color: #8b99a5;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #0b1420f7;
  color: var(--white);
  border-bottom: 1px solid #ffffff13;
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.brand-emblem {
  height: 56px;
  width: 61px;
  position: relative;
  overflow: hidden;
  mix-blend-mode: screen;
}
.brand-emblem img {
  position: absolute;
  max-width: none;
  width: 116px;
  height: 116px;
  left: -27px;
  top: -18px;
}
.brand-wordmark {
  font-family: Georgia, serif;
  white-space: nowrap;
  font-size: 22px;
  letter-spacing: -0.7px;
  line-height: 1.2;
  color: #e6e6e2;
}
.brand-wordmark > span {
  font-size: 15px;
  letter-spacing: 0;
}
.brand-wordmark small {
  font-family: var(--font);
  font-size: 6.9px;
  display: block;
  color: #a8b2bb;
  letter-spacing: 1.35px;
  margin-top: 7px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}
.navigation a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 10.5px;
  white-space: nowrap;
  color: #bfc8cf;
  transition: color var(--ease);
}
.navigation a:hover,
.navigation a.is-active {
  color: var(--white);
}
.navigation a::after {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--ease);
}
.navigation a:hover::after,
.navigation a.is-active::after {
  width: 18px;
}
.header-phone {
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.1px;
  font-weight: 650;
  line-height: 1.4;
}
.header-phone small {
  display: block;
  color: #9ba8b5;
  font-size: 9px;
  font-weight: 400;
  margin-top: 5px;
  text-align: right;
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 35%;
  z-index: -3;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 62% 44%;
  filter: saturate(0.4) brightness(0.68);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--navy) 0%,
      #0b1420e6 15%,
      #0b14205e 53%,
      #0b14200c 100%
    ),
    linear-gradient(0deg, var(--navy), transparent 42%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(#e1edfa04 1px, transparent 1px),
    linear-gradient(90deg, #e1edfa04 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero-inner {
  position: relative;
  padding-top: 70px;
  padding-bottom: 64px;
  min-height: 540px;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: #b9c7ce;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 26px;
}
.status-dot {
  height: 6px;
  width: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #a9e8c00b;
  margin-right: 2px;
}
.hero h1 {
  font-size: clamp(40px, 4.85vw, 69px);
  letter-spacing: -3.4px;
  line-height: 1.12;
  font-weight: 600;
}
.hero h1 span {
  display: block;
  color: #bfcbd1;
}
.hero-description {
  color: #b1bec9;
  font-size: 15px;
  line-height: 1.85;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
  flex-wrap: wrap;
}
.hero-actions .button-green {
  gap: 11px;
}
.hero-actions .arrow {
  margin-left: 14px;
}
.hero-actions .button-outline {
  gap: 24px;
}
.hero-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 19px;
  color: #c2ccd3;
}
.hero-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 11px;
}
.hero-links a:hover {
  color: var(--green);
}
.hero-links .icon {
  width: 16px;
  height: 16px;
}
.hero-links .tiny {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}
.hero-links > span {
  height: 13px;
  width: 1px;
  background: #ffffff25;
}
.hero-caption {
  position: absolute;
  right: 0;
  bottom: 91px;
  width: 267px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: #dce0e0;
}
.caption-cross {
  font-size: 29px;
  font-weight: 200;
  line-height: 1;
  color: var(--green);
}
.hero-caption p {
  font-size: 9px;
  letter-spacing: 1.8px;
  line-height: 1.85;
}
.caption-index {
  grid-column: 2;
  font-size: 9px;
  letter-spacing: 2px;
  color: #96a6af;
  border-top: 1px solid #ffffff30;
  margin-top: 10px;
  padding-top: 11px;
}
.hero-benefits {
  display: flex;
  border-top: 1px solid #ffffff21;
  min-height: 112px;
  align-items: center;
  gap: 32px;
}
.hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 1;
}
.hero-benefits > div:not(:first-child) {
  border-left: 1px solid #ffffff20;
  padding-left: 32px;
}
.hero-benefits .icon {
  width: 27px;
  height: 27px;
  color: #a0b3be;
  stroke-width: 1.3;
}
.hero-benefits p {
  font-size: 12px;
  font-weight: 600;
}
.hero-benefits small {
  display: block;
  font-size: 10px;
  color: #94a4b1;
  font-weight: 400;
  margin-top: 4px;
}
.hero-scroll {
  height: 43px;
  width: 43px;
  border: 1px solid #ffffff2a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--ease);
}
.hero-scroll .icon {
  transform: rotate(90deg);
  width: 17px;
  height: 17px;
}
.hero-scroll:hover {
  background: #ffffff15;
}
.catalog-section {
  background: var(--paper);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  display: block;
  background: var(--white);
  border: 1px solid #e4e8e6;
  padding: 19px 22px 17px;
  border-radius: 4px;
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}
.product-card:hover {
  background: #fafffc;
  border-color: #94baa4;
  box-shadow: 0 7px 20px #1a443009;
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #78858d;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.product-top .icon {
  height: 17px;
  width: 17px;
  transition: transform var(--ease);
}
.product-card:hover .product-top .icon {
  transform: translate(2px, -2px);
  color: #276c46;
}
.product-art {
  width: 100%;
  height: 155px;
  overflow: visible;
  margin: 8px 0 10px;
}
.product-card h3 {
  font-size: 19px;
  letter-spacing: -0.65px;
}
.product-card > p {
  color: var(--muted);
  font-size: 10px;
  margin-top: 7px;
}
.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 650;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid #e8ece9;
  color: #344d40;
}
.product-link .icon {
  width: 15px;
  height: 15px;
}
.catalog-help {
  padding: 25px 24px 20px;
  background: #e7ede8;
  border: 1px solid #dbe4dc;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.catalog-help > .icon {
  color: #466052;
  margin-bottom: 28px;
  width: 28px;
  height: 28px;
}
.catalog-help h3 {
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.7px;
}
.catalog-help p {
  font-size: 12px;
  color: #5b6f60;
  line-height: 1.9;
  margin-top: 14px;
}
.catalog-help .text-link {
  margin-top: auto;
  padding-top: 14px;
  gap: 14px;
  font-size: 11px;
}
.catalog-note {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
}
.catalog-note .icon {
  width: 15px;
  height: 15px;
}
.materials-section {
  padding: 64px 0;
  background: #e7eee9;
  border-block: 1px solid #dbe3dd;
}
.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.materials-layout .eyebrow {
  margin-bottom: 21px;
}
.materials-layout h2 {
  font-size: 38px;
}
.materials-layout > div > p:not(.eyebrow) {
  color: #5f7165;
  font-size: 13px;
  max-width: 435px;
  line-height: 1.9;
  margin-top: 18px;
}
.materials-layout .text-link {
  margin-top: 17px;
  color: #2d553d;
}
.materials-list > div {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #cdd9d0;
}
.materials-list > div:first-child {
  padding-top: 0;
}
.materials-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.materials-list > div > span {
  font-size: 10px;
  color: #76887c;
}
.materials-list p {
  font-size: 15px;
  font-weight: 600;
}
.materials-list small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #64766a;
  margin-top: 4px;
}
.materials-list .icon {
  margin-left: auto;
  color: #637e6c;
  width: 24px;
  height: 24px;
}
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  padding: 30px 25px 25px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.service-card:first-child {
  padding-left: 0;
}
.service-card:last-child {
  padding-right: 0;
  border: 0;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 35px;
}
.service-top .icon {
  width: 31px;
  height: 31px;
  stroke-width: 1.3;
  color: #3a6550;
}
.service-top span {
  font-size: 10px;
  color: #6e7b74;
}
.service-card h3 {
  font-size: 23px;
}
.service-card > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 17px;
  margin-bottom: 26px;
  max-width: 240px;
}
.service-card .text-link {
  font-size: 10px;
  gap: 9px;
  margin-top: auto;
}
.service-card .text-link .icon {
  width: 14px;
  height: 14px;
}
.about-section {
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.about-identity {
  position: relative;
  min-width: 0;
  border: 1px solid #ffffff17;
}
.about-identity img {
  width: 100%;
  mix-blend-mode: screen;
}
.identity-caption {
  display: block;
  text-align: center;
  padding: 13px 10px;
  color: #8698a5;
  font-size: 8px;
  letter-spacing: 2px;
  border-top: 1px solid #ffffff13;
}
.about-copy .eyebrow {
  color: #b0bcbf;
  margin-bottom: 23px;
}
.about-copy .eyebrow > span {
  color: #9db5a6;
}
.about-copy h2 {
  font-size: 43px;
  letter-spacing: -1.6px;
}
.about-copy .about-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #d0d8de;
  margin-top: 26px;
}
.about-copy > p:not(.eyebrow):not(.about-lead) {
  font-size: 13px;
  line-height: 1.95;
  color: #9eacb7;
  margin-top: 16px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 23px;
  padding-block: 21px;
  border-block: 1px solid #ffffff18;
}
.about-values span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c3cdd4;
  font-size: 10px;
}
.about-values .icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}
.about-copy .text-link {
  color: var(--green);
  font-size: 12px;
  margin-top: 18px;
}
.quote-section {
  background: var(--paper);
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: start;
}
.quote-copy {
  padding-top: 13px;
}
.quote-copy .eyebrow {
  margin-bottom: 24px;
}
.quote-copy h2 {
  font-size: 46px;
}
.quote-copy > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.quote-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 35px;
}
.quote-steps li {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  padding: 9px 0;
}
.quote-steps span {
  font-size: 9px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #d9e2dc;
  border-radius: 50%;
  color: #5c7766;
}
.quote-phone {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.quote-phone .icon {
  width: 19px;
  height: 19px;
}
.quote-copy > small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 9px;
}
.quote-form {
  padding: 35px 35px 28px;
  background: var(--white);
  border: 1px solid #dfe6e1;
  border-radius: 4px;
}
.quote-form h3 {
  font-size: 23px;
}
.form-intro {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 27px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 20px;
}
.field label {
  font-size: 11px;
  font-weight: 650;
  margin-bottom: 8px;
}
.field label > span:not(.optional) {
  color: #3b7550;
}
.optional {
  font-size: 9px;
  font-weight: 400;
  color: #778078;
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  padding: 13px 12px;
  min-height: 46px;
  width: 100%;
  border: 1px solid #dbe1dc;
  color: var(--ink);
  background: #fafbfa;
  line-height: 1.6;
  transition: border-color var(--ease);
  font-size: 12px;
}
.field textarea {
  resize: vertical;
  min-height: 112px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6c7b72;
  font-size: 11px;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #839e8b;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23546b5d' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.delivery-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  min-height: 44px;
  margin: -6px 0 15px;
  cursor: pointer;
}
.delivery-checkbox input {
  accent-color: #347b50;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin: 0;
}
.submit-button {
  width: 100%;
  border: 0;
  min-height: 52px;
  font-size: 12px;
}
.submit-button .arrow {
  margin-left: auto;
}
.form-note {
  font-size: 9px;
  color: #6b7970;
  line-height: 1.85;
  margin-top: 13px;
}
.form-status {
  color: #286443;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 10px;
}
.form-status:empty {
  display: none;
}
.field-error {
  font-size: 10px;
  color: #a23731;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.field [aria-invalid="true"] {
  border-color: #a23731;
}
.contacts-section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.contacts-section .section-heading > .text-link {
  font-size: 11px;
}
.contacts-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  gap: 64px;
}
.contact-details {
  padding-top: 8px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 30px;
}
.contact-item > .icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: #4b6d58;
}
.contact-label {
  display: block;
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: #6a7a70;
  margin-bottom: 7px;
}
.contact-item p,
.contact-phone {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.contact-phone:hover {
  text-decoration: underline;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 8px;
}
.contact-details .button {
  font-size: 11px;
  width: 100%;
  max-width: 310px;
  justify-content: space-between;
  margin-top: 1px;
}
.map-panel {
  background: #e9eeea;
  border: 1px solid #dce3df;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.map-canvas {
  position: relative;
  flex: 1;
  min-height: 330px;
}
.map-preview {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  background: #e8eee8;
}
.map-preview img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.map-attribution {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  background: #ffffffed;
  color: #53645a;
  font-size: 9px;
  line-height: 1.7;
}
.map-attribution a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: #fff;
  padding: 12px 18px;
  font-size: 9px;
}
.map-footer > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-footer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4f9764;
}
.map-footer a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  font-weight: 650;
}
.map-footer .icon {
  width: 13px;
  height: 13px;
}
.footer {
  background: var(--navy);
  color: #c7d0d5;
  padding: 36px 0 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 31px;
}
.footer-main > p {
  font-size: 10px;
  line-height: 1.9;
  color: #97a7b3;
}
.footer .brand-emblem {
  height: 47px;
  width: 51px;
}
.footer .brand-emblem img {
  width: 99px;
  height: 99px;
  left: -23px;
  top: -15px;
}
.footer .brand-wordmark {
  font-size: 20px;
}
.footer .brand-wordmark small {
  font-size: 6px;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  min-height: 44px;
  font-size: 10px;
}
.back-top .icon {
  transform: rotate(-90deg);
  width: 16px;
  height: 16px;
}
.footer-bottom {
  border-top: 1px solid #ffffff16;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #94a4af;
  font-size: 8px;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
}
.footer-bottom .icon {
  width: 13px;
  height: 13px;
}
.mobile-contact,
.mobile-only {
  display: none;
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 610px;
    padding-top: 92px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-benefits {
    min-height: 122px;
  }
  .hero-caption {
    bottom: 95px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 18px;
  }
  .brand-wordmark {
    font-size: 19px;
  }
  .brand-wordmark small {
    font-size: 6px;
  }
  .brand-emblem {
    width: 48px;
  }
  .brand-emblem img {
    left: -33px;
  }
  .brand {
    gap: 8px;
  }
  .navigation {
    gap: 15px;
  }
  .navigation a {
    font-size: 9px;
  }
  .header-phone {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero-caption {
    right: 0;
    width: 210px;
  }
  .section-intro {
    width: 285px;
    font-size: 13px;
  }
  .product-card {
    padding: 17px;
  }
  .product-card h3 {
    font-size: 17px;
  }
  .product-art {
    height: 133px;
  }
  .catalog-help {
    padding: 20px;
  }
  .catalog-help h3 {
    font-size: 21px;
  }
  .catalog-help > .icon {
    margin-bottom: 23px;
  }
  .materials-layout,
  .about-layout {
    gap: 64px;
  }
  .services-grid .service-card {
    padding-inline: 20px;
  }
  .services-grid .service-card:first-child {
    padding-left: 0;
  }
  .services-grid .service-card:last-child {
    padding-right: 0;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .quote-layout {
    gap: 55px;
  }
  .quote-form {
    padding: 28px;
  }
  .quote-copy h2 {
    font-size: 41px;
  }
  .contacts-layout {
    gap: 40px;
  }
  .footer-main {
    gap: 45px;
  }
}
@media (max-width: 1023px) {
  .header-inner {
    height: 80px;
  }
  .header-phone {
    margin-left: auto;
    margin-right: 12px;
    font-size: 14px;
  }
  .brand-wordmark {
    font-size: 22px;
  }
  .brand-wordmark small {
    font-size: 6.9px;
  }
  .brand-emblem {
    width: 61px;
  }
  .brand-emblem img {
    left: -27px;
  }
  .brand {
    gap: 12px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid #ffffff30;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: white;
    flex-shrink: 0;
  }
  .menu-toggle span {
    display: block;
    height: 1px;
    width: 19px;
    background: currentColor;
    transition: transform var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .js .navigation {
    display: none;
  }
  .js .navigation.is-open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 32px 24px;
    gap: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 15px 20px #0002;
    border-top: 1px solid #ffffff20;
  }
  .navigation a {
    font-size: 13px;
    min-height: 49px;
    border-bottom: 1px solid #ffffff0e;
  }
  .navigation a::after {
    bottom: 7px;
  }
  .hero-inner {
    padding-top: 58px;
    min-height: 520px;
    padding-bottom: 55px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-caption {
    display: none;
  }
  .hero-image {
    left: 29%;
  }
  .hero-image img {
    object-position: 69% 50%;
  }
  .hero-benefits {
    gap: 22px;
  }
  .hero-benefits > div {
    gap: 12px;
  }
  .hero-benefits > div:not(:first-child) {
    padding-left: 22px;
  }
  .hero-benefits p {
    font-size: 10px;
  }
  .hero-benefits small {
    font-size: 9px;
  }
  .hero-scroll {
    display: none;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    gap: 30px;
  }
  .section-intro {
    width: 250px;
    font-size: 12px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-art {
    height: 175px;
  }
  .product-card {
    padding: 21px 25px;
  }
  .product-card h3 {
    font-size: 21px;
  }
  .product-card > p {
    font-size: 12px;
  }
  .product-link {
    font-size: 11px;
  }
  .catalog-help {
    padding: 27px;
  }
  .catalog-help h3 {
    font-size: 28px;
  }
  .catalog-help p {
    font-size: 13px;
    max-width: 240px;
  }
  .catalog-help > .icon {
    margin-bottom: 35px;
  }
  .catalog-help .text-link {
    font-size: 12px;
  }
  .materials-layout {
    gap: 40px;
  }
  .materials-layout h2 {
    font-size: 32px;
  }
  .materials-list p {
    font-size: 13px;
  }
  .materials-list small {
    font-size: 10px;
  }
  .materials-list > div {
    gap: 13px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
  .services-grid .service-card {
    padding: 27px 0;
    border-right: 0;
  }
  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .service-top {
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    font-size: 13px;
    max-width: 280px;
    margin-bottom: 20px;
  }
  .service-card .text-link {
    font-size: 12px;
  }
  .about-layout {
    gap: 45px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .about-copy .about-lead {
    font-size: 14px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 12px;
  }
  .about-values {
    gap: 12px;
  }
  .quote-layout {
    gap: 35px;
  }
  .quote-copy h2 {
    font-size: 35px;
  }
  .quote-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  .quote-form {
    padding: 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .quote-steps li {
    font-size: 10px;
    gap: 10px;
  }
  .quote-phone {
    font-size: 21px;
    gap: 15px;
  }
  .contacts-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
  }
  .contacts-section .section-heading > .text-link {
    max-width: 160px;
    font-size: 10px;
  }
  .contact-item p,
  .contact-phone {
    font-size: 16px;
  }
  .contact-item small {
    font-size: 9px;
  }
  .map-footer {
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 15px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
  }
  .footer-main {
    gap: 30px;
  }
  .footer .brand-wordmark {
    font-size: 17px;
  }
  .footer-main > p {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar-inner {
    min-height: 30px;
    justify-content: center;
  }
  .topbar-inner > span {
    display: none;
  }
  .topbar a {
    font-size: 9px;
    min-height: 30px;
  }
  .header-inner {
    height: 72px;
    gap: 12px;
  }
  .brand-emblem {
    width: 49px;
    height: 46px;
  }
  .brand-emblem img {
    width: 98px;
    height: 98px;
    left: -24px;
    top: -15px;
  }
  .brand {
    gap: 8px;
  }
  .brand-wordmark {
    font-size: 20px;
  }
  .brand-wordmark > span {
    font-size: 13px;
  }
  .brand-wordmark small {
    font-size: 5.8px;
    letter-spacing: 1.2px;
    margin-top: 5px;
  }
  .header-phone {
    display: none;
  }
  .js .navigation.is-open {
    padding: 10px 20px 18px;
  }
  .hero-inner {
    min-height: auto;
    padding-top: 47px;
    padding-bottom: 42px;
  }
  .hero-image {
    left: 0;
    opacity: 0.65;
  }
  .hero-image img {
    object-position: 72% 50%;
  }
  .hero-image::after {
    background:
      linear-gradient(90deg, #0b1420ed, #0b14209c 75%, #0b142070),
      linear-gradient(0deg, var(--navy), transparent 70%);
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(35px, 7.8vw, 58px);
    letter-spacing: -1.9px;
    line-height: 1.16;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 23px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 27px;
  }
  .hero-actions .button {
    min-height: 50px;
    font-size: 11px;
    padding: 13px 16px;
  }
  .hero-actions .button-green .arrow {
    margin-left: 7px;
  }
  .hero-actions .button-outline {
    gap: 13px;
  }
  .hero-links {
    margin-top: 14px;
    gap: 20px;
  }
  .hero-links a {
    font-size: 11px;
  }
  .hero-benefits {
    min-height: 98px;
    gap: 15px;
    padding-block: 22px;
    align-items: start;
  }
  .hero-benefits > div {
    display: block;
  }
  .hero-benefits > div:not(:first-child) {
    padding-left: 15px;
  }
  .hero-benefits .icon {
    width: 23px;
    height: 23px;
    margin-bottom: 9px;
  }
  .hero-benefits p {
    font-size: 10px;
    line-height: 1.6;
  }
  .hero-benefits small {
    font-size: 8px;
    margin-top: 5px;
    line-height: 1.6;
  }
  .section {
    padding: 57px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    gap: 9px;
  }
  h2 {
    font-size: 31px;
    line-height: 1.27;
    letter-spacing: -1.2px;
  }
  .section-intro {
    margin-top: 19px;
    font-size: 12px;
    width: auto;
    max-width: 440px;
    line-height: 1.85;
  }
  .catalog-grid {
    gap: 12px;
  }
  .product-card {
    padding: 15px 13px;
  }
  .product-top {
    font-size: 8px;
  }
  .product-top .icon {
    width: 15px;
    height: 15px;
  }
  .product-art {
    height: 110px;
    margin: 10px 0;
  }
  .product-card h3 {
    font-size: 16px;
    letter-spacing: -0.45px;
  }
  .product-card > p {
    font-size: 9px;
    line-height: 1.7;
    min-height: 31px;
    margin-top: 5px;
  }
  .product-link {
    font-size: 8px;
    padding-top: 12px;
    margin-top: 10px;
    gap: 3px;
  }
  .product-link .icon {
    width: 13px;
    height: 13px;
  }
  .catalog-help {
    padding: 17px 15px;
  }
  .catalog-help > .icon {
    width: 23px;
    height: 23px;
    margin-bottom: 24px;
  }
  .catalog-help h3 {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .catalog-help p {
    font-size: 10px;
    line-height: 1.7;
    margin-top: 11px;
  }
  .catalog-help .text-link {
    font-size: 9px;
    gap: 7px;
    line-height: 1.7;
    padding-top: 12px;
  }
  .catalog-help .text-link .icon {
    width: 14px;
    height: 14px;
  }
  .catalog-note {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.8;
    gap: 8px;
    margin-top: 20px;
  }
  .catalog-note .icon {
    margin-top: 2px;
  }
  .materials-section {
    padding: 43px 0;
  }
  .materials-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .materials-layout h2 {
    font-size: 31px;
  }
  .materials-layout .eyebrow {
    margin-bottom: 16px;
  }
  .materials-layout > div > p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 16px;
  }
  .materials-layout .text-link {
    font-size: 11px;
    margin-top: 12px;
  }
  .materials-list > div {
    padding-block: 20px;
    gap: 18px;
  }
  .materials-list p {
    font-size: 13px;
  }
  .materials-list small {
    font-size: 10px;
  }
  .materials-list > div > span {
    font-size: 9px;
  }
  .services-grid {
    gap: 0 24px;
  }
  .service-top {
    margin-bottom: 25px;
  }
  .service-top .icon {
    width: 28px;
    height: 28px;
  }
  .service-top span {
    font-size: 9px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card > p {
    font-size: 11px;
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .service-card .text-link {
    font-size: 9px;
    gap: 5px;
  }
  .service-card .text-link .icon {
    width: 13px;
    height: 13px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-identity {
    width: min(100%, 400px);
    margin-inline: auto;
  }
  .about-identity img {
    max-height: 340px;
    object-fit: contain;
  }
  .about-copy h2 {
    font-size: 33px;
  }
  .about-copy .eyebrow {
    margin-bottom: 17px;
  }
  .about-copy .about-lead {
    margin-top: 22px;
    font-size: 14px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 12px;
  }
  .about-values {
    margin-top: 22px;
    gap: 10px 18px;
    padding-block: 17px;
  }
  .about-values span {
    font-size: 9px;
  }
  .about-copy .text-link {
    font-size: 11px;
  }
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .quote-copy {
    padding-top: 0;
  }
  .quote-copy h2 {
    font-size: 35px;
  }
  .quote-copy .eyebrow {
    margin-bottom: 19px;
  }
  .quote-copy > p:not(.eyebrow) {
    margin-top: 19px;
  }
  .quote-steps {
    margin: 22px 0;
  }
  .quote-steps li {
    font-size: 11px;
    padding: 7px 0;
  }
  .quote-phone {
    font-size: 23px;
  }
  .quote-copy > small {
    font-size: 10px;
  }
  .quote-form {
    padding: 24px 20px;
  }
  .quote-form h3 {
    font-size: 22px;
  }
  .form-intro {
    font-size: 11px;
    margin-bottom: 25px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 12px;
    min-height: 49px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 12px;
  }
  .field select {
    font-size: 13px;
  }
  .field label {
    font-size: 11px;
  }
  .submit-button {
    min-height: 54px;
    font-size: 11px;
  }
  .form-note {
    font-size: 10px;
  }
  .contacts-section .section-heading > .text-link {
    max-width: none;
    font-size: 11px;
    margin-top: 17px;
  }
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 27px;
  }
  .contact-details {
    padding-top: 0;
  }
  .contact-item {
    margin-bottom: 25px;
    gap: 15px;
  }
  .contact-item p,
  .contact-phone {
    font-size: 18px;
  }
  .contact-item small {
    font-size: 11px;
  }
  .contact-label {
    font-size: 9px;
  }
  .contact-details .button {
    max-width: none;
    font-size: 12px;
  }
  .map-canvas,
  .map-preview,
  .map-preview img {
    min-height: 310px;
  }
  .map-footer {
    flex-wrap: nowrap;
    font-size: 8px;
    gap: 9px;
    padding-inline: 11px;
  }
  .footer {
    padding-top: 28px;
    padding-bottom: 93px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
  }
  .footer .brand-wordmark {
    font-size: 20px;
  }
  .footer-main > p {
    order: 3;
    width: 100%;
    padding-left: 60px;
    margin-top: -12px;
    font-size: 9px;
  }
  .footer .back-top {
    font-size: 9px;
    gap: 8px;
  }
  .footer .brand-emblem {
    width: 48px;
  }
  .footer-bottom {
    display: block;
    font-size: 8px;
    padding-top: 18px;
  }
  .footer-bottom > span {
    display: block;
    margin-top: 10px;
  }
  .footer-bottom > a {
    margin-top: 6px;
    min-height: 44px;
  }
  .mobile-only {
    display: block;
  }
  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b1420f5;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    z-index: 25;
    border-top: 1px solid #ffffff20;
    box-shadow: 0 -3px 15px #0001;
  }
  .mobile-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    font-size: 11px;
    font-weight: 650;
    color: #e4eae7;
    border: 1px solid #ffffff40;
    border-radius: 3px;
  }
  .mobile-contact a:last-child {
    background: var(--green);
    color: #133623;
    border-color: var(--green);
  }
  .mobile-contact .icon {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 389px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand-wordmark {
    font-size: 18px;
  }
  .brand-wordmark > span {
    font-size: 12px;
  }
  .brand-wordmark small {
    font-size: 5.2px;
  }
  .hero h1 {
    font-size: 33px;
    letter-spacing: -1.9px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 330px;
  }
  .hero-actions .button {
    justify-content: space-between;
    min-height: 49px;
  }
  .hero-actions .button-green {
    justify-content: center;
  }
  .hero-benefits {
    gap: 10px;
  }
  .hero-benefits > div:not(:first-child) {
    padding-left: 10px;
  }
  .hero-benefits p {
    font-size: 9px;
  }
  .hero-benefits small {
    font-size: 8px;
  }
  .product-art {
    height: 96px;
  }
  .product-card {
    padding: 13px 10px;
  }
  .product-card h3 {
    font-size: 14px;
  }
  .product-link {
    font-size: 7.5px;
  }
  .catalog-help {
    padding: 15px 12px;
  }
  .catalog-help h3 {
    font-size: 18px;
  }
  .catalog-help p {
    font-size: 9px;
  }
  .catalog-help > .icon {
    margin-bottom: 20px;
  }
  .catalog-help .text-link {
    font-size: 8px;
  }
  .services-grid {
    gap: 0 18px;
  }
  .service-card .text-link {
    font-size: 8px;
  }
  .map-footer {
    font-size: 7.5px;
  }
  .footer .brand-wordmark {
    font-size: 17px;
  }
  .footer .brand-wordmark > span {
    font-size: 11px;
  }
}
html:not(.js) .header-inner {
  height: auto;
  min-height: 90px;
  flex-wrap: wrap;
  padding-block: 14px;
}
html:not(.js) .navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
@media (max-width: 1023px) {
  html:not(.js) .header {
    position: static;
  }
  html:not(.js) .navigation {
    order: 3;
    width: 100%;
  }
  html:not(.js) .navigation a {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  .topbar,
  .header,
  .hero-image,
  .hero-grid,
  .hero-caption,
  .hero-scroll,
  .mobile-contact,
  .quote-form,
  .map-panel,
  .footer,
  .hero-actions,
  .hero-links {
    display: none !important;
  }
  .hero,
  .about-section {
    background: white;
    color: black;
  }
  .hero h1 span,
  .hero-description,
  .hero-benefits p,
  .hero-benefits small,
  .about-copy p {
    color: #333 !important;
  }
  .hero-inner {
    min-height: 0;
    padding-block: 25px;
  }
  .container {
    width: 100%;
  }
  .section,
  .materials-section,
  .about-section {
    padding: 25px 0;
  }
  .product-card,
  .service-card {
    break-inside: avoid;
  }
  .quote-layout {
    display: block;
  }
  .about-layout {
    gap: 30px;
  }
  .about-identity {
    max-width: 250px;
  }
  .hero h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 28px;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  .hero-benefits {
    border-color: #ddd;
  }
  .section-intro {
    width: 280px;
  }
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-art {
    height: 90px;
  }
  .product-card h3 {
    font-size: 14px;
  }
  .product-card > p {
    font-size: 8px;
  }
  .catalog-help h3 {
    font-size: 18px;
  }
  a[href^="tel:"]::after {
    content: "";
  }
}
