@charset "UTF-8";

:root {
  --green: #43b02a;
  --green-dark: #188c2b;
  --green-soft: #e9f7e7;
  --ink: #202834;
  --muted: #697482;
  --line: #dfe5ea;
  --surface: #f6f8fa;
  --footer: #202a31;
  --wrap: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
picture { display: block; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.sprite { display: none; }
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(35, 45, 55, .06);
}
.topline {
  min-height: 39px;
  background: #fafafa;
  border-bottom: 1px solid #e9edf0;
  font-size: 14px;
}
.topline__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 39px;
}
.topline p, .topline nav, .topline a {
  display: flex;
  align-items: center;
}
.topline p {
  margin: 0;
  gap: 8px;
  font-weight: 650;
}
.topline p svg { width: 17px; color: var(--green); stroke-width: 2.6; }
.topline nav, .topline__contacts { gap: 34px; color: #202832; font-weight: 600; }
.topline a svg { width: 14px; height: 14px; margin-left: 4px; color: var(--green); }
.topline-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  color: #202832;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease;
}
.topline-copy-btn:hover {
  color: var(--green);
}
.topline-copy-btn svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  transition: transform 0.15s ease;
}
.topline-copy-btn:hover svg {
  transform: scale(1.1);
}
.topline-copy-btn.is-copied {
  color: var(--green-dark);
}
.topline-copy-btn.is-copied svg {
  color: var(--green-dark);
}

.header-main {
  min-height: 90px;
  display: grid;
  grid-template-columns: 190px 112px minmax(320px, 1fr) 250px 194px;
  align-items: center;
  gap: 26px;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}
.logo img {
  width: 123px;
  height: 41px;
  object-fit: contain;
}
.catalog-button,
.quote-button,
.button,
.cart-button,
.request-form button[type="submit"] {
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
}
.catalog-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
.catalog-button svg { width: 19px; }
.search {
  height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid #cbd4dc;
  border-radius: 4px;
  background: #fff;
}
.search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--ink);
  font-size: 15px;
}
.search button {
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #1f2832;
}
.header-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 15px;
}
.header-tools a {
  position: relative;
  min-height: 52px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: #202832;
  font-size: 13px;
  font-weight: 650;
}
.header-tools svg { width: 24px; height: 24px; }
.cart-link em,
.favorites-link em {
  position: absolute;
  top: 6px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}
.quote-button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
}
.main-nav {
  border-top: 1px solid #edf0f2;
}
.main-nav__inner {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
  color: #36404a;
  white-space: nowrap;
}

.hero {
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 33%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 68%), image-set(url("data/bg-hero-new.avif") type("image/avif"), url("data/bg-hero-new.webp") type("image/webp")) right center / cover no-repeat;
}
.hero__inner {
  min-height: 430px;
  display: grid;
  align-content: center;
  position: relative;
  padding: 44px 0 82px;
}
.hero__copy {
  width: 610px;
}
.hero h1 {
  margin: 0;
  font-size: 45px;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #252d39;
}
.hero p {
  margin: 24px 0 28px;
  font-size: 19px;
  line-height: 1.48;
  font-weight: 500;
  color: #394351;
}
.hero__actions {
  display: flex;
  gap: 22px;
}
.button {
  min-width: 210px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 16px;
}
.button--outline {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
}
.hero-benefits {
  position: absolute;
  left: 0;
  bottom: 25px;
  display: flex;
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #202b35;
  font-size: 14px;
  line-height: 1.23;
  font-weight: 650;
}
.hero-benefits svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  flex: none;
}

