:root {
  --ink: #111827;
  --ink-soft: #4b5563;
  --paper: #f7f8fa;
  --paper-2: #eef0f3;
  --surface: #ffffff;
  --white: #ffffff;
  --line: #e2e6eb;
  --line-soft: #eceff3;
  --copper: #b8520f;
  --copper-2: #c45a12;
  --steel: #142f42;
  --steel-2: #1a5270;
  --muted: #6b7280;
  --ok: #2f7d57;
  --danger: #b42318;
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-lg: 0 8px 24px rgba(17, 24, 39, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --header: auto;
  --wrap: min(1200px, calc(100% - 32px));
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --display: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --header-hit: 38px;
  --header-icon: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
svg.lucide {
  width: 18px;
  height: 18px;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.8;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a.btn, .icon-btn, .header-search-wrap input, .tab, .catalog-more a {
  touch-action: manipulation;
}
button { cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 12px; z-index: 200; background: #fff; padding: 8px 12px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1200px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
}

/* Header — two-tier */
.site-header {
  --header-top-h: 36px;
  --header-main-h: 64px;
  --header-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-hit: 38px;
  --header-icon: 18px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.35s var(--header-ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
}
.site-header.is-scrolled .header-top {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

/* Utility bar */
.header-top {
  background: var(--steel);
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: var(--header-top-h);
  opacity: 1;
  overflow: hidden;
  transition:
    max-height 0.32s var(--header-ease),
    opacity 0.24s ease,
    border-color 0.24s ease;
}
.header-top-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-top-h);
  font-size: 12px;
}
.header-top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-top-nav a {
  padding: 4px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.16s ease, background 0.16s ease;
}
.header-top-nav a:hover,
.header-top-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Main bar */
.header-main {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 47, 66, 0.08);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}
.site-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: transparent;
}
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-main-h);
  position: static;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  min-width: 0;
  max-width: min(240px, 34vw);
  transition: opacity 0.18s ease;
}
.site-header .logo:hover { opacity: 0.72; }
.site-header .logo img {
  width: 40px;
  height: 40px;
  max-width: none;
  flex: none;
}
.logo-stack {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.15;
}
.logo-stack b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-stack small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-nav {
  flex: 1;
  min-width: 0;
  height: var(--header-main-h);
  overflow: visible;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  min-width: 0;
  height: 100%;
}
.nav > a,
.nav .has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0 12px;
  height: 36px;
  color: #4a5158;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-chevron {
  width: 13px !important;
  height: 13px !important;
  opacity: 0.38;
  transition: transform 0.22s var(--header-ease), opacity 0.18s ease;
}
.nav > a:hover,
.nav .has-mega > a:hover,
.nav > a.is-active,
.nav .has-mega > a.is-active,
.has-mega.is-open > a,
.has-mega:focus-within > a {
  color: #111;
  background: #f3f5f7;
}
.has-mega {
  position: static;
  display: flex;
  align-items: center;
}
.has-mega > a { font-weight: 600; color: #2f353b; }
.has-mega:hover > a .nav-chevron,
.has-mega.is-open > a .nav-chevron,
.has-mega:focus-within > a .nav-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  margin-left: auto;
}
.header-contacts {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: none;
  padding-left: 8px;
  margin-left: 2px;
  border-left: 1px solid #ececec;
}
.header-contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: var(--header-hit);
  height: var(--header-hit);
  padding: 0 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.header-contact-phone span { display: none; }
