:root {
  --vz-ink: #202124;
  --vz-ink-soft: #4f5459;
  --vz-dark: #17191c;
  --vz-dark-2: #282c31;
  --vz-accent: #98261f;
  --vz-accent-dark: #721a16;
  --vz-accent-soft: #f4e8e6;
  --vz-signal: #c8ef55;
  --vz-bg: #f2f3f6;
  --vz-paper: #ffffff;
  --vz-muted: #e8eaee;
  --vz-line: #daddE3;
  --vz-success: #26734b;
  --vz-danger: #b42318;
  --vz-radius-sm: 12px;
  --vz-radius: 22px;
  --vz-radius-lg: 36px;
  --vz-shadow-sm: 0 6px 24px rgba(28, 32, 36, .07);
  --vz-shadow-md: 0 16px 50px rgba(28, 32, 36, .11);
  --vz-container: 1180px;
  --vz-ease: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vz-site {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--vz-ink);
  background: var(--vz-bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.vz-site a { color: inherit; }
.vz-site img { max-width: 100%; }
.vz-site button,
.vz-site input,
.vz-site select,
.vz-site textarea { font: inherit; }

.vz-container {
  width: min(calc(100% - 40px), var(--vz-container));
  margin-inline: auto;
}

.vz-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--vz-accent);
  border-radius: 10px;
  transform: translateY(-180%);
}
.vz-skip-link:focus { transform: translateY(0); }

.vz-header {
  position: relative;
  z-index: 100;
}

.vz-announcement {
  color: rgba(255,255,255,.84);
  background: var(--vz-dark);
  font-size: 13px;
}

.vz-announcement .vz-container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vz-announcement a {
  color: var(--vz-signal);
  text-decoration: none;
}

.vz-nav-wrap {
  position: sticky;
  top: 0;
  padding: 14px 0;
  background: rgba(242,243,246,.90);
  backdrop-filter: blur(14px);
}

.vz-nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(190px, auto);
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 14px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(32,33,36,.07);
  border-radius: 18px;
  box-shadow: var(--vz-shadow-sm);
}

.vz-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.vz-brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--vz-accent);
  border-radius: 12px;
}

.vz-brand-mark img {
  width: 47px;
  height: 45px;
  object-fit: contain;
}

.vz-brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.vz-brand-copy strong {
  overflow: hidden;
  color: var(--vz-ink);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vz-brand-copy small {
  margin-top: 4px;
  color: #747980;
  font-size: 12px;
}

.vz-desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vz-desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: #3d4145;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--vz-ease), background var(--vz-ease);
}

.vz-desktop-nav a:hover,
.vz-desktop-nav a:focus-visible,
.vz-desktop-nav a[aria-current="page"] {
  color: var(--vz-accent);
  background: var(--vz-accent-soft);
}

.vz-nav-contact {
  min-width: 190px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 9px 14px;
  background: var(--vz-dark);
  border-radius: 12px;
  line-height: 1.22;
}

.vz-nav-contact span {
  color: rgba(255,255,255,.56);
  font-size: 11px;
}