.categories {
  padding-top: 22px;
}
.category-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.category-grid-sub {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  padding-bottom: 8px; /* Extra padding to avoid shadow cutting */
  margin-bottom: 12px;
}
.category-grid-sub::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}
.category-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-rows: 112px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(32, 42, 52, .05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 42, 52, 0.1);
}
.category-grid-sub .category-card {
  flex: 0 0 calc(12.5% - 14px); /* Exact width calculation for 8 items with 16px gaps */
  min-width: 140px; /* Prevent card content from shrinking too much */
}
.category-card--large {
  min-height: 245px;
  grid-template-rows: 150px 1fr;
}
.category-card picture {
  width: 100%;
  height: 112px;
  display: block;
  overflow: hidden;
  background: #fff;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px 12px 2px;
}
.category-card--large picture {
  height: 150px;
}
.category-card--large img {
  padding: 16px 16px 2px;
}
.category-card span {
  align-self: center;
  padding: 10px 16px 13px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 650;
  text-align: center;
  width: 100%;
}
.category-card--large span {
  padding: 12px 16px 14px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.category-card svg {
  display: none; /* Hide arrows for clean centered design */
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 26px 0 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 15px;
  font-weight: 750;
}
.section-head svg { width: 17px; height: 17px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.product-card {
  position: relative;
  min-height: 326px;
  display: grid;
  grid-template-rows: 112px auto auto auto auto;
  padding: 16px 13px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(32, 42, 52, .04);
}
.favorite {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a1a9b2;
}
.favorite svg { width: 19px; height: 19px; }
.favorite.is-active { color: var(--green); }
.favorite.is-active svg { fill: currentColor; }
.product-card picture {
  display: block;
  width: 100%;
  height: 108px;
  margin-bottom: 3px;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card h3 {
  margin: 10px 0 4px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
}
.product-card h3 a {
  transition: color 0.15s ease;
}
.product-card h3 a:hover {
  color: var(--green-dark);
}
.product-card p {
  min-height: 47px;
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.34;
  color: #3d4650;
}
.product-card p a {
  transition: color 0.15s ease;
}
.product-card p a:hover {
  color: var(--green-dark);
}
.product-card small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 650;
}
.product-card small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.product-card b {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.2;
}
.cart-button {
  height: 31px;
  margin-top: 11px;
  font-size: 13px;
}
.cart-button--outline {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
}
.cart-button.is-added {
  background: #268116;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid #e2e8ec;
  border-radius: 5px;
  background: #fbfcfd;
}
.advantages article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 7px 14px;
  padding: 18px;
  border-right: 1px solid #e2e8ec;
}
.advantages article:last-child { border-right: 0; }
.advantages svg {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  color: var(--green);
}
.advantages h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.18;
}
.advantages p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #66717d;
}