.header-contact-phone svg.lucide { width: 18px; height: 18px; flex: none; color: var(--steel); }
.header-contact-phone:hover { background: #f3f5f7; color: var(--steel); }
.header-contact-msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-hit);
  height: var(--header-hit);
  min-width: var(--header-hit);
  border-radius: 10px;
  color: #5c6570;
  transition: background 0.18s ease, color 0.18s ease;
}
.header-contact-msg svg.lucide { width: 18px; height: 18px; }
.header-contact-msg:hover { background: #f3f5f7; color: #111; }
.header-contact-max img {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
@media (min-width: 1280px) {
  .header-contact-phone span { display: inline; }
  .header-contact-phone { padding: 0 10px 0 8px; }
}
.header-search-wrap {
  position: relative;
  width: 220px;
  max-width: 220px;
  min-width: 0;
  z-index: 5;
  overflow: visible;
  transition: width 0.24s var(--header-ease), max-width 0.24s var(--header-ease);
}
.header-search-wrap.is-open,
.header-search-wrap:focus-within {
  width: 280px;
  max-width: 280px;
  z-index: 300;
}
.header-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #6b7280;
  pointer-events: none;
  z-index: 1;
}
.header-search-wrap input[data-search-input] {
  width: 100%;
  height: var(--header-hit);
  padding: 0 52px 0 36px;
  border: 1px solid #e2e6eb;
  border-radius: 10px;
  background: #f7f8fa;
  color: #111;
  font-size: 13px;
  appearance: none;
  cursor: text;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.header-search-wrap input[data-search-input]::placeholder {
  color: #a0a6ad;
  opacity: 1;
}
.header-search-wrap:focus-within input[data-search-input],
.header-search-wrap.is-open input[data-search-input] {
  border-color: #d9dee5;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 47, 66, 0.07);
}
.header-search-kbd {
  display: inline-flex;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 6px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9aa1a8;
  background: #f4f6f8;
  border: 1px solid #e6eaee;
  border-radius: 5px;
  pointer-events: none;
}
.search-dropdown {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  max-height: min(440px, 70vh);
  overflow: auto;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
  z-index: 1000;
  padding: 8px;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.search-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.search-group { padding: 2px 0; }
.search-group + .search-group { border-top: 1px solid #f0f2f5; margin-top: 4px; padding-top: 6px; }
.search-group-label {
  padding: 6px 10px 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa0a6;
  font-weight: 600;
}
.search-item {
  display: block;
  padding: 10px 12px;
  line-height: 1.35;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.search-item:hover,
.search-item:focus-visible {
  background: #f4f6f8;
  outline: none;
}
.search-item-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.search-item-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #888;
}
.search-hint,
.search-loading,
.search-empty {
  color: #888;
  padding: 16px 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 90;
  background: #fff;
  border-top: 1px solid #e8ecf0;
  box-shadow: 0 28px 64px rgba(17, 24, 39, 0.1);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.22s var(--header-ease),
    transform 0.22s var(--header-ease),
    visibility 0.22s;
}
.mega-inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
@media (hover: hover) and (min-width: 1101px) {
  .has-mega:hover .mega,
  .has-mega:focus-within .mega { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
}
.has-mega.is-open .mega { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.mega-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 28px 0 26px;
}
.mega-aside { padding-top: 6px; }
.mega-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9aa0a6;
}
.mega-lead {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1.25;
}
.mega-aside-text {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  max-width: 28ch;
}
.mega-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--steel);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.16s ease;
}
.mega-all svg.lucide { width: 14px; height: 14px; }
.mega-all:hover { background: var(--steel-2); color: #fff; }
.mega-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 6px;
  align-content: start;
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 48px;
  padding: 8px 10px;
  color: #111;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background 0.16s ease;
}
.mega-cat:hover { background: #f4f6f8; }
.mega-cat.is-featured .mega-cat-icon {
  background: var(--steel);
  color: #fff;
}
.mega-cat.is-featured:hover .mega-cat-icon {
  background: var(--steel-2);
  color: #fff;
}
.mega-cat-icon {
  width: 36px;
  height: 36px;
  color: var(--steel);
  background: #eef2f6;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.16s ease, color 0.16s ease;
}
.mega-cat-icon svg.lucide { width: 16px; height: 16px; }
.mega-cat:hover .mega-cat-icon { color: var(--steel); background: #e4ebf1; }
.mega-cat-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mega-cat-copy b {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 1280px) {
  .mega-layout { grid-template-columns: 1fr; gap: 16px; padding: 22px 0 20px; }
  .mega-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid #f0f2f5;
  }
  .mega-aside-text { display: none; }
  .mega-lead { margin: 0; font-size: 17px; }
  .mega-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.icon-btn, .btn {
  border: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex: none;
}
.icon-btn {
  position: relative;
  width: var(--header-hit);
  height: var(--header-hit);
  min-width: var(--header-hit);
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.icon-btn svg.lucide { width: var(--header-icon); height: var(--header-icon); }
.icon-btn b {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}
.btn { padding: 11px 16px; font-weight: 600; letter-spacing: 0; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn svg.lucide { width: 16px; height: 16px; }
.btn-primary { background: var(--copper); color: #fff; box-shadow: none; }
.btn-primary:hover { background: var(--copper-2); }
.btn-light { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-light:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost-light { border-color: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.92); background: transparent; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); background: var(--surface); }
.btn-dark { background: var(--steel); color: #fff; }
.btn-dark:hover { background: var(--steel-2); }
.menu-toggle { display: none; }
.header-actions > .menu-toggle { display: none; }
.header-cta {
  height: var(--header-hit);
  min-height: var(--header-hit);
  padding: 0 16px;
  font-size: 13px;
  border-radius: 10px;
}
.header-cta:hover { background: var(--copper-2); transform: none; }

.photo-frame {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Product page */
.product-page {
  padding: 24px 0 48px;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: start;
  margin-top: 16px;
}
.product-main { min-width: 0; display: grid; gap: 16px; }
.product-sidebar {
  position: sticky;
  top: calc(var(--header-main-h) + 20px);
  display: grid;
  gap: 12px;
  align-self: start;
}
.product-card-panel { padding: 20px; }
.product-title {
  margin: 8px 0 10px;
  font-family: var(--mono);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.01em;
}
.product-lead {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.product-sidebar-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.product-sidebar-actions .btn { width: 100%; justify-content: center; min-height: 44px; }
.product-config-panel { padding: 20px; }
.product-tabs { padding: 0; overflow: hidden; }
.product-tabs .tabs {
  padding: 12px 12px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.product-tabs .tab-panel { padding: 18px 20px 20px; }
.spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.spec-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.spec-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list dt {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-list dd { margin: 0; font-size: 14px; font-weight: 600; }
.configurator-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.configurator-actions .btn { width: 100%; justify-content: center; }

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(165deg, #0c1218 0%, var(--steel) 50%, #1a3344 100%);
  color: #eef2f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -40%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.72fr);
  gap: 40px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 16px;
  max-width: 18ch;
  line-height: 1.08;
  color: #fff;
  font-weight: 650;
}
.hero .lead {
  font-size: 17px;
  color: rgba(238, 242, 246, 0.76);
  max-width: 48ch;
  margin: 0;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-note {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(238, 242, 246, 0.62);
}
.hero-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-note a:hover { color: var(--copper-2); }
.hero-photo {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.hero-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(12, 18, 24, 0.82);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kicker-light { color: var(--copper-2); }
.kicker-light::before { background: var(--copper-2); }

.home-convert .home-order { order: 0; }
.home-convert .home-about { order: 1; }

.home-routes {
  padding: 40px 0 16px;
}

.home-stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.home-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--line-soft);
}
.home-stat:last-child { border-right: none; }
.home-stat svg.lucide {
  width: 18px;
  height: 18px;
  color: var(--copper);
  flex: none;
}
.home-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
}
.home-stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.home-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-route {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  min-height: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.home-route:hover {
  border-color: #b8c4d0;
  box-shadow: var(--shadow);
}
.home-route img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #eef2f6;
}
.home-route-body {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
  align-content: start;
}
.home-route-body svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--steel);
}
.home-route strong {
  font-size: 16px;
  line-height: 1.25;
}
.home-route small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--steel-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--copper);
  flex: none;
}
.kicker i { width: 13px; height: 13px; opacity: 0.85; }
h1, h2, h3, .display { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.15; font-weight: 650; }

.section-label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-label-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-bottom: 4px;
  flex: none;
}
.section-label h2 { margin: 6px 0 0; font-size: clamp(26px, 2.8vw, 36px); }
.section-label p { margin: 8px 0 0; color: var(--muted); max-width: 52ch; font-size: 15px; }
.section-label > .btn { flex: none; align-self: flex-end; }

.section { padding: 64px 0; }
.section-tight { padding-top: 36px; }
.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2 { margin: 0; font-size: clamp(26px, 2.8vw, 36px); }
.section-head p { margin: 8px 0 0; color: var(--muted); max-width: 52ch; font-size: 15px; }

.cards-4, .cards-3, .cards-2 { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.card, .product-card, .cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-width: 0;
}
.card:hover, .product-card:hover, .cat-card:hover {
  border-color: #b8c4d0;
  box-shadow: var(--shadow);
}
a.product-card { color: inherit; display: flex; flex-direction: column; height: 100%; }
.product-card .media {
  background: #eef2f6;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-card .body, .cat-card .body, .card .body { padding: 18px 18px 20px; }
.product-card .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.product-card-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}
.product-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.product-card-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}
.product-specs dt {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-specs dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 650;
  overflow-wrap: break-word;
}
.product-card-cta {
  margin-top: auto;
  padding-top: 16px;
  color: var(--steel-2);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card-cta::after { content: "→"; font-size: 14px; transition: transform .15s ease; }
.product-card:hover .product-card-cta { color: var(--copper); }
.product-card:hover .product-card-cta::after { transform: translateX(3px); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #e8f1f7;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}
.badge-dark { background: var(--ink); color: #fff; }
.badge-ok { background: #d8eee3; color: var(--ok); }
.meta { color: var(--muted); font-size: 13px; display: flex; gap: 12px; flex-wrap: wrap; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.cat-card { padding: 0; min-height: 0; display: flex; flex-direction: column; }
.cat-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cat-index {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  background: rgba(16, 24, 32, 0.78);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}
.cat-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cat-card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.cat-card.featured {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: inset 6px 0 0 var(--copper);
}
.cat-card.featured p { color: var(--muted); }
.cat-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  overflow-wrap: break-word;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-card h3 svg.lucide { width: 18px; height: 18px; color: var(--steel); flex: none; }
.cat-card .body > span:last-child { margin-top: auto; color: var(--steel-2); font-weight: 700; }
.cat-card:hover .body > span:last-child { color: var(--copper); }
.cat-card .badge { margin-top: 0; }

.page-hero {
  padding: 40px 0 28px;
  background: linear-gradient(180deg, #e4e9ee 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.section-hero { padding: 36px 0 32px; }
.section-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .75fr);
  gap: 32px;
  align-items: center;
}
.section-hero-copy { min-width: 0; }
.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 58ch;
  line-height: 1.55;
}
.section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.section-hero-photo {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.section-tight-top { padding-top: 32px; }
.cat-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}
.cat-items {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.section-cta { align-items: center; }
.section-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.crumbs { color: var(--muted); font-size: 13px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--copper); }
.page-hero h1 { margin: 10px 0 8px; font-size: clamp(32px, 4vw, 52px); }
.product-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.product-specs-inline {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.configurator-placeholder { color: var(--muted); }
.configurator-placeholder h3 { margin: 0 0 8px; color: var(--ink); }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px; align-items: start; }
.split.home-convert { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
.split > * { min-width: 0; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;
  max-width: 100%;
}
.catalog-more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}
.catalog-more-label { color: var(--muted); font-size: 13px; margin-right: 4px; }
.catalog-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
}
.catalog-more a svg.lucide { width: 14px; height: 14px; color: var(--steel); }
.catalog-more a:hover { border-color: var(--steel); color: var(--steel); }
.list { margin: 0; padding-left: 18px; }
.list li { margin: 8px 0; }
.list-icons { list-style: none; padding: 0; }
.list-icons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}
.list-icons svg.lucide { width: 16px; height: 16px; color: var(--steel); flex: none; margin-top: 3px; }
.about-photo { border-radius: 12px; margin: 14px 0 16px; }

.table-wrap { overflow: auto; border-radius: 18px; border: 1px solid var(--line); background: #fff; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #eef3f7; font-size: 13px; }
tr.compare-on { background: #eef6fb; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.configurator label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
.configurator select, .configurator input, .form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}
.sku {
  font-family: var(--mono);
  background: #eef3f7;
  color: var(--steel);
  padding: 12px 14px;
  border-radius: 12px;
  margin: 16px 0;
  border: 1px solid var(--line);
}
.secret-grid { display: grid; gap: 10px; }

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin-top: 16px;
}
.chip {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .btn-primary { background: var(--copper); color: #fff; }
.cta p { color: rgba(255,255,255,.8); max-width: 48ch; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.cta-actions .btn { justify-content: center; }

.home-about-actions,
.home-order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.home-order-links a { font-size: 14px; color: var(--steel-2); }
.home-order .btn-primary { margin-top: 18px; width: 100%; }
.home-order h2 { margin: 8px 0 16px; font-size: clamp(24px, 2.4vw, 32px); }

.section-mbg { padding-top: 56px; padding-bottom: 48px; }

.home-blok-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 20px 0 0;
}
.home-blok-links a {
  font-size: 13px;
  color: var(--steel-2);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.home-blok-links a:hover { border-color: var(--copper); color: var(--copper); }

.cat-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
}

.partner-logo {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.partner-logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.home-route.is-featured {
  border-color: rgba(217, 119, 6, 0.35);
}
.home-route-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(217, 119, 6, 0.08);
  margin-bottom: 6px;
}
.home-route-icon svg.lucide { width: 16px; height: 16px; color: var(--copper); }

.site-footer {
  background: #fff;
  color: #555;
  margin-top: 0;
  border-top: 1px solid #eee;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 40px 32px;
  padding: 56px 0 40px;
}

.footer-brand { max-width: 42ch; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-logo:hover { color: #111; text-decoration: none; }
.footer-logo img { width: 36px; height: 36px; flex: none; }

.footer-tagline {
  margin: 0 0 8px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.footer-lead a { color: #111; text-decoration: none; }
.footer-lead a:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: normal;
  font-size: 14px;
  margin: 0 0 14px;
  line-height: 1.5;
}
.footer-contacts p { margin: 0; }
.footer-contacts a { color: #333; text-decoration: none; }
.footer-contacts a:hover { color: #111; }

.footer-cta-line { margin: 0; }
.footer-cta-line a {
  font-size: 14px;
  color: #111;
  border-bottom: 1px solid #111;
  text-decoration: none;
}
.footer-cta-line a:hover { color: #555; border-color: #555; }

.footer-cta { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-ghost {
  border-color: #ddd;
  color: #111;
  background: transparent;
}
.footer-ghost:hover { background: #111; color: #fff; }

.footer-heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #111;
}

.footer-subheading {
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
  transition: color 0.18s ease;
}
.footer-links a:hover { color: #111; }

.footer-links-cols {
  columns: 2;
  column-gap: 24px;
}
.footer-links-cols li { break-inside: avoid; }

.footer-links-compact a { font-size: 13px; }

.footer-links-products a {
  font-weight: 500;
  color: #333;
}

.footer-link-meta {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-top: 1px;
}

.footer-links-news a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-keywords { display: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  padding: 18px 0 28px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #eee;
}

.footer-copy { margin: 0; }
.footer-domain { margin: 0; }
.footer-domain a { color: #666; text-decoration: none; }
.footer-domain a:hover { color: #111; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.footer-legal a { color: #666; font-size: 13px; text-decoration: none; }
.footer-legal a:hover { color: #111; }

/* legacy aliases */
.footer-grid { display: grid; gap: 24px; }
.copy { font-size: 13px; color: #8b97ab; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 24, 0.48);
  z-index: 160;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-panel {
  width: min(520px, 100%);
  max-height: min(90vh, 680px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.is-open .modal-panel { transform: none; }
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--line-soft);
}
.modal-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.modal-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.modal-body {
  overflow: auto;
  padding: 16px 20px 20px;
}
.modal-body .btn-primary {
  width: 100%;
  margin-top: 8px;
  min-height: 48px;
}
.rfq-empty {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13px;
}
.rfq-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.btn-sm { min-height: 36px; padding: 8px 12px; font-size: 13px; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}
.drawer.is-open { display: block; }
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  padding: 24px;
  overflow: auto;
  box-shadow: var(--shadow);
}
.rfq-item { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.toast {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-width: calc(100% - 24px);
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.toast.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.has-js [data-reveal].is-in { opacity: 1; transform: none; }
.has-js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.has-js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
.has-js [data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0.04s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.08s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.12s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.16s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.2s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 0.24s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 0.28s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: 0.32s; }
.has-js [data-reveal-stagger].is-in > *:nth-child(n+9) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; margin: 8px 0; }
.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.news-card time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
}
.news-card time svg.lucide { width: 14px; height: 14px; }
.news-card h3 { margin: 10px 0 8px; font-size: 20px; }
.news-card h3 a:hover { color: var(--steel-2); }
.news-card p { color: var(--muted); margin: 0 0 16px; }
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--steel-2);
  font-weight: 700;
  font-size: 14px;
}
.news-card:hover .news-more { color: var(--copper); }

.steps {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: grid;
  gap: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps b {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--copper);
  padding-top: 2px;
}
.steps span { color: var(--ink-soft); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 100%);
  max-width: 100%;
  background: #fff;
  z-index: 170;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
}
.mobile-nav.is-open {
  transform: none;
  visibility: visible;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(14px + env(safe-area-inset-top)) 20px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  flex: none;
}
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #111;
}
.mobile-nav-logo img {
  width: 34px;
  height: 34px;
  flex: none;
}
.mobile-nav-logo-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}
.mobile-nav-logo-text b {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mobile-nav-logo-text small {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}
.mobile-nav-quick {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: #f7f9fb;
  flex: none;
}
.mobile-nav-quick .btn-primary {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
  border-radius: 10px;
  justify-content: center;
}
.mobile-nav-body {
  flex: 1;
  overflow: auto;
  padding: 8px 20px calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  margin: 0 0 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f8fa;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.mobile-nav-search svg.lucide { width: 18px; height: 18px; color: #6b7280; flex: none; }
.mobile-nav-search-arrow { margin-left: auto; width: 16px !important; height: 16px !important; opacity: 0.4; }
.mobile-nav a:not(.mobile-nav-call) {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 4px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.mobile-nav a:not(.mobile-nav-call):hover,
.mobile-nav a:not(.mobile-nav-call):focus-visible {
  background: #f4f6f8;
  outline: none;
}
.mobile-nav a svg.lucide { width: 18px; height: 18px; color: #6b7280; flex: none; }
.mobile-nav-secondary {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 2px;
}
.mobile-nav-secondary a {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #4a5158 !important;
}
.mobile-nav-cats {
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #f7f9fb;
}
.mobile-nav-cats summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  list-style: none;
}
.mobile-nav-cats summary svg.lucide:first-child { width: 18px; height: 18px; color: var(--steel); }
.mobile-nav-cats-chevron {
  margin-left: auto;
  width: 16px !important;
  height: 16px !important;
  opacity: 0.45;
  transition: transform 0.2s ease;
}
.mobile-nav-cats summary::-webkit-details-marker { display: none; }
.mobile-nav-cats[open] summary {
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.mobile-nav-cats[open] .mobile-nav-cats-chevron { transform: rotate(180deg); }
.mobile-nav-cats-list { background: #fff; }
.mobile-nav-cats a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 42px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav-cats a:last-child { border-bottom: 0 !important; }
.mobile-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #eef2f6;
  color: var(--steel);
  display: grid;
  place-items: center;
  flex: none;
}
.mobile-cat-icon svg.lucide { width: 14px; height: 14px; }
.mobile-nav-cats-all {
  font-weight: 600 !important;
  color: var(--steel) !important;
}

.map-embed {
  width: 100%;
  height: 280px;
  max-width: 100%;
  border: 0;
  border-radius: 16px;
  margin-top: 12px;
}
.filter-input {
  max-width: 420px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

@media (hover: none) {
  .card:hover, .product-card:hover, .cat-card:hover, .home-route:hover { transform: none; }
  .header-search-kbd { display: none; }
}

@media (max-width: 1100px) {
  .header-top { display: none; }
  .header-nav { display: none; }
  .header-actions > .menu-toggle { display: inline-flex; }
  .site-header { top: env(safe-area-inset-top); --header-main-h: 58px; }
  .header-main-inner { gap: 10px; }
  .header-search-wrap,
  .header-search-wrap:focus-within,
  .header-search-wrap.is-open {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
  }
  .header-search-kbd { display: none !important; }
  .header-contacts {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    gap: 0;
  }
  .header-cta {
    min-width: 0;
    height: var(--header-hit);
    padding: 0 12px;
    font-size: 13px;
  }
  .section { padding: 48px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-hero-photo { max-width: 480px; display: block; }
  .section-cta { grid-template-columns: 1fr; }
  .section-cta-actions { justify-content: flex-start; }
  .home-intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-photo { max-width: 480px; }
  .section-label { flex-direction: column; align-items: flex-start; }
  .section-label > .btn { align-self: flex-start; }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stat { border-bottom: 1px solid var(--line-soft); }
  .home-stat:nth-child(2n) { border-right: none; }
  .split { grid-template-columns: 1fr; gap: 16px; }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3, .cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-links-cols { columns: 1; }
  .cta { grid-template-columns: 1fr; padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .mega-grid, .mega-cats { grid-template-columns: 1fr; }
  .mega-layout { grid-template-columns: 1fr; gap: 12px; }
  .cat-card.featured { grid-column: auto; }
  .partners-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .logo-stack small { display: none; }
}

@media (max-width: 900px) {
  .header-top-nav { display: none; }
}

@media (max-width: 720px) {
  .wrap { width: min(1240px, calc(100% - 20px)); }
  .home-intro h1 { max-width: none; font-size: clamp(26px, 7vw, 34px); }
  .hero h1 { max-width: none; font-size: clamp(28px, 7vw, 36px); }
  .hero .lead { font-size: 15px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .hero-photo { max-width: none; }
  .home-intro .lead { font-size: 15px; }
  .home-intro-actions .btn { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .home-trust { grid-template-columns: 1fr; }
  .home-intro-photo { display: none; }
  .section-hero-photo { display: none; }
  .page-hero { padding: 24px 0 16px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .panel { padding: 18px; }
  .cta { padding: 22px; border-radius: 16px; }
  .site-footer { padding: 32px 0 20px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .product-specs-inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-embed { height: 220px; }
}

@media (max-width: 640px) {
  .cards-4, .cards-3, .cards-2, .catalog-grid, .home-routes-grid { grid-template-columns: 1fr; }
  .home-stats-grid { grid-template-columns: 1fr; }
  .home-stat { border-right: none; }
  .cta-actions { min-width: 0; width: 100%; }
  .stat { padding: 16px; }
  .stat b { font-size: 22px; }
  input, select, textarea, .filter-input, .header-search-wrap input[data-search-input] { font-size: 16px; }
  .tab { min-height: 44px; padding: 10px 14px; }
  .gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .header-cta { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 32px 0 24px; }
  .footer-brand { max-width: none; }
  .footer-links-cols { columns: 1; }
  .footer-bottom { flex-direction: column; }
  .partners-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-main-inner { gap: 8px; }
  .mobile-nav { width: 100%; }
}

::selection { background: #fdeacc; color: var(--ink); }
:focus-visible { outline: 2px solid var(--steel); outline-offset: 2px; }
.form label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f1f7;
  color: var(--steel-2);
  display: grid;
  place-items: center;
  flex: none;
}
.stat-icon i { width: 18px; height: 18px; }
.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  max-width: 100%;
}
.split .partners-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.partners-logos img {
  width: 100%;
  aspect-ratio: 300 / 160;
  height: auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}
.gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery .swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #eef2f6;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 10px; }
.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #eef2f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.gallery-thumbs img.is-active { border-color: var(--steel); }
.gallery .swiper-pagination-bullet-active { background: var(--steel) !important; }

/* Homepage — clean minimal */
.page-home {
  background: #fff;
  color: #111;
}
.page-home .site-header {
  background: #fff;
}
.page-home .header-main {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #eee;
}
.page-home .site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
}
.page-home .site-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: transparent;
}
.page-home .btn-primary,
.page-home .header-cta {
  background: #111;
  border-color: #111;
  color: #fff;
}
.page-home .btn-primary:hover,
.page-home .header-cta:hover { background: #000; }

.page-home .site-footer {
  background: #fff;
  color: #555;
  border-top: 1px solid #eee;
}
.page-home .footer-heading,
.page-home .footer-tagline,
.page-home .footer-logo { color: #111; }
.page-home .footer-lead,
.page-home .footer-copy,
.page-home .footer-domain,
.page-home .footer-contacts,
.page-home .footer-links a { color: #666; }
.page-home .footer-lead a,
.page-home .footer-cta-line a,
.page-home .footer-links a:hover,
.page-home .footer-domain a:hover { color: #111; }
.page-home .footer-keywords { border-bottom: 1px solid #eee; }
.page-home .footer-keywords a {
  color: #666;
  border-color: #eee;
}
.page-home .footer-ghost {
  border-color: #ddd;
  color: #111;
  background: transparent;
}
.page-home .footer-main { padding: 56px 0 32px; }

.hm-hero { padding: 72px 0 48px; }
.hm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 64px;
  align-items: center;
}
.hm-meta {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.hm-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 14ch;
  color: #111;
}
.hm-lead {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #555;
  max-width: 42ch;
}
.hm-hero-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 44ch;
}
.hm-hero-points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: #444;
}
.hm-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}
.hm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 32px;
}
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.hm-btn:hover { transform: translateY(-1px); }
.hm-btn-fill { background: #111; color: #fff; }
.hm-btn-fill:hover { background: #000; color: #fff; }
.hm-btn-line:hover { background: #111; color: #fff; }
.hm-hero-photo { margin: 0; overflow: hidden; }
.hm-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f6f6f6;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hm-hero-photo:hover img { transform: scale(1.03); }

.hm-hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f9fb 0%, #eef2f6 100%);
  border: 1px solid #e2e8ee;
  box-shadow:
    0 24px 60px rgba(20, 47, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.hm-hero-visual-lottie {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
}
.hm-hero-visual-lottie svg {
  width: 100% !important;
  height: 100% !important;
}
.hm-hero-visual-fallback,
.hm-hero-visual-svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}
.hm-hero-visual.is-static .hm-hero-visual-lottie { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hm-hero-visual-lottie { display: none; }
}

.hm-facts { border-block: 1px solid #eee; }
.hm-facts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hm-fact {
  padding: 28px 0;
  border-right: 1px solid #eee;
  padding-right: 24px;
  margin-right: 24px;
}
.hm-fact:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hm-fact b {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hm-fact span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #888;
}

.hm-block { padding: 72px 0; }
.hm-block-line { border-top: 1px solid #eee; }
.hm-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.hm-block h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.hm-textlink {
  font-size: 14px;
  color: #888;
  border-bottom: 1px solid #ddd;
}
.hm-textlink:hover { color: #111; border-color: #111; }

.hm-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}
.hm-products a { display: grid; gap: 12px; color: inherit; transition: opacity 0.2s ease; }
.hm-products a:hover { opacity: 0.78; }
.hm-products img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f6f6f6;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.hm-products a:hover img { transform: scale(1.04); }
.hm-products-copy { display: grid; gap: 2px; }
.hm-products strong { font-size: 16px; font-weight: 500; }
.hm-products em {
  font-style: normal;
  font-size: 13px;
  color: #888;
}

.hm-catalog {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
}
.hm-catalog a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  color: inherit;
}
.hm-catalog li:nth-child(odd) a { padding-right: 32px; }
.hm-catalog li:nth-child(even) a { padding-left: 32px; border-left: 1px solid #eee; }
.hm-catalog strong { font-size: 16px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; }
.hm-catalog-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f3f5f7;
  color: var(--steel);
}
.hm-catalog-icon svg.lucide { width: 16px; height: 16px; }
.hm-catalog a:hover .hm-catalog-icon { background: #eef2f6; color: #111; }
.hm-catalog span { font-size: 13px; color: #888; line-height: 1.4; }
.hm-catalog a:hover strong { text-decoration: underline; text-underline-offset: 3px; }

.hm-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.hm-two h2 { margin-bottom: 20px; }
.hm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.hm-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
}
.hm-steps span { color: #aaa; font-size: 13px; padding-top: 3px; }
.hm-text { margin: 0; font-size: 16px; line-height: 1.6; color: #444; max-width: 42ch; }
.hm-links { display: flex; flex-wrap: wrap; gap: 16px 24px; margin: 24px 0 0; }
.hm-links a {
  font-size: 14px;
  color: #111;
  border-bottom: 1px solid #111;
}
.hm-links a:hover { color: #555; border-color: #555; }

.hm-news {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hm-news li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid #eee;
  align-items: baseline;
}
.hm-news li:last-child { border-bottom: 1px solid #eee; }
.hm-news time { font-size: 13px; color: #888; }
.hm-news a { font-size: 17px; font-weight: 500; }
.hm-news a:hover { text-decoration: underline; text-underline-offset: 3px; }

.hm-note {
  margin: -8px 0 22px;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.5;
  color: #888;
}
.hm-partners {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.hm-partners li {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  background: #f7f8fa;
  border-radius: 12px;
  transition: background 0.16s ease, color 0.16s ease;
}
.hm-partners li:hover {
  background: #eef2f6;
  color: #111;
}
.hm-docs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.hm-doc {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
  padding: 20px 18px;
  background: #f7f8fa;
  border-radius: 12px;
}
.hm-doc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--steel);
  display: grid;
  place-items: center;
}
.hm-doc-icon svg.lucide { width: 18px; height: 18px; }
.hm-doc b,
.hm-awards b {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111;
}
.hm-doc p,
.hm-awards p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
}
.hm-awards {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hm-awards li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  background: #f7f8fa;
  border-radius: 12px;
}
.hm-awards li > div { display: grid; gap: 6px; min-width: 0; }
.hm-reviews {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hm-reviews li { min-width: 0; }
.hm-reviews blockquote {
  margin: 0;
  height: 100%;
  padding: 22px 20px;
  background: #f7f8fa;
  border-radius: 12px;
  display: grid;
  gap: 16px;
  align-content: space-between;
}
.hm-reviews p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #222;
}
.hm-reviews footer {
  display: grid;
  gap: 2px;
}
.hm-reviews cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.hm-reviews footer span {
  font-size: 12px;
  color: #888;
}

.hm-close {
  padding: 80px 0 96px;
  border-top: 1px solid #eee;
  text-align: center;
}
.hm-close h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.hm-close p { margin: 12px 0 0; color: #666; }
.hm-close .hm-actions { justify-content: center; }

@media (max-width: 900px) {
  .hm-hero { padding: 40px 0 32px; }
  .hm-hero-grid,
  .hm-two,
  .hm-catalog { grid-template-columns: 1fr; gap: 32px; }
  .hm-catalog li:nth-child(odd) a,
  .hm-catalog li:nth-child(even) a { padding-left: 0; padding-right: 0; border-left: 0; }
  .hm-products { grid-template-columns: 1fr 1fr; }
  .hm-facts-row { grid-template-columns: 1fr 1fr; }
  .hm-partners { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hm-docs,
  .hm-awards,
  .hm-reviews { grid-template-columns: 1fr 1fr; }
  .hm-fact { border-right: 0; margin: 0; padding: 20px 0; border-bottom: 1px solid #eee; }
  .hm-hero h1 { max-width: none; }
}
@media (max-width: 560px) {
  .hm-products { grid-template-columns: 1fr; }
  .hm-news li { grid-template-columns: 1fr; gap: 6px; }
  .hm-facts-row { grid-template-columns: 1fr; }
  .hm-partners { grid-template-columns: 1fr 1fr; }
  .hm-docs,
  .hm-awards,
  .hm-reviews { grid-template-columns: 1fr; }
}

.hm-meta { display: inline-flex; align-items: center; gap: 6px; }
.hm-meta svg { width: 14px; height: 14px; }
.hm-btn { gap: 8px; }
.hm-btn svg { width: 16px; height: 16px; }
.hm-fact {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
}
.hm-fact svg {
  grid-row: 1 / span 2;
  width: 16px;
  height: 16px;
  color: #999;
  margin-top: 3px;
}
.hm-block h2,
.hm-close h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hm-block h2 { justify-content: flex-start; }
.hm-block h2 svg,
.hm-close h2 svg { width: 18px; height: 18px; color: #888; flex: none; }
.hm-catalog strong { display: inline-flex; align-items: center; gap: 10px; }
.hm-catalog strong .icon-draw { flex: none; }
.hm-steps svg { width: 16px; height: 16px; color: #888; margin-top: 3px; }
.hm-links a { display: inline-flex; align-items: center; gap: 6px; }
.hm-links svg { width: 14px; height: 14px; }

/* Site-wide clean look */
body {
  background: #fff;
  color: #111;
}
.btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover { background: #000; color: #fff; }
.header-cta {
  background: #111;
  color: #fff;
  height: var(--header-hit);
  min-height: var(--header-hit);
  padding: 0 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.header-cta:hover { background: #000; transform: none; }

.page-hero {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 40px 0 28px;
}
.page-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
.page-hero > .wrap > p {
  margin: 0;
  max-width: 52ch;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}
.crumbs { color: #999; font-size: 13px; }
.crumbs a { color: #888; }
.crumbs a:hover { color: #111; }

.site-footer {
  background: #fff;
  color: #555;
  border-top: 1px solid #eee;
}
.footer-heading,
.footer-tagline,
.footer-logo,
.footer-subheading { color: #111; }
.footer-logo:hover { color: #111; }
.footer-lead,
.footer-copy,
.footer-domain,
.footer-contacts,
.footer-links a,
.footer-domain a,
.footer-link-meta { color: #666; }
.footer-lead a,
.footer-cta-line a { color: #111; }
.footer-links a:hover,
.footer-domain a:hover,
.footer-contacts a:hover { color: #111; }
.footer-contacts a { color: #444; }
.footer-keywords { border-bottom: 1px solid #eee; }
.footer-keywords a {
  color: #666;
  border-color: #eee;
  border-radius: 0;
}
.footer-keywords a:hover { color: #111; background: transparent; border-color: #111; }
.footer-ghost {
  border-color: #ddd;
  color: #111;
  background: transparent;
}
.footer-ghost:hover { background: #111; color: #fff; }
.footer-links-products a { color: #333; font-weight: 500; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.footer-legal a { color: #666; font-size: 13px; }
.footer-legal a:hover { color: #111; }
.footer-bottom {
  align-items: flex-start;
  gap: 16px 24px;
}

.panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: none;
}
.card, .product-card, .cat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: none;
}
.card:hover, .product-card:hover, .cat-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #ccc;
}
.cta {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  color: inherit;
}
.cta::before { display: none; }
.filter-input {
  border-radius: 0;
  border-color: #ddd;
  max-width: 420px;
}

.pg { padding: 40px 0 72px; }
.pg-lead { margin: 0; max-width: 52ch; color: #666; font-size: 16px; line-height: 1.55; }
.pg-filter { margin: 20px 0 0; }

.cat-page { padding: 28px 0 80px; }
.cat-hero { margin-bottom: 40px; }
.cat-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
.cat-body {
  margin: 16px 0 0;
  color: #555;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.6;
}
.cat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 20px;
}
.cat-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.cat-mbg { margin: 0 0 48px; }
.cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin: 0 0 16px;
}
.cat-filter {
  position: relative;
  flex: 1 1 240px;
  max-width: 420px;
}
.cat-filter svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #999;
  pointer-events: none;
}
.cat-filter .filter-input,
.cat-page .filter-input {
  width: 100%;
  max-width: none;
  height: 44px;
  padding: 0 14px 0 38px;
  border: 1px solid #eee;
  border-radius: 0;
  background: #fafafa;
  font-size: 14px;
}
.cat-filter .filter-input:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}
.cat-count {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.cat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
}
.cat-grid > li { background: #fff; min-width: 0; }
.cat-grid > .is-featured { grid-column: 1 / -1; }
.cat-grid a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  height: 100%;
  padding: 20px 22px;
  color: inherit;
  transition: background 0.18s ease;
}
.cat-grid a:hover { background: #fafafa; }
.cat-grid > .is-featured a {
  min-height: 108px;
  padding: 26px 24px;
}
.cat-grid-icon {
  color: #888;
  display: grid;
  place-items: center;
}
.cat-grid-icon svg { width: 20px; height: 20px; }
.cat-grid a:hover .cat-grid-icon { color: #111; }

.icon-draw {
  display: inline-grid;
  place-items: center;
  flex: none;
  color: inherit;
}
.icon-draw svg.lucide {
  overflow: visible;
}
.icon-draw.is-drawing svg.lucide,
.icon-draw.is-drawn svg.lucide {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .icon-draw svg.lucide [stroke] {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}
.cat-grid-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.cat-grid-copy strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.cat-grid-copy em {
  font-style: normal;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}
.cat-skus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.cat-skus span {
  font-size: 12px;
  color: #555;
  border: 1px solid #eee;
  padding: 3px 8px;
}
.cat-grid-go {
  color: #ccc;
  font-size: 18px;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}
.cat-grid a:hover .cat-grid-go {
  color: #111;
  transform: translateX(3px);
}
.cat-empty {
  margin: 28px 0 8px;
  color: #888;
  font-size: 15px;
}
.cat-close {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.cat-close h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.cat-close p { margin: 0; color: #666; }
.cat-close .hm-actions { margin-top: 0; }

.pg-catalog {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eee;
}
.pg-catalog a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  color: inherit;
  transition: background 0.2s ease;
}
.pg-catalog li:nth-child(odd) a { padding-right: 28px; }
.pg-catalog li:nth-child(even) a { padding-left: 28px; border-left: 1px solid #eee; }
.pg-catalog img {
  width: 72px;
  height: 54px;
  object-fit: contain;
  background: #f6f6f6;
}
.pg-catalog strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
.pg-catalog strong svg { width: 16px; height: 16px; color: #888; flex: none; }
.pg-catalog span { display: block; margin-top: 4px; font-size: 13px; color: #888; line-height: 1.4; }
.pg-catalog a:hover strong { text-decoration: underline; text-underline-offset: 3px; }

.pg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  gap: 48px;
  align-items: center;
  padding: 40px 0 32px;
  border-bottom: 1px solid #eee;
}
.pg-hero-grid h1 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.pg-hero-grid p { margin: 0; color: #666; max-width: 48ch; }
.pg-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f6f6f6;
}
.pg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pg-tags span {
  font-size: 12px;
  color: #666;
  border: 1px solid #eee;
  padding: 4px 8px;
}
.pg-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 48px 0 24px;
}
.pg-head h2 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.03em; }
.pg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.pg-list a {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  color: inherit;
}
.pg-list strong { font-weight: 500; }
.pg-list span { font-size: 13px; color: #888; }
.pg-list a:hover strong { text-decoration: underline; text-underline-offset: 3px; }

.pg-news { list-style: none; margin: 0; padding: 0; }
.pg-news li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid #eee;
  align-items: baseline;
}
.pg-news li:last-child { border-bottom: 1px solid #eee; }
.pg-news time { font-size: 13px; color: #888; }
.pg-news a { font-size: 17px; font-weight: 500; }
.pg-news a:hover { text-decoration: underline; text-underline-offset: 3px; }
.pg-article { max-width: 68ch; padding: 40px 0 80px; }
.pg-article p { font-size: 16px; line-height: 1.7; color: #333; }
.pg-article a { border-bottom: 1px solid #111; }

.pg-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 8px 0 48px;
}
.pg-info h3 { margin: 0 0 12px; font-size: 16px; font-weight: 500; }
.pg-info p, .pg-info li { font-size: 15px; line-height: 1.6; color: #444; }
.pg-info ul { margin: 0; padding-left: 18px; }
.pg-info .chip {
  border-radius: 0;
  border-color: #eee;
  background: #fafafa;
}

.pg-about { padding: 8px 0 64px; }
.pg-about-intro { max-width: 68ch; }
.pg-about-cards {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pg-about-cards li {
  padding: 22px 24px;
  border: 1px solid #eee;
  background: #fafafa;
  display: grid;
  gap: 8px;
}
.pg-about-cards i { width: 20px; height: 20px; color: #888; }
.pg-about-cards strong {
  font-size: 15px;
  font-weight: 500;
  color: #111;
}
.pg-about-cards p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}
.pg-about-section { margin-bottom: 40px; max-width: 72ch; }
.pg-about-section h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #111;
}
.pg-about-section p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
}
.pg-about-section p:last-child { margin-bottom: 0; }
.pg-about-section a { border-bottom: 1px solid #111; color: #111; }
.pg-about-split { padding: 0 0 40px; }
.pg-about-split section h3 { margin-top: 0; }
.pg-about-note {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
}
.pg-about-note a { border-bottom: 1px solid #111; color: #111; }
.pg-about-highlight {
  margin-bottom: 40px;
  padding: 28px 32px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  max-width: none;
}
.pg-about-highlight h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
.pg-about-highlight p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  max-width: 72ch;
}
.pg-about-highlight p:last-child { margin-bottom: 0; }
.pg-about-highlight a { border-bottom: 1px solid #111; color: #111; }
.pg-about-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pg-about-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #111;
  border-bottom: 1px solid #111;
}
.pg-about-nav i { width: 16px; height: 16px; color: #888; }
.pg-about-links { max-width: none; }
.pg-about-steps { max-width: 56ch; }
.pg-about-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.pg-about-cta--compact {
  margin-top: 32px;
  padding-top: 24px;
}
.pg-about-cta--compact p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #555;
  max-width: 52ch;
}
.pg-about-cta--compact a { border-bottom: 1px solid #111; color: #111; }
.pg-about .partners { margin-top: 8px; }

.pg-map { width: 100%; min-height: 280px; border: 1px solid #eee; margin-top: 16px; }
.pg-form label { display: block; margin: 12px 0 6px; font-size: 13px; color: #666; }
.pg-form input, .pg-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 12px;
  background: #fff;
}
.pg-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}
.consent input { width: auto; margin-top: 3px; }
.consent a { border-bottom: 1px solid #111; color: #111; }

.pg-legal { max-width: 76ch; padding: 40px 0 88px; }
.pg-legal h1 { margin: 12px 0 8px; font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.03em; }
.pg-legal .pg-updated { margin: 0 0 28px; font-size: 13px; color: #888; }
.pg-legal h2 { margin: 32px 0 10px; font-size: 18px; font-weight: 500; }
.pg-legal p, .pg-legal li { font-size: 15px; line-height: 1.7; color: #333; }
.pg-legal ul { padding-left: 18px; }
.pg-legal a { border-bottom: 1px solid #111; }

.product-page { padding: 24px 0 72px; background: #fff; }
.product-title { font-weight: 500; letter-spacing: -0.03em; }
.product-card .media { background: #f6f6f6; }
.product-card-cta { color: #111; }
.product-card:hover .product-card-cta { color: #111; }

.pg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pg-table th, .pg-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid #eee; }
.pg-table th { color: #888; font-weight: 500; font-size: 12px; }
.table-wrap { border: 1px solid #eee; border-radius: 0; }

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 16px;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); }
.cookie-bar button {
  margin-left: auto;
  background: #fff;
  color: #111;
  border: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .pg-catalog,
  .pg-info,
  .pg-hero-grid,
  .cat-grid { grid-template-columns: 1fr; gap: 24px; }
  .pg-about-facts { grid-template-columns: 1fr 1fr; }
  .pg-about-cards { grid-template-columns: 1fr; }
  .pg-about-highlight { padding: 20px; }
  .cat-grid { gap: 1px; }
  .cat-grid > .is-featured { grid-column: auto; }
  .pg-catalog li:nth-child(odd) a,
  .pg-catalog li:nth-child(even) a { padding-left: 0; padding-right: 0; border-left: 0; }
  .pg-form .form-row { grid-template-columns: 1fr; }
  .pg-news li { grid-template-columns: 1fr; gap: 6px; }
}