.vz-nav-contact a {
  margin-top: 3px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.vz-menu-button {
  min-width: 52px;
  min-height: 52px;
  display: none;
  place-content: center;
  gap: 4px;
  padding: 8px;
  background: var(--vz-dark);
  border: 0;
  border-radius: 11px;
  cursor: pointer;
}

.vz-menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 2px;
  transition: opacity var(--vz-ease), transform var(--vz-ease);
}
.vz-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.vz-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vz-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.vz-menu-button b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.vz-mobile-menu {
  position: absolute;
  right: 0;
  left: 0;
  padding: 0 0 18px;
  background: rgba(242,243,246,.98);
}
.vz-mobile-menu[hidden] { display: none; }
.vz-mobile-menu nav {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--vz-shadow-md);
}
.vz-mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}
.vz-mobile-menu a[aria-current="page"] { color: var(--vz-accent); background: var(--vz-accent-soft); }
.vz-mobile-menu .vz-mobile-phone { justify-content: center; color: #fff; background: var(--vz-accent); }

.vz-site .vz-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  color: #fff;
  background: var(--vz-accent);
  border: 1px solid var(--vz-accent);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background var(--vz-ease), border-color var(--vz-ease), box-shadow var(--vz-ease), transform var(--vz-ease);
}
.vz-site .vz-btn:hover { background: var(--vz-accent-dark); border-color: var(--vz-accent-dark); box-shadow: 0 10px 24px rgba(152,38,31,.22); }
.vz-site .vz-btn:active { transform: translateY(1px); }
.vz-site .vz-btn--dark { color: #fff; background: var(--vz-dark); border-color: var(--vz-dark); }
.vz-site .vz-btn--dark:hover { background: #30343a; border-color: #30343a; }
.vz-site .vz-btn--light { color: var(--vz-ink); background: #fff; border-color: #fff; }
.vz-site .vz-btn--light:hover { color: var(--vz-ink); background: #f0f2f4; border-color: #f0f2f4; }
.vz-site .vz-btn--outline { color: var(--vz-ink); background: transparent; border-color: #b9bec5; }
.vz-site .vz-btn--outline:hover { color: var(--vz-accent); background: #fff; border-color: var(--vz-accent); box-shadow: none; }
.vz-btn--wide { width: 100%; }
.vz-btn:disabled { cursor: wait; opacity: .48; }

.vz-site a:focus-visible,
.vz-site button:focus-visible,
.vz-site input:focus-visible,
.vz-site select:focus-visible,
.vz-site textarea:focus-visible,
.vz-site summary:focus-visible {
  outline: 3px solid rgba(152,38,31,.28);
  outline-offset: 3px;
}

/* Legacy page modernization */
.vz-legacy #main_table {
  width: min(calc(100% - 40px), var(--vz-container)) !important;
  display: block;
  margin: 18px auto 72px !important;
  padding: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: transparent !important;
}
.vz-legacy #main_table > tbody { display: block; }
.vz-legacy #main_table > tbody > tr { display: block; }
.vz-legacy #main_table > tbody > tr:first-child,
.vz-legacy #main_table > tbody > tr:last-child { display: none !important; }
.vz-legacy #main_table > tbody > tr:nth-child(2) > td:first-child,
.vz-legacy #main_table > tbody > tr:nth-child(2) > td:last-child { display: none !important; }
.vz-legacy #main_table > tbody > tr:nth-child(2) > td:nth-child(2) {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 210px minmax(0, 1fr) 220px;
  align-items: start;
  gap: 18px;
  padding: 0 !important;
  background: transparent !important;
}

.vz-legacy .bg_d1 {
  grid-column: 1 / -1;
  min-height: 46px !important;
  margin: 0 0 2px !important;
  padding: 0 18px !important;
  background: #fff !important;
  border: 1px solid var(--vz-line);
  border-radius: 12px;
}
.vz-legacy #bred {
  height: auto !important;
  min-height: 46px;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  color: #747980;
  font-size: 13px;
  list-style: none;
}
.vz-legacy #bred li { float: none !important; margin: 0 !important; padding: 0 !important; background: none !important; }
.vz-legacy #bred li + li::before { margin-right: 7px; content: "/"; color: #adb1b6; }
.vz-legacy #bred a { color: #555b61 !important; text-decoration: none; }
.vz-legacy #bred #last { color: var(--vz-ink) !important; font-weight: 700; }

.vz-legacy #left_column,
.vz-legacy #right_column {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 12px !important;
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 16px;
  box-shadow: var(--vz-shadow-sm);
}
.vz-legacy #right_column:empty { display: none !important; }
.vz-legacy .left_menu,
.vz-legacy .sub_menu {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.vz-legacy .left_menu li,
.vz-legacy .sub_menu li {
  margin: 0 0 4px !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
}
.vz-legacy .left_menu a,
.vz-legacy .sub_menu a {
  min-height: 40px;
  display: flex !important;
  align-items: center;
  padding: 9px 10px !important;
  color: #4d5358 !important;
  background: transparent !important;
  border-radius: 8px;
  font-size: 13px !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  transition: color var(--vz-ease), background var(--vz-ease);
}
.vz-legacy .left_menu a:hover,
.vz-legacy .sub_menu a:hover,
.vz-legacy .left_menu .active a,
.vz-legacy .sub_menu .active a {
  color: var(--vz-accent) !important;
  background: var(--vz-accent-soft) !important;
}
.vz-legacy #main-content {
  width: auto !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 30px !important;
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 20px;
  box-shadow: var(--vz-shadow-sm);
}
.vz-legacy #main-content .title,
.vz-legacy #main-content h1 {
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: var(--vz-ink) !important;
  background: none !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em;
}
.vz-legacy #main-content h2 { color: var(--vz-ink); font-size: 27px; line-height: 1.18; }
.vz-legacy #main-content p { color: var(--vz-ink-soft); font-size: 16px; line-height: 1.65; }
.vz-legacy #main-content .nc_row { min-width: 0; }
.vz-legacy #main-content .otstup_right { max-width: 180px; height: auto; margin: 0 22px 14px 0 !important; }
.vz-legacy #main-content table.catalog {
  width: 100% !important;
  margin-top: 24px !important;
  overflow: hidden;
  border: 1px solid var(--vz-line) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 14px;
}
.vz-legacy table.catalog td,
.vz-legacy table.catalog th { padding: 13px !important; border: 0 !important; border-bottom: 1px solid var(--vz-line) !important; }
.vz-legacy table.catalog tr:last-child td { border-bottom: 0 !important; }
.vz-legacy table.catalog .name { color: #fff !important; background: var(--vz-dark) !important; font-size: 12px !important; text-transform: uppercase; }
.vz-legacy table.catalog .ccc,
.vz-legacy table.catalog .fff { color: var(--vz-ink) !important; background: #fff !important; }
.vz-legacy table.catalog tr:nth-child(even) .ccc,
.vz-legacy table.catalog tr:nth-child(even) .fff { background: #f7f8fa !important; }
.vz-legacy table.catalog .search { background: var(--vz-accent-soft) !important; }
.vz-legacy input[type="text"],
.vz-legacy input[type="email"],
.vz-legacy select,
.vz-legacy textarea {
  max-width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #cbd0d6;
  border-radius: 9px;
}
.vz-legacy input[type="submit"] {
  min-height: 46px;
  padding: 10px 20px;
  color: #fff;
  background: var(--vz-accent);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 700;
}
.vz-legacy #main-content img { height: auto; border-radius: 10px; }
.vz-legacy .banner,
.vz-legacy .adsbygoogle { display: none !important; }

/* Modern custom pages */
.vz-main { display: block; }
.vz-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 auto;
  color: #fff;
  background: var(--vz-dark);
}
.vz-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17,19,22,.92) 0%, rgba(17,19,22,.72) 46%, rgba(17,19,22,.15) 100%);
}
.vz-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vz-hero > img + .vz-container { position: relative; z-index: 2; }
.vz-hero-content { max-width: 730px; padding: 86px 0 180px; }
.vz-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--vz-signal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vz-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(43px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -.055em;
}
.vz-hero-lead { max-width: 650px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 21px); }
.vz-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.vz-hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
}
.vz-hero-facts .vz-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vz-hero-facts article {
  min-height: 126px;
  padding: 24px;
  color: var(--vz-ink);
  background: rgba(255,255,255,.96);
  border-radius: 22px 22px 0 0;
}
.vz-hero-facts article:first-child { color: #fff; background: var(--vz-accent); }
.vz-hero-facts strong { display: block; margin-bottom: 7px; font-size: 19px; }
.vz-hero-facts p { margin: 0; color: inherit; opacity: .72; font-size: 13px; }

.vz-section { padding: 92px 0; }
.vz-section--white { background: #fff; }
.vz-section--dark { color: #fff; background: var(--vz-dark); }
.vz-section--accent { color: #fff; background: var(--vz-accent); }
.vz-section-head {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(330px,.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 36px;
}
.vz-section-head h2,
.vz-section h2 { margin: 0; font-size: clamp(32px, 4.7vw, 54px); line-height: 1.06; letter-spacing: -.045em; }
.vz-section-head p { margin: 0 0 4px; color: var(--vz-ink-soft); }
.vz-section--dark .vz-section-head p { color: rgba(255,255,255,.66); }

.vz-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.vz-bento-card {
  min-height: 265px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: var(--vz-radius);
  box-shadow: var(--vz-shadow-sm);
}
.vz-bento-card h3 { margin: 0 0 10px; font-size: 25px; line-height: 1.12; }
.vz-bento-card p { margin: 0; color: var(--vz-ink-soft); }
.vz-bento-card--7 { grid-column: span 7; }
.vz-bento-card--5 { grid-column: span 5; }
.vz-bento-card--4 { grid-column: span 4; }
.vz-bento-card--8 { grid-column: span 8; }
.vz-bento-card--dark { color: #fff; background: var(--vz-dark); border-color: var(--vz-dark); }
.vz-bento-card--dark p { color: rgba(255,255,255,.66); }
.vz-bento-card--accent { color: #fff; background: var(--vz-accent); border-color: var(--vz-accent); }
.vz-bento-card--accent p { color: rgba(255,255,255,.76); }
.vz-bento-card--image { position: relative; min-height: 390px; }
.vz-bento-card--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vz-bento-card--image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(18,20,22,.83), rgba(18,20,22,.08) 70%); }
.vz-bento-card--image > div { position: absolute; z-index: 1; right: 28px; bottom: 28px; left: 28px; color: #fff; }
.vz-bento-card--image p { color: rgba(255,255,255,.75); }
.vz-card-link { display: inline-flex; align-items: center; margin-top: 24px; color: var(--vz-accent); font-weight: 800; text-decoration: none; }
.vz-bento-card--accent .vz-card-link,
.vz-bento-card--dark .vz-card-link,
.vz-bento-card--image .vz-card-link { color: #fff; }

.vz-products { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.vz-product {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--vz-line);
  border-radius: 18px;
  text-decoration: none;
  transition: box-shadow var(--vz-ease), border-color var(--vz-ease);
}
.vz-product:hover { border-color: #b9bec5; box-shadow: var(--vz-shadow-md); }
.vz-product-image { height: 150px; display: grid; place-items: center; margin-bottom: 20px; background: #f2f3f6; border-radius: 13px; }
.vz-product-image img { width: 100%; height: 100%; padding: 15px; object-fit: contain; }
.vz-product span { color: #7b8086; font-size: 12px; }
.vz-product strong { display: block; margin-top: 5px; font-size: 18px; }

.vz-page-hero { padding: 40px 0 28px; }
.vz-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; color: #757b82; font-size: 13px; }
.vz-breadcrumbs a { text-decoration: none; }
.vz-breadcrumbs span::before { margin-right: 8px; content: "/"; color: #aeb2b8; }
.vz-page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); align-items: center; gap: 56px; }
.vz-page-hero h1 { margin: 0 0 20px; font-size: clamp(42px,6vw,70px); line-height: 1.01; letter-spacing: -.055em; }
.vz-page-hero h1 em { color: var(--vz-accent); font-style: normal; }
.vz-page-hero-copy > p { max-width: 650px; margin: 0 0 28px; color: var(--vz-ink-soft); font-size: 19px; }
.vz-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.vz-chip { min-height: 36px; display: inline-flex; align-items: center; padding: 7px 11px; color: #4e545a; background: #fff; border: 1px solid var(--vz-line); border-radius: 999px; font-size: 12px; font-weight: 700; }
.vz-page-hero-media { position: relative; min-height: 470px; overflow: hidden; background: var(--vz-dark); border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-md); }
.vz-page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vz-page-hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(16,18,20,.72), transparent 62%); }
.vz-media-label { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; color: #fff; }
.vz-media-label strong { display: block; font-size: 21px; }
.vz-media-label span { color: rgba(255,255,255,.68); font-size: 13px; }

.vz-spec-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.vz-spec-card { padding: 30px; background: #fff; border: 1px solid var(--vz-line); border-radius: var(--vz-radius); box-shadow: var(--vz-shadow-sm); }
.vz-spec-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.vz-spec-card h3 { margin: 0; font-size: 36px; letter-spacing: -.04em; }
.vz-tag { display: inline-flex; padding: 6px 9px; color: var(--vz-accent); background: var(--vz-accent-soft); border-radius: 7px; font-size: 11px; font-weight: 800; }
.vz-spec-card > p { min-height: 50px; color: var(--vz-ink-soft); }
.vz-specs { margin: 24px 0; border-top: 1px solid var(--vz-line); }
.vz-specs div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--vz-line); }
.vz-specs dt { color: #747a80; }
.vz-specs dd { margin: 0; font-weight: 800; text-align: right; }

.vz-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--vz-line); border-radius: 17px; box-shadow: var(--vz-shadow-sm); }
.vz-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.vz-table th,
.vz-table td { padding: 16px 18px; border-bottom: 1px solid var(--vz-line); text-align: left; }
.vz-table th { color: #72777d; background: #f7f8fa; font-size: 12px; text-transform: uppercase; }
.vz-table td { font-size: 14px; }
.vz-table tr:last-child td { border-bottom: 0; }
.vz-table strong { color: var(--vz-ink); }
.vz-table a { color: var(--vz-accent); font-weight: 800; text-decoration: none; }

.vz-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; margin: 0; padding: 0; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; list-style: none; }
.vz-process li { min-height: 230px; padding: 28px; background: var(--vz-dark-2); }
.vz-process span { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 44px; color: var(--vz-dark); background: var(--vz-signal); border-radius: 50%; font-weight: 800; }
.vz-process h3 { margin: 0 0 8px; font-size: 20px; }
.vz-process p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.vz-form-layout { display: grid; grid-template-columns: minmax(0,.7fr) minmax(520px,.95fr); align-items: start; gap: 72px; }
.vz-form-copy > p { color: rgba(255,255,255,.7); font-size: 18px; }
.vz-form-copy ul { display: grid; gap: 11px; margin: 30px 0; padding: 0; list-style: none; }
.vz-form-copy li { position: relative; padding-left: 22px; color: rgba(255,255,255,.8); }
.vz-form-copy li::before { position: absolute; top: 9px; left: 0; width: 9px; height: 9px; content: ""; background: var(--vz-signal); border-radius: 50%; }
.vz-form-phone { display: block; margin-top: 34px; color: #fff; font-size: 30px; font-weight: 800; text-decoration: none; }
.vz-lead-form { padding: 32px; color: var(--vz-ink); background: #fff; border-radius: 22px; box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.vz-lead-form h3 { margin: 0 0 8px; font-size: 27px; }
.vz-lead-form > p { margin: 0 0 22px; color: var(--vz-ink-soft); font-size: 13px; }
.vz-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.vz-field { display: flex; flex-direction: column; gap: 6px; }
.vz-field--wide { grid-column: 1 / -1; }
.vz-field span,
.vz-captcha label span { color: #555b61; font-size: 12px; font-weight: 700; }
.vz-field input,
.vz-field select,
.vz-field textarea,
.vz-captcha input { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--vz-ink); background: #fff; border: 1px solid #c9ced4; border-radius: 10px; outline: 0; }
.vz-field textarea { resize: vertical; }
.vz-field input:focus,
.vz-field select:focus,
.vz-field textarea:focus,
.vz-captcha input:focus { border-color: var(--vz-accent); box-shadow: 0 0 0 3px rgba(152,38,31,.1); }
.vz-captcha { min-height: 70px; display: flex; align-items: center; gap: 14px; margin: 16px 0; padding: 12px; background: #f1f2f4; border-radius: 11px; }
.vz-captcha p { margin: 0; color: #676d73; font-size: 12px; }
.vz-captcha img { width: 120px; height: 40px; object-fit: contain; background: #fff; }
.vz-captcha label { flex: 1; display: flex; align-items: center; gap: 10px; }
.vz-captcha input { max-width: 130px; min-height: 40px; }
.vz-captcha-error { color: #694e12; background: #fff5d8; }
.vz-captcha a { color: var(--vz-accent); font-weight: 800; }
.vz-consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; margin: 15px 0; color: #686e74; font-size: 11px; }
.vz-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--vz-accent); }

.vz-faq { display: grid; grid-template-columns: minmax(250px,.55fr) minmax(540px,1fr); gap: 70px; }
.vz-faq-list { border-top: 1px solid var(--vz-line); }
.vz-faq details { border-bottom: 1px solid var(--vz-line); }
.vz-faq summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.vz-faq summary::-webkit-details-marker { display: none; }
.vz-faq summary::after { position: absolute; top: 18px; right: 0; width: 32px; height: 32px; display: grid; place-items: center; content: "+"; color: var(--vz-accent); background: var(--vz-accent-soft); border-radius: 50%; font-size: 20px; }
.vz-faq details[open] summary::after { content: "−"; }
.vz-faq details p { margin: 0; padding: 0 42px 22px 0; color: var(--vz-ink-soft); }

.vz-cta-band { padding: 68px 0; color: #fff; background: var(--vz-accent); }
.vz-cta-band .vz-container { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 50px; }
.vz-cta-band h2 { margin: 0 0 10px; font-size: clamp(32px,4.5vw,52px); line-height: 1.06; letter-spacing: -.04em; }
.vz-cta-band p { margin: 0; color: rgba(255,255,255,.75); }

.vz-footer { padding: 70px 0 24px; color: rgba(255,255,255,.72); background: #121416; }
.vz-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; }
.vz-footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 8px; }
.vz-footer h2 { margin: 0 0 12px; color: #fff; font-size: 14px; }
.vz-footer a { font-size: 13px; text-decoration: none; transition: color var(--vz-ease); }
.vz-footer a:hover { color: #fff; }
.vz-footer-brand { padding-right: 30px; }
.vz-footer-brand .vz-brand-mark { margin-bottom: 10px; }
.vz-footer-brand strong { color: #fff; font-size: 17px; }
.vz-footer p { margin: 4px 0 0; color: rgba(255,255,255,.46); font-size: 13px; }
.vz-footer-contact > a:first-of-type { color: #fff; font-size: 19px; font-weight: 800; }
.vz-footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 12px; }

@media (max-width: 1080px) {
  .vz-nav { grid-template-columns: minmax(240px,1fr) auto auto; }
  .vz-desktop-nav a { padding-inline: 8px; font-size: 13px; }
  .vz-nav-contact { min-width: 0; }
  .vz-nav-contact span { display: none; }
  .vz-legacy #main_table > tbody > tr:nth-child(2) > td:nth-child(2) { grid-template-columns: 190px minmax(0,1fr); }
  .vz-legacy #right_column { display: none !important; }
  .vz-products { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .vz-desktop-nav,
  .vz-nav-contact { display: none; }
  .vz-nav { grid-template-columns: minmax(0,1fr) auto; }
  .vz-menu-button { display: grid; }
  .vz-legacy #main_table > tbody > tr:nth-child(2) > td:nth-child(2) { grid-template-columns: 1fr; }
  .vz-legacy #left_column { display: none !important; }
  .vz-legacy #main-content { padding: 24px !important; }
  .vz-hero { min-height: 720px; }
  .vz-hero-content { padding-bottom: 310px; }
  .vz-hero-facts .vz-container { grid-template-columns: 1fr; gap: 1px; }
  .vz-hero-facts article { min-height: 0; border-radius: 0; }
  .vz-hero-facts article:first-child { border-radius: 20px 20px 0 0; }
  .vz-section-head,
  .vz-page-hero-grid,
  .vz-form-layout,
  .vz-faq,
  .vz-cta-band .vz-container { grid-template-columns: 1fr; gap: 28px; }
  .vz-bento-card--7,
  .vz-bento-card--5,
  .vz-bento-card--4,
  .vz-bento-card--8 { grid-column: span 6; }
  .vz-products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vz-process { grid-template-columns: repeat(2,1fr); }
  .vz-page-hero-media { min-height: 380px; }
  .vz-footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .vz-container { width: min(calc(100% - 28px), var(--vz-container)); }
  .vz-announcement .vz-container { justify-content: center; text-align: center; }
  .vz-announcement a { display: none; }
  .vz-nav-wrap { padding: 8px 0; }
  .vz-nav { min-height: 68px; padding: 7px 8px; border-radius: 14px; }
  .vz-brand-mark { width: 50px; height: 50px; flex-basis: 50px; border-radius: 10px; }
  .vz-brand-mark img { width: 42px; height: 40px; }
  .vz-brand-copy strong { max-width: 190px; font-size: 14px; white-space: normal; }
  .vz-brand-copy small { display: none; }
  .vz-menu-button { min-width: 50px; min-height: 50px; }
  .vz-legacy #main_table { width: min(calc(100% - 28px), var(--vz-container)) !important; margin-top: 8px !important; }
  .vz-legacy #main-content { padding: 20px 16px !important; border-radius: 16px; }
  .vz-legacy #main-content .otstup_right { max-width: 100px; }
  .vz-legacy #main-content table.catalog { display: block; overflow-x: auto; }
  .vz-legacy table.catalog tbody { min-width: 680px; display: table; width: 100%; }
  .vz-legacy table.catalog .search form > div { float: none !important; margin: 0 0 10px !important; }
  .vz-legacy table.catalog .search form > div > div { float: none !important; margin: 0 0 10px !important; }
  .vz-hero { min-height: 760px; }
  .vz-hero::before { background: linear-gradient(0deg, rgba(17,19,22,.94), rgba(17,19,22,.38)); }
  .vz-hero-content { padding: 60px 0 320px; }
  .vz-hero h1 { font-size: 42px; }
  .vz-actions { flex-direction: column; }
  .vz-actions .vz-btn { width: 100%; }
  .vz-hero-facts article { padding: 18px; }
  .vz-section { padding: 62px 0; }
  .vz-section-head { margin-bottom: 26px; }
  .vz-bento { grid-template-columns: 1fr; }
  .vz-bento-card--7,
  .vz-bento-card--5,
  .vz-bento-card--4,
  .vz-bento-card--8 { grid-column: auto; }
  .vz-bento-card { min-height: 0; padding: 22px; }
  .vz-bento-card--image { min-height: 330px; }
  .vz-products,
  .vz-spec-grid,
  .vz-process,
  .vz-form-grid { grid-template-columns: 1fr; }
  .vz-page-hero { padding-top: 26px; }
  .vz-page-hero h1 { font-size: 42px; }
  .vz-page-hero-copy > p { font-size: 17px; }
  .vz-page-hero-media { min-height: 330px; border-radius: 24px; }
  .vz-spec-card { padding: 22px; }
  .vz-spec-card > p { min-height: 0; }
  .vz-specs div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .vz-specs dd { text-align: left; }
  .vz-process li { min-height: 0; padding: 23px; }
  .vz-process span { margin-bottom: 25px; }
  .vz-lead-form { padding: 24px 18px; }
  .vz-field--wide { grid-column: auto; }
  .vz-captcha,
  .vz-captcha label { align-items: flex-start; flex-direction: column; }
  .vz-captcha input { max-width: none; }
  .vz-form-phone { font-size: 25px; }
  .vz-faq summary { font-size: 15px; }
  .vz-cta-band .vz-actions { width: 100%; }
  .vz-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .vz-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@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; }
}