.service-banner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
  padding: 24px 46px 24px 30px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, rgba(12, 98, 23, .98), rgba(14, 119, 27, .86)), image-set(url("data/kompleksnie-reshenia-valmet.avif") type("image/avif"), url("data/kompleksnie-reshenia-valmet.webp") type("image/webp")) center / cover no-repeat;
}
.service-banner h2 {
  margin: 0 0 7px;
  font-size: 27px;
  line-height: 1.12;
}
.service-banner p, .service-banner span {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}
.service-banner span {
  margin-top: 2px;
  color: rgba(255,255,255,.86);
}
.service-banner a {
  flex: 0 0 260px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 2.1fr repeat(4, 1fr);
  gap: 16px;
}
.solutions-grid article {
  position: relative;
  min-height: 211px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: 21px 17px;
}
.solution-main {
  padding: 0 !important;
}
.solution-main picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 211px;
}
.solution-main img {
  width: 100%;
  height: 100%;
  min-height: 211px;
  object-fit: cover;
}
.solutions-grid h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.15;
}
.solutions-grid p {
  max-width: 150px;
  margin: 0 0 13px;
  font-size: 13px;
  line-height: 1.34;
  color: #4d5864;
}
.solutions-grid a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}
.solutions-grid a svg { width: 15px; height: 15px; }
.solutions-grid article:not(.solution-main) picture {
  position: absolute;
  right: -8px;
  bottom: 2px;
  width: 128px;
  height: 94px;
}
.solutions-grid article:not(.solution-main) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-worker {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 122px;
  height: 132px;
  background:
    radial-gradient(circle at 50% 20%, #ffd9b0 0 14px, transparent 15px),
    linear-gradient(20deg, transparent 0 38%, #fff 38% 48%, transparent 48%),
    linear-gradient(90deg, transparent 0 20%, #43b02a 20% 75%, transparent 75%),
    linear-gradient(#dfe6ec, #f8fafb);
  clip-path: polygon(25% 0, 85% 0, 100% 100%, 0 100%);
  opacity: .95;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 28px;
  padding: 19px 0;
}
.stats article {
  min-height: 70px;
  display: grid;
  grid-template-columns: 45px auto;
  align-content: center;
  column-gap: 14px;
  padding: 0 28px;
  border-right: 1px solid #d8e0e6;
}
.stats article:last-child { border-right: 0; }
.stats svg {
  grid-row: span 2;
  width: 41px;
  height: 41px;
  color: var(--green);
}
.stats b {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}
.stats span {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 750;
}

.request {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 29px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 5px 5px 0 0;
  background: #f4f7f9;
}
.request__intro h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}
.request__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 550;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 1.35fr);
  gap: 14px 18px;
  align-items: start;
}
.request-form label {
  display: grid;
  gap: 7px;
  color: #4d5864;
  font-size: 13px;
  font-weight: 750;
}
.request-form input:not([type="file"]):not([type="checkbox"]),
.request-form textarea {
  width: 100%;
  height: 43px;
  border: 1px solid #d3dce3;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 0 14px;
  font-size: 14px;
}
.request-form textarea {
  height: 58px;
  padding-top: 11px;
  resize: vertical;
}
.request-form__message {
  grid-column: 4;
  grid-row: 1;
}
.file-field {
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 7px !important;
}
.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-field span {
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #becbd5;
  border-radius: 3px;
  background: #fff;
  color: #36414d;
}
.file-field svg {
  width: 17px;
  height: 17px;
}
.file-field small {
  color: #6b7580;
  font-size: 13px;
  font-weight: 700;
}
.turnstile-field {
  grid-column: 2 / span 2;
  grid-row: 2;
  height: 65px;
  min-height: 65px;
  display: flex;
  align-items: flex-end;
  align-self: end;
  overflow: hidden;
}
.turnstile-field .cf-turnstile {
  width: 100%;
  min-height: 65px;
}
.request-form__trap {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}
.request-form button[type="submit"] {
  height: 65px;
  grid-column: 4;
  grid-row: 2;
  align-self: end;
  font-size: 14px;
}
.request-form button[type="submit"]:disabled {
  opacity: .65;
  cursor: wait;
}
.privacy-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #4d5864;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.privacy-consent input {
  flex: none;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green);
}
.privacy-consent a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.request-form > .privacy-consent {
  grid-column: 1 / -1;
  grid-row: 3;
}
.form-status {
  grid-column: 3 / 5;
  grid-row: 4;
  margin: 0;
  font-size: 13px;
}
.form-status[data-state="success"] { color: #168928; }
.form-status[data-state="error"] { color: #bf2b35; }

.cookie-informer {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  width: min(1060px, calc(100% - 48px));
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(32, 42, 52, .12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 42, 52, .18);
  transform: translateX(-50%);
}
.cookie-informer.is-hiding {
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
}
.cookie-informer__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--green-soft);
  color: var(--green-dark);
}
.cookie-informer__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}
.cookie-informer p {
  margin: 0;
  color: #3f4a55;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.cookie-informer a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-informer__accept {
  min-width: 128px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.cookie-informer__accept:hover {
  background: var(--green-dark);
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, .92fr);
  gap: 38px;
  align-items: stretch;
  margin-top: 24px;
  padding: 36px;
  border: 1px solid #dfe7ec;
  border-radius: 5px;
  background:
    linear-gradient(110deg, #ffffff 0%, #ffffff 54%, rgba(67, 176, 42, .08) 54%, rgba(67, 176, 42, .03) 100%),
    #fff;
  box-shadow: 0 8px 24px rgba(32, 42, 52, .05);
}
.company__copy {
  display: grid;
  align-content: center;
}
.company__copy span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border-radius: 3px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .45px;
  text-transform: uppercase;
}
.company__copy h2 {
  max-width: 760px;
  margin: 17px 0 16px;
  font-size: 31px;
  line-height: 1.16;
  letter-spacing: -.45px;
}
.company__copy p {
  max-width: 760px;
  margin: 0;
  color: #53606d;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 520;
}
.company__copy p + p {
  margin-top: 12px;
}
.company__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.company__facts article {
  min-height: 146px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px 20px;
  border: 1px solid #dce5eb;
  border-radius: 5px;
  background: rgba(255,255,255,.86);
}
.company__facts svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}
.company__facts b {
  color: #202a34;
  font-size: 20px;
  line-height: 1.15;
}
.company__facts p {
  margin: 0;
  color: #5f6b76;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 550;
}

