@font-face {
  font-family: 'Onest';
  src: url('/assets/onest-cyrillic-wght-normal.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Onest';
  src: url('/assets/onest-latin-wght-normal.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF;
}

:root {
  --background: #FCFCFA;
  --surface: #F3F6F8;
  --text: #17212B;
  --muted: #65717C;
  --accent: #1786C8;
  --accent-soft: #E8F4FA;
  --line: #DCE3E7;
  --footer: #15222C;
  --white: #FFFFFF;
  --danger: #A83A44;
  --shell: 1240px;
  --page-pad: clamp(20px, 3.5vw, 48px);
  --section-space: clamp(72px, 8vw, 104px);
  --card-radius: 18px;
  --control-radius: 11px;
  --header-height: 74px;
  --shadow: 0 22px 55px rgba(23, 33, 43, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--footer); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--background);
  font-family: 'Onest', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-scroll-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--accent);
  border-radius: var(--control-radius);
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(100% - (var(--page-pad) * 2), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section + .section { border-top: 1px solid var(--line); }
.section--surface { background: var(--surface); }
.section--final-cta { color: var(--white); background: var(--footer); border-top: 0 !important; }
.section-kicker, .eyebrow { color: var(--accent); font-size: 14px; font-weight: 700; line-height: 1.25; }
.section-lead, .body-large { max-width: 66ch; color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  background: transparent;
  font-size: 14px;
  font-weight: 720;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--accent { color: var(--white); background: var(--accent); }
.button--accent:hover { background: #126FA8; }
.button--ghost, .button--outline { color: var(--text); border-color: var(--line); background: transparent; }
.button--ghost:hover, .button--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.button--ink { color: var(--white); background: var(--footer); }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
}
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }

.signal-bar { color: rgba(255, 255, 255, .82); background: var(--footer); }
.signal-bar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(252, 252, 250, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-main {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 170px minmax(420px, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.brand { display: inline-flex; align-items: center; }
.brand__image { width: 158px; }
.desktop-nav { display: flex; height: 100%; align-items: stretch; }
.desktop-nav__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 620;
}
.desktop-nav__link:hover { color: var(--accent); background: var(--accent-soft); }
.desktop-nav__button { height: 100%; border: 0; background: transparent; }
.desktop-services { display: flex; align-items: stretch; }
.services-menu {
  position: fixed;
  z-index: 90;
  top: calc(32px + var(--header-height));
  right: 0;
  left: 0;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.services-menu__grid { display: grid; grid-template-columns: 160px 1fr 170px; gap: 36px; padding-block: 28px; }
.services-menu__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.service-nav-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--control-radius);
  font-size: 14px;
  font-weight: 650;
}
.service-nav-link:hover { color: var(--accent); background: var(--accent-soft); }
.services-menu__all { align-self: end; color: var(--accent); font-weight: 700; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; white-space: nowrap; }
.header-phone { font-size: 14px; font-weight: 750; }
.header-contact span { color: var(--muted); font-size: 11px; }
.header-cta { white-space: nowrap; }
.menu-button {
  display: none;
  min-width: 84px;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 13px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--background);
  font-size: 13px;
  font-weight: 700;
}
.menu-button__icon, .menu-button__icon::before { display: block; width: 18px; height: 1px; content: ''; background: currentColor; }
.menu-button__icon::before { transform: translateY(6px); }
.no-script-links { border-top: 1px solid var(--line); }
.no-script-links > div { display: flex; flex-wrap: wrap; gap: 4px 14px; padding-block: 8px; }
.no-script-links a { display: inline-flex; min-height: 44px; align-items: center; }
.js .no-script-links { display: none; }

.drawer-layer { position: fixed; z-index: 300; inset: 0; }
.drawer-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(21, 34, 44, .72); }
.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 460px);
  height: 100%;
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
  color: var(--white);
  background: var(--footer);
}
.mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.mobile-drawer__title { font-size: 13px; font-weight: 700; }
.drawer-close { width: 48px; min-height: 48px; color: var(--white); border: 1px solid rgba(255, 255, 255, .25); border-radius: var(--control-radius); background: transparent; font-size: 28px; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav > a, .mobile-nav__group {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  font-size: clamp(20px, 5vw, 27px);
  font-weight: 650;
  text-align: left;
}
.mobile-nav__nested { padding-block: 8px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.mobile-nav__nested .service-nav-link { min-height: 48px; color: rgba(255, 255, 255, .78); }
.mobile-nav__nested .service-nav-link:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
.mobile-drawer__contact { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 44px; }
.mobile-drawer__contact > a { font-size: 17px; font-weight: 700; }

.hero--commercial { padding-block: clamp(48px, 6vw, 76px); background: var(--surface); border-bottom: 1px solid var(--line); }
.hero-commercial__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(410px, .78fr); align-items: center; gap: clamp(48px, 7vw, 94px); }
.hero-copy h1, .inner-hero h1, .product-hero h1, .not-found h1 {
  max-width: 800px;
  margin: 18px 0 22px;
  font-size: clamp(56px, 5.2vw, 68px);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -.045em;
}
.hero-lead { max-width: 62ch; color: var(--muted); font-size: clamp(17px, 1.55vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.hero-proofs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.hero-proof { min-width: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.hero-proof dt { font-size: 16px; font-weight: 750; }
.hero-proof dd { margin-top: 3px; color: var(--muted); font-size: 12px; }

.quick-request { padding: clamp(24px, 3.3vw, 38px); background: var(--white); border: 1px solid rgba(23, 33, 43, .06); border-radius: 20px; box-shadow: var(--shadow); }
.quick-request__head h2 { margin: 8px 0 8px; font-size: clamp(27px, 2.6vw, 36px); line-height: 1.08; letter-spacing: -.035em; }
.quick-request__head > p:last-child { color: var(--muted); font-size: 14px; }
.request-form--quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 12px; margin-top: 24px; }
.request-form label { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.request-form label > span { font-size: 12px; font-weight: 650; }
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--background);
}
.request-form input:hover, .request-form select:hover { border-color: #B9C5CC; }
.request-form input:focus, .request-form select:focus { border-color: var(--accent); outline: 0; box-shadow: 0 0 0 3px var(--accent-soft); }
.request-form input[aria-invalid="true"], .request-form select[aria-invalid="true"] { border-color: var(--danger); }
.request-form small { min-height: 14px; color: var(--danger); font-size: 11px; }
.request-form--quick .form-status { grid-column: 1 / -1; }
.request-form--quick .button { grid-column: 1 / -1; }
.form-status { color: var(--muted); font-size: 11px; }

.section-head { max-width: 840px; margin-bottom: clamp(34px, 4vw, 52px); }
.section-head h2 { margin-top: 10px; font-size: clamp(36px, 4vw, 48px); font-weight: 730; line-height: 1.06; letter-spacing: -.04em; }
.section-head .section-lead { margin-top: 15px; }
.section-head--split { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 28px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.product-card__media { display: block; aspect-ratio: 1.28; overflow: hidden; background: var(--surface); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__body { display: flex; min-height: 280px; flex: 1; flex-direction: column; align-items: flex-start; padding: 22px; }
.product-card h3 { font-size: clamp(23px, 2vw, 28px); line-height: 1.1; letter-spacing: -.03em; }
.product-card p { display: -webkit-box; margin-top: 12px; overflow: hidden; color: var(--muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card strong { margin-top: 18px; color: var(--text); font-size: 14px; }
.product-card .text-link { margin-top: auto; padding-top: 14px; font-size: 13px; }
.price-note { margin-top: 16px; color: var(--muted); font-size: 12px; }

.trust-strip { padding-block: 32px; background: var(--accent-soft); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { display: flex; min-height: 64px; flex-direction: column; justify-content: center; padding: 0 26px; border-right: 1px solid rgba(23, 134, 200, .18); }
.trust-strip__grid > div:first-child { padding-left: 0; }
.trust-strip__grid > div:last-child { padding-right: 0; border-right: 0; }
.trust-strip strong { font-size: 15px; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.production-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .8fr); align-items: center; gap: clamp(48px, 7vw, 92px); }
.production-feature figure { overflow: hidden; border-radius: var(--card-radius); background: var(--surface); }
.production-feature figure img { width: 100%; aspect-ratio: 1.48; object-fit: cover; }
.production-feature .section-head { margin-bottom: 26px; }
.feature-list { list-style: none; border-top: 1px solid var(--line); }
.feature-list li { position: relative; padding: 13px 8px 13px 24px; border-bottom: 1px solid var(--line); font-weight: 600; }
.feature-list li::before { position: absolute; top: 21px; left: 2px; width: 7px; height: 7px; content: ''; border-radius: 50%; background: var(--accent); }
.production-feature .text-link { margin-top: 20px; }

.section--prices { background: var(--surface); }
.price-preview { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 22px 32px; }
.price-preview__list { grid-column: 1 / -1; border-top: 1px solid var(--line); }
.price-preview__list > div { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.price-preview__list span { color: var(--muted); }
.price-preview__list strong { white-space: nowrap; }
.price-preview .price-note { margin: 0; }

.commercial-process { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: process; }
.commercial-process li { position: relative; min-height: 160px; padding: 28px 28px 24px 62px; border: 1px solid var(--line); border-right: 0; counter-increment: process; }
.commercial-process li:first-child { border-radius: var(--card-radius) 0 0 var(--card-radius); }
.commercial-process li:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--card-radius) var(--card-radius) 0; }
.commercial-process li::before { position: absolute; top: 27px; left: 24px; color: var(--accent); content: counter(process); font-weight: 750; }
.commercial-process h3 { font-size: 20px; line-height: 1.2; }
.commercial-process p { margin-top: 10px; color: var(--muted); font-size: 14px; }

.section--review { background: var(--background); }
.review-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(46px, 7vw, 90px); }
.review-layout .section-head { margin-bottom: 14px; }
.review-stage { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.review-card { display: grid; min-height: 390px; place-items: center; padding: clamp(24px, 4vw, 52px); }
.review-card img { width: auto; max-height: 300px; border: 1px solid var(--line); box-shadow: 0 12px 24px rgba(23, 33, 43, .10); }
.review-card figcaption { position: absolute; top: 16px; right: 18px; color: var(--muted); font-size: 11px; }
.carousel-controls { display: flex; align-items: center; justify-content: flex-end; border-top: 1px solid var(--line); }
.carousel-controls button { width: 54px; min-height: 54px; border: 0; border-left: 1px solid var(--line); background: transparent; font-size: 20px; }
.carousel-controls button:hover { color: var(--accent); background: var(--accent-soft); }
.carousel-controls p { padding-inline: 16px; color: var(--muted); font-size: 12px; font-weight: 650; }
.review-page { max-width: 820px; }

.contacts-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.contacts-panel__info { padding: clamp(30px, 5vw, 62px); }
.contacts-panel__info h2 { margin: 14px 0 26px; font-size: clamp(34px, 3.8vw, 48px); line-height: 1.06; letter-spacing: -.04em; }
.contacts-panel__info address { max-width: 22ch; font-size: 20px; font-style: normal; font-weight: 700; }
.contact-lines { display: flex; flex-direction: column; align-items: flex-start; margin: 22px 0; }
.contact-lines > * { display: inline-flex; min-height: 36px; align-items: center; }
.contact-lines a { font-weight: 700; }
.contact-poster { display: flex; min-height: 420px; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 4vw, 50px); color: var(--white); background: var(--accent); }
.contact-poster > span { color: rgba(255, 255, 255, .72); font-size: 12px; }
.contact-poster strong { margin: auto 0 24px; font-size: clamp(58px, 8vw, 96px); line-height: .9; letter-spacing: -.07em; }
.contact-poster .button { align-self: flex-start; }
.map-card { position: relative; min-height: 470px; overflow: hidden; background: var(--accent-soft); }
.map-card__grid { position: absolute; inset: 0; border: 28px solid rgba(255, 255, 255, .34); }
.map-card__grid::before, .map-card__grid::after { position: absolute; content: ''; background: rgba(23, 134, 200, .2); }
.map-card__grid::before { top: 48%; right: -30px; left: -30px; height: 2px; transform: rotate(-12deg); }
.map-card__grid::after { top: -30px; bottom: -30px; left: 61%; width: 2px; transform: rotate(8deg); }
.map-pin { position: absolute; z-index: 2; top: 46%; left: 57%; width: 24px; height: 24px; border: 7px solid var(--footer); border-radius: 50% 50% 50% 0; background: var(--white); transform: rotate(-45deg); }
.map-card__content { position: absolute; z-index: 3; right: 22px; bottom: 22px; left: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.map-card__content p { width: 100%; font-size: 18px; font-weight: 720; }
.map-card iframe { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; border: 0; }

.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.social-link { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; font-size: 12px; font-weight: 650; }
.social-link img { width: 32px; height: 32px; }

.inner-hero { padding-block: clamp(58px, 7vw, 84px); background: var(--surface); border-bottom: 1px solid var(--line); }
.inner-hero h1 { margin-bottom: 18px; }
.inner-hero .shell > p:not(.section-kicker) { max-width: 64ch; color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); }
.inner-hero .button { margin-top: 26px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--accent); }
.related-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(46px, 8vw, 110px); }
.tag-list { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 9px; list-style: none; }
.tag-list li { padding: 10px 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--control-radius); font-weight: 620; }

.product-hero { padding-block: clamp(44px, 6vw, 72px); background: var(--surface); border-bottom: 1px solid var(--line); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr); align-items: center; gap: clamp(44px, 7vw, 86px); }
.product-detail h1 { margin-top: 14px; }
.product-detail figure { overflow: hidden; border-radius: var(--card-radius); background: var(--white); }
.product-detail figure img { width: 100%; aspect-ratio: 1.3; object-fit: cover; }
.product-story { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 110px); }
.product-story .section-head { margin: 0; }
.product-story > div:last-child p { max-width: 66ch; margin-bottom: 18px; color: var(--muted); font-size: 18px; }
.product-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(48px, 8vw, 110px); }
.product-facts h2 { margin-bottom: 20px; font-size: 29px; letter-spacing: -.03em; }
.use-list, .compact-steps { list-style: none; border-top: 1px solid var(--line); }
.use-list li, .compact-steps li { position: relative; min-height: 54px; padding: 14px 8px 14px 24px; border-bottom: 1px solid var(--line); font-weight: 600; }
.use-list li::before, .compact-steps li::before { position: absolute; top: 22px; left: 2px; width: 7px; height: 7px; content: ''; border-radius: 50%; background: var(--accent); }
.related-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-products a { display: flex; overflow: hidden; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.related-products img { width: 100%; aspect-ratio: 1.8; object-fit: cover; }
.related-products strong { padding: 16px 18px 0; font-size: 20px; }
.related-products span { padding: 6px 18px 18px; color: var(--accent); font-size: 13px; font-weight: 650; }

.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-list article { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.benefit-list h2 { font-size: 22px; letter-spacing: -.025em; }
.benefit-list p { margin-top: 8px; color: var(--muted); }

.price-page { display: grid; gap: 40px; }
.price-page__notice { display: grid; grid-template-columns: 110px 1fr; padding: 18px 20px; background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: var(--control-radius); }
.price-page__notice p { color: var(--muted); }
.price-table-wrap { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.price-table-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 22px; border-bottom: 1px solid var(--line); }
.price-table-title h3 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -.035em; }
.price-table-title p { max-width: 48ch; color: var(--muted); font-size: 13px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; min-width: 780px; border-collapse: collapse; font-size: 13px; }
th, td { height: 52px; padding: 10px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: right; white-space: nowrap; }
thead th { color: var(--white); background: var(--footer); font-size: 11px; font-weight: 650; }
tbody th { text-align: left; }
tbody tr:hover { background: var(--accent-soft); }
.price-table-wrap > .price-note { padding: 0 22px 18px; }
.cardboard-prices { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; padding: clamp(28px, 4vw, 52px); color: var(--white); background: var(--footer); border-radius: var(--card-radius); }
.cardboard-prices h2 { margin-top: 10px; font-size: clamp(32px, 3.5vw, 46px); line-height: 1.06; letter-spacing: -.04em; }
.cardboard-prices > div:last-child { display: grid; gap: 1px; background: rgba(255, 255, 255, .14); }
.cardboard-prices article { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 18px; background: var(--footer); }
.cardboard-prices article strong { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #72C1EE; font-size: 23px; }
.cardboard-prices article p, .cardboard-prices article span { color: rgba(255, 255, 255, .6); font-size: 12px; }

.contact-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-facts > div { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--card-radius); }
.contact-facts h2 { font-size: 24px; }
.contact-facts p { margin-top: 6px; color: var(--muted); }

.final-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { margin-top: 9px; font-size: clamp(34px, 4vw, 48px); line-height: 1.06; letter-spacing: -.04em; }
.final-cta p:not(.section-kicker) { max-width: 60ch; margin-top: 10px; color: rgba(255, 255, 255, .65); }
.final-cta__actions { display: flex; min-width: 230px; flex-direction: column; align-items: flex-start; gap: 7px; }
.final-cta__actions > a:not(.button) { min-height: 30px; font-weight: 650; }

.site-footer { padding-top: 72px; color: var(--white); background: var(--footer); border-top: 1px solid rgba(255, 255, 255, .14); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .6fr 1fr; gap: clamp(38px, 7vw, 100px); padding-bottom: 58px; }
.footer-brand img { width: 158px; padding: 7px; background: var(--white); border-radius: 6px; }
.footer-brand > p { max-width: 360px; margin-top: 22px; color: rgba(255, 255, 255, .6); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.footer-nav .eyebrow, .footer-contact .eyebrow { margin-bottom: 10px; color: rgba(255, 255, 255, .45); }
.footer-nav a, .footer-contact a { display: inline-flex; min-height: 36px; align-items: center; font-weight: 650; }
.footer-contact p:not(.eyebrow) { color: rgba(255, 255, 255, .58); }
.footer-bottom { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: 11px; }
.amg-credit { display: inline-flex; min-height: 60px; align-items: center; gap: 8px; }
.amg-credit img { width: 32px; height: 32px; }
.amg-credit span:last-child { color: rgba(255, 255, 255, .48); }

.not-found { padding-block: clamp(80px, 12vw, 150px); }
.not-found__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.not-found__grid > strong { color: var(--accent-soft); font-size: clamp(130px, 22vw, 300px); line-height: .65; letter-spacing: -.1em; }

@media (max-width: 1179px) {
  .header-main { grid-template-columns: 158px minmax(360px, 1fr) auto; }
  .header-contact { display: none; }
  .desktop-nav__link { padding-inline: 9px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card__body { min-height: 250px; }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .signal-bar__inner p:last-child, .desktop-nav, .header-cta { display: none; }
  .header-main { grid-template-columns: 1fr auto; }
  .js .menu-button { display: inline-flex; }
  .services-menu { display: none; }
  .hero-commercial__grid, .production-feature, .review-layout, .product-detail, .product-story { grid-template-columns: 1fr; }
  .hero-commercial__grid { gap: 38px; }
  .quick-request { width: min(100%, 680px); }
  .production-feature figure { order: 2; }
  .contacts-panel { grid-template-columns: 1fr; }
  .contact-poster, .map-card { min-height: 400px; }
  .related-layout { grid-template-columns: 1fr; }
  .product-story { gap: 30px; }
  .final-cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --page-pad: 18px; --section-space: 64px; }
  .signal-bar__inner { min-height: 28px; }
  .brand__image { width: 142px; }
  .menu-button { min-height: 44px; }
  .hero--commercial { padding-block: 42px 54px; }
  .hero-copy h1, .inner-hero h1, .product-hero h1, .not-found h1 { font-size: clamp(38px, 11vw, 46px); line-height: 1.04; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proofs { grid-template-columns: 1fr; gap: 8px; margin-top: 30px; }
  .hero-proof { display: grid; grid-template-columns: minmax(110px, .7fr) 1fr; gap: 12px; padding-top: 10px; }
  .request-form--quick { grid-template-columns: 1fr; }
  .request-form--quick .form-status, .request-form--quick .button { grid-column: auto; }
  .quick-request { padding: 22px 18px; border-radius: 16px; }
  .section-head h2 { font-size: clamp(34px, 9.8vw, 42px); }
  .section-head--split { display: grid; align-items: start; }
  .product-grid {
    display: grid;
    width: auto;
    grid-template-columns: none;
    grid-auto-columns: calc(100% - 42px);
    grid-auto-flow: column;
    gap: 12px;
    margin-inline: calc(var(--page-pad) * -1);
    padding: 0 42px 12px var(--page-pad);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .product-card { scroll-snap-align: start; }
  .product-card__body { min-height: 270px; }
  .product-price-note { margin-top: 12px; }
  .trust-strip { padding-block: 20px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div, .trust-strip__grid > div:first-child, .trust-strip__grid > div:last-child { min-height: 58px; padding: 9px 0; border-right: 0; border-bottom: 1px solid rgba(23, 134, 200, .18); }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .production-feature { gap: 32px; }
  .price-preview { grid-template-columns: 1fr; align-items: start; }
  .price-preview__list, .price-preview .price-note { grid-column: auto; }
  .price-preview__list > div { align-items: flex-start; flex-direction: column; gap: 2px; padding: 12px 4px; }
  .commercial-process { grid-template-columns: 1fr; }
  .commercial-process li { min-height: 130px; border-right: 1px solid var(--line); border-bottom: 0; }
  .commercial-process li:first-child { border-radius: var(--card-radius) var(--card-radius) 0 0; }
  .commercial-process li:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 var(--card-radius) var(--card-radius); }
  .review-card { min-height: 340px; }
  .contacts-panel__info { padding-inline: 22px; }
  .contact-poster strong { font-size: 17vw; }
  .map-card__content { right: 14px; bottom: 14px; left: 14px; }
  .product-facts, .related-products, .benefit-list, .contact-facts { grid-template-columns: 1fr; }
  .related-products img { aspect-ratio: 1.9; }
  .price-page__notice, .cardboard-prices { grid-template-columns: 1fr; gap: 24px; }
  .price-table-title { display: block; }
  .price-table-title p { margin-top: 8px; }
  .cardboard-prices article { grid-template-columns: 1fr; }
  .cardboard-prices article strong { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .amg-credit { flex-wrap: wrap; }
  .not-found__grid { grid-template-columns: 1fr; }
  .not-found__grid > strong { grid-row: 1; font-size: 40vw; }
}

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