.faq {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 34px 36px;
  border: 1px solid #dfe7ec;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(67, 176, 42, .1), rgba(67, 176, 42, 0) 42%),
    #fff;
  box-shadow: 0 8px 24px rgba(32, 42, 52, .06);
}
.faq__intro {
  position: relative;
  padding-left: 18px;
}
.faq__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 4px;
  width: 4px;
  border-radius: 999px;
  background: var(--green);
}
.faq__intro span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 3px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .5px;
}
.faq__intro h2 {
  margin: 15px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.3px;
}
.faq__intro p {
  margin: 0;
  color: #5f6b76;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 550;
}
.faq__list {
  display: grid;
  gap: 10px;
}
.faq details {
  overflow: hidden;
  border: 1px solid #dce4ea;
  border-radius: 5px;
  background: #fbfcfd;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.faq details[open] {
  border-color: rgba(67, 176, 42, .55);
  background: #fff;
  box-shadow: 0 8px 18px rgba(35, 47, 58, .07);
}
.faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px 0 22px;
  color: #202a34;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--green);
  transition: transform .2s;
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details p {
  margin: 0;
  padding: 0 58px 20px 22px;
  color: #5c6874;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer {
  width: 100%;
  background: var(--footer);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1.1fr 1.25fr 1.15fr 1.1fr 1.55fr;
  gap: 36px;
  padding: 34px 0 28px;
}
.logo--footer img {
  display: block;
}
.footer-brand p {
  margin: 15px 0 16px;
  max-width: 300px;
  color: #d5dde3;
  font-size: 14px;
  line-height: 1.45;
}
.certificates {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}
.certificates span {
  display: grid;
  place-items: center;
  min-width: 77px;
  min-height: 47px;
  border: 1px solid #8997a2;
  border-radius: 3px;
  background: #fff;
  color: #35404b;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.socials {
  display: flex;
  gap: 11px;
}
.socials a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #66737d;
  border-radius: 5px;
  color: #dce3e8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-grid h3 {
  margin: 5px 0 16px;
  font-size: 15px;
}
.footer-grid nav a,
.footer-contacts a,
.footer-contacts p {
  display: block;
  margin: 0 0 9px;
  color: #d7dfe5;
  font-size: 13px;
  line-height: 1.3;
}
.footer-contacts a,
.footer-contacts p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.footer-contacts svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: none;
}
.footer-bottom {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid #424d55;
  color: #c3ccd3;
  font-size: 13px;
}
.footer-copyright {
  margin: 0;
  color: #a1a9b2;
}
.footer-bottom a {
  align-self: center;
}
.footer-bottom div {
  display: flex;
  gap: 36px;
}

@media (max-width: 1200px) {
  .header-main {
    grid-template-columns: 170px 112px minmax(260px, 1fr) 210px;
  }
  .quote-button { display: none; }
  .main-nav__inner { overflow-x: auto; justify-content: flex-start; }
  .category-grid-large { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .advantages { grid-template-columns: repeat(3, 1fr); }
  .advantages article:nth-child(3n) { border-right: 0; }
  .solutions-grid { grid-template-columns: repeat(4, 1fr); }
  .solution-main { grid-column: span 2; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats article { border-right: 0; }
  .request { grid-template-columns: 1fr; }
  .request-form { grid-template-columns: repeat(2, 1fr); }
  .request-form__message, .request-form button[type="submit"], .turnstile-field, .form-status { grid-column: auto; grid-row: auto; }
  .file-field { grid-row: auto; }
  .company { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .cookie-informer {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .cookie-informer__accept {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .wrap { width: min(var(--wrap), calc(100% - 28px)); }
  .topline nav, .topline__contacts { display: none; }
  .topline { font-size: 12px; }
  .header-main {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .logo img { width: 123px; height: 41px; }
  .catalog-button { width: 116px; }
  .search { grid-column: 1 / -1; }
  .header-tools {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
  .main-nav__inner { min-height: 44px; font-size: 13px; }
  .hero, .hero__inner { min-height: auto; }
  .hero {
    background: #fff;
  }
  .hero__inner {
    align-content: start;
    padding: 34px 0 44px;
  }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .hero-benefits {
    display: none;
  }
  .category-grid-large,
  .product-grid,
  .advantages,
  .solutions-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    display: none;
  }
  .section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .category-card { min-height: 164px; }
  .category-card--large span { font-size: 18px; }
  .advantages article { border-right: 0; border-bottom: 1px solid #e2e8ec; }
  .service-banner { align-items: stretch; flex-direction: column; padding: 24px; }
  .service-banner a { flex: none; width: 100%; }
  .solution-main { grid-column: 1 / -1; }
  .request { padding: 22px 16px; }
  .request-form { grid-template-columns: 1fr; }
  .file-field { grid-column: auto; grid-row: auto; grid-template-columns: 1fr; }
  .turnstile-field { grid-column: auto; grid-row: auto; }
  .company { padding: 24px 18px; margin-top: 18px; }
  .company__copy h2 { font-size: 24px; }
  .company__copy p { font-size: 15px; }
  .company__facts { grid-template-columns: 1fr; }
  .company__facts article { min-height: 0; padding: 18px; }
  .faq { padding: 24px 18px; margin-top: 18px; }
  .faq__intro h2 { font-size: 24px; }
  .faq summary { min-height: 58px; padding: 0 15px; font-size: 15px; }
  .faq details p { padding: 0 15px 17px; font-size: 14px; }
  .footer-bottom { justify-content: flex-start; flex-wrap: wrap; padding: 10px 0; }
  .cookie-informer {
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .cookie-informer__icon {
    display: none;
  }
  .cookie-informer p {
    font-size: 14px;
  }
}

@media (max-width: 460px) {
  .category-grid-large,
  .product-grid,
  .advantages,
  .solutions-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 31px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .product-card { min-height: 295px; }
}

/* Catalog Drawer (Slide-out Sidebar Menu) */
.catalog-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.3s ease;
}
.catalog-drawer.is-active {
  visibility: visible;
}
.catalog-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 40, 52, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.catalog-drawer.is-active .catalog-drawer__overlay {
  opacity: 1;
}
.catalog-drawer__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 24px rgba(32, 42, 52, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog-drawer.is-active .catalog-drawer__content {
  transform: translateX(0);
}
.catalog-drawer__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog-drawer__title {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: var(--ink);
}
.catalog-drawer__close {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.catalog-drawer__close:hover {
  color: var(--green-dark);
}
.catalog-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.catalog-drawer__category {
  margin-bottom: 24px;
}
.catalog-drawer__category-title {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.catalog-drawer__category-title:hover {
  color: var(--green-dark);
}
.catalog-drawer__subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--green-soft);
  padding-left: 14px;
  display: grid;
  gap: 8px;
}
.catalog-drawer__subcategory-list a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.catalog-drawer__subcategory-list a:hover {
  color: var(--green-dark);
  font-weight: 750;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}
.toast-notification.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Search Autocomplete Dropdown */
.search {
  position: relative;
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(32, 42, 54, 0.12);
  z-index: 100;
  max-height: 380px;
  overflow-y: auto;
  display: none;
}
.search-results.is-active {
  display: block;
}
.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}
.search-item:last-child {
  border-bottom: 0;
}
.search-item:hover,
.search-item.is-selected {
  background: var(--surface);
}
.search-item__image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 4px;
  padding: 2px;
  flex-shrink: 0;
}
.search-item__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.search-item__sku {
  font-size: 13px;
  font-weight: 750;
  color: var(--ink);
  line-height: 1.2;
}
.search-item__name {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.search-item__price {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
