:root {
  --ink: #0a0d0f;
  --ink-2: #11161a;
  --ink-3: #1a2228;
  --steel: #6f7a83;
  --steel-2: #9aa4ac;
  --paper: #f4f1e9;
  --paper-2: #ebe6da;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-2: #ff8a32;
  --acid: #d8ff3e;
  --blueprint: #0c2931;
  --line: rgba(10, 13, 15, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --success: #2c9a64;
  --danger: #cc3b38;
  --shadow: 0 24px 70px rgba(5, 8, 10, .16);
  --shadow-dark: 0 30px 100px rgba(0, 0, 0, .35);
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 900px); margin-inline: auto; }
.section { position: relative; padding: clamp(78px, 9vw, 138px) 0; overflow: hidden; }
.section--compact { padding: clamp(54px, 6vw, 88px) 0; }
.section--dark { color: var(--white); background: var(--ink); }
.section--ink2 { color: var(--white); background: var(--ink-2); }
.section--light { background: var(--paper); }
.section--white { background: var(--white); }
.section--warm { background: var(--paper-2); }
.section--blueprint { color: var(--white); background: var(--blueprint); }
.section--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 90%);
}
.section--technical::after {
  content: "";
  position: absolute;
  width: min(780px, 85vw);
  aspect-ratio: 1;
  border: 1px solid rgba(216,255,62,.25);
  border-radius: 50%;
  right: -420px;
  top: -280px;
  box-shadow: 0 0 0 80px rgba(216,255,62,.025), 0 0 0 160px rgba(216,255,62,.018);
  pointer-events: none;
}

.topline {
  position: relative;
  z-index: 51;
  color: rgba(255,255,255,.72);
  background: #050708;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topline__items { display: flex; align-items: center; gap: 22px; }
.topline__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topline__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px rgba(216,255,62,.8); }
.topline a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(10,13,15,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(10,13,15,.96); box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.nav-shell { min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.logo__mark { width: 48px; height: 48px; flex: 0 0 auto; }
.logo__text { display: grid; line-height: 1.05; }
.logo__name { font-weight: 900; font-size: 17px; letter-spacing: -.02em; }
.logo__sub { margin-top: 5px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link,
.nav-drop > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 11px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  list-style: none;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-link:hover,
.nav-link[aria-current="page"],
.nav-drop > summary:hover,
.nav-drop[open] > summary { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
}
.nav-drop { position: relative; }
.nav-drop__panel {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 78vw);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.nav-drop__panel--single { width: 380px; grid-template-columns: 1fr; }
.nav-drop__item { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; }
.nav-drop__item:hover { background: var(--paper); }
.nav-drop__icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--orange); background: var(--ink); border-radius: 9px; }
.nav-drop__item strong { display: block; font-size: 13px; line-height: 1.25; }
.nav-drop__item small { display: block; margin-top: 3px; color: var(--steel); font-size: 11px; line-height: 1.3; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: grid; justify-items: end; line-height: 1.15; white-space: nowrap; }
.header-phone strong { font-size: 15px; }
.header-phone small { margin-top: 4px; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle { display: none; width: 46px; height: 46px; place-items: center; padding: 0; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after { content: ""; width: 20px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle { position: relative; }
.menu-toggle span { position: absolute; }
.menu-toggle::before { position: absolute; transform: translateY(-6px); }
.menu-toggle::after { position: absolute; transform: translateY(6px); }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: rotate(45deg); }
.nav-open .menu-toggle::after { transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: calc(var(--header-h) + 54px) 20px 34px;
  overflow: auto;
  color: var(--white);
  background: rgba(7,9,10,.98);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .3s ease;
}
.nav-open .mobile-nav { transform: none; opacity: 1; }
.mobile-nav__inner { width: min(100%, 640px); margin: 0 auto; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: clamp(22px, 6vw, 34px); font-weight: 850; line-height: 1.1; }
.mobile-nav details { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; list-style: none; font-size: clamp(22px, 6vw, 34px); font-weight: 850; cursor: pointer; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav__sub { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 0 0 16px; }
.mobile-nav__sub a { padding: 11px 12px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); border-radius: 10px; font-size: 13px; }
.mobile-nav__contacts { display: grid; gap: 12px; padding-top: 26px; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { color: var(--ink); background: var(--orange); box-shadow: 0 12px 32px rgba(255,106,0,.25); }
.btn--primary:hover { background: var(--orange-2); box-shadow: 0 16px 38px rgba(255,106,0,.33); }
.btn--acid { color: var(--ink); background: var(--acid); box-shadow: 0 12px 32px rgba(216,255,62,.17); }
.btn--acid:hover { background: #e2ff70; }
.btn--dark { color: var(--white); background: var(--ink); }
.btn--outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.28); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--outline-dark { color: var(--ink); background: transparent; border-color: rgba(10,13,15,.24); }
.btn--outline-dark:hover { border-color: var(--ink); }
.btn--ghost { min-height: 42px; padding: 9px 14px; color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
.btn--wide { width: 100%; }
.btn__icon { width: 18px; height: 18px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--acid { color: var(--acid); }
.eyebrow--light { color: rgba(255,255,255,.72); }
.display { margin: 0; font-size: clamp(44px, 7.2vw, 104px); font-weight: 950; letter-spacing: -.065em; line-height: .92; text-wrap: balance; }
.display--medium { font-size: clamp(40px, 5.6vw, 76px); }
.h1 { margin: 0; font-size: clamp(42px, 6.2vw, 82px); font-weight: 950; letter-spacing: -.06em; line-height: .96; text-wrap: balance; }
.h2 { margin: 0; font-size: clamp(34px, 4.5vw, 62px); font-weight: 920; letter-spacing: -.048em; line-height: 1.02; text-wrap: balance; }
.h3 { margin: 0; font-size: clamp(24px, 2.8vw, 38px); font-weight: 900; letter-spacing: -.035em; line-height: 1.08; }
.h4 { margin: 0; font-size: 20px; font-weight: 850; letter-spacing: -.02em; line-height: 1.2; }
.lead { margin: 24px 0 0; max-width: 760px; color: var(--steel); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.section--dark .lead,
.section--ink2 .lead,
.section--blueprint .lead { color: rgba(255,255,255,.67); }
.prose { color: #3f484f; }
.prose p { margin: 0 0 20px; }
.prose h2 { margin: 58px 0 18px; font-size: clamp(28px, 3.5vw, 46px); line-height: 1.08; letter-spacing: -.04em; }
.prose h3 { margin: 38px 0 14px; font-size: 26px; line-height: 1.15; letter-spacing: -.03em; }
.prose ul { padding-left: 20px; }
.prose li { margin: 9px 0; }
.prose a { color: #bc4d00; text-decoration: underline; text-underline-offset: 3px; }
.section-head { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(260px,.65fr); align-items: end; gap: 40px; margin-bottom: clamp(36px, 6vw, 70px); }
.section-head__aside { color: var(--steel); font-size: 16px; }
.section--dark .section-head__aside,
.section--blueprint .section-head__aside { color: rgba(255,255,255,.62); }
.text-orange { color: var(--orange); }
.text-acid { color: var(--acid); }
.text-stroke { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.35); }
.kicker-line { width: 100%; height: 1px; margin-top: 26px; background: currentColor; opacity: .2; }

.hero {
  position: relative;
  min-height: min(930px, calc(100svh - 34px));
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 25%, rgba(255,106,0,.14), transparent 28%),
    radial-gradient(circle at 25% 86%, rgba(216,255,62,.07), transparent 23%),
    var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 85%, transparent);
}
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -38vw;
  width: 72vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255,255,255,.015), 0 0 0 12vw rgba(255,255,255,.01);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.03fr) minmax(440px,.97fr); align-items: center; gap: clamp(28px, 4vw, 72px); padding: clamp(82px, 9vw, 126px) 0; }
.hero-copy { max-width: 750px; }
.hero-copy .h1 { max-width: 780px; }
.hero-subtitle { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: rgba(255,255,255,.56); font-size: 12px; }
.hero-note svg { color: var(--acid); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; }
.metric { padding: 18px; background: rgba(10,13,15,.75); }
.metric strong { display: block; color: var(--acid); font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -.04em; line-height: 1; }
.metric span { display: block; margin-top: 8px; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.3; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-visual__frame {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: .98;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.01)),
    radial-gradient(circle at 50% 55%, rgba(255,106,0,.08), transparent 48%);
  box-shadow: inset 0 1px rgba(255,255,255,.12), var(--shadow-dark);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.hero-visual__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-visual__frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 0;
  right: 0;
  top: -30%;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgba(216,255,62,.12), transparent);
  filter: blur(4px);
  animation: scan 5.8s linear infinite;
}
@keyframes scan { to { transform: translateY(760%); } }
.hero-visual__image { position: absolute; inset: 4%; width: 92%; height: 92%; z-index: 1; object-fit: cover; border-radius: 24px; filter: drop-shadow(0 22px 32px rgba(0,0,0,.35)); }
.tech-label { position: absolute; z-index: 3; display: grid; gap: 3px; min-width: 130px; padding: 11px 12px; color: var(--white); background: rgba(10,13,15,.82); border: 1px solid rgba(255,255,255,.18); border-radius: 10px; backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.tech-label::before { content: ""; position: absolute; width: 50px; height: 1px; background: rgba(216,255,62,.55); }
.tech-label strong { color: var(--acid); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.tech-label span { color: rgba(255,255,255,.6); font-size: 10px; }
.tech-label--a { left: -12px; top: 22%; }
.tech-label--a::before { left: 100%; top: 50%; }
.tech-label--b { right: -8px; top: 53%; }
.tech-label--b::before { right: 100%; top: 50%; }
.tech-label--c { left: 14%; bottom: 3%; }
.tech-label--c::before { left: 30%; bottom: 100%; width: 1px; height: 40px; }
.hero-badge { position: absolute; right: -10px; top: 8%; z-index: 4; width: 118px; aspect-ratio: 1; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-weight: 950; text-align: center; line-height: 1.1; transform: rotate(8deg); box-shadow: 0 16px 46px rgba(216,255,62,.16); }
.hero-badge small { display: block; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.trust-rail { border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); background: var(--ink-2); color: var(--white); }
.trust-rail__inner { min-height: 106px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; }
.trust-item { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; padding: 18px 24px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.trust-item__num { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.trust-item strong { display: block; font-size: 13px; line-height: 1.25; }
.trust-item small { display: block; margin-top: 5px; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.35; }

.split-risk { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(34px, 7vw, 100px); align-items: start; }
.sticky-copy { position: sticky; top: calc(var(--header-h) + 40px); }
.sticky-copy .lead { max-width: 540px; }
.risk-stack { display: grid; gap: 14px; }
.risk-card { position: relative; min-height: 210px; display: grid; grid-template-columns: 1fr 160px; gap: 24px; padding: clamp(24px, 4vw, 38px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.risk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.risk-card__index { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.risk-card h3 { margin: 16px 0 10px; font-size: clamp(25px,3vw,38px); line-height: 1.05; letter-spacing: -.04em; }
.risk-card p { margin: 0; max-width: 560px; color: var(--steel); }
.risk-card__symbol { position: relative; display: grid; place-items: center; color: var(--ink); }
.risk-card__symbol svg { width: 130px; height: 130px; }
.risk-card__symbol::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(10,13,15,.12); border-radius: 50%; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.equipment-card { position: relative; min-height: 360px; padding: 24px; display: flex; flex-direction: column; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), background .35s ease, border-color .35s ease; }
.equipment-card:hover { transform: translateY(-6px); background: #172027; border-color: rgba(216,255,62,.36); }
.equipment-card::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.equipment-card__top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.equipment-card__tag { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.equipment-card__arrow { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transition: transform .3s var(--ease), background .3s ease, color .3s ease; }
.equipment-card:hover .equipment-card__arrow { color: var(--ink); background: var(--acid); transform: rotate(-35deg); }
.equipment-card__art { position: relative; z-index: 1; flex: 1; min-height: 190px; display: grid; place-items: center; margin: 14px -14px 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #0a0d0f; }
.equipment-card__art img { width: 100%; height: 190px; object-fit: cover; transition: transform .45s var(--ease); }
.equipment-card:hover .equipment-card__art img { transform: scale(1.04) translateY(-3px); }
.equipment-card h3 { position: relative; z-index: 2; margin: 0; font-size: 25px; line-height: 1.05; letter-spacing: -.035em; }
.equipment-card p { position: relative; z-index: 2; margin: 10px 0 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.45; }
.equipment-card--accent { color: var(--ink); background: var(--orange); border-color: transparent; }
.equipment-card--accent::before { opacity: .1; }
.equipment-card--accent .equipment-card__tag { color: var(--ink); }
.equipment-card--accent p { color: rgba(10,13,15,.68); }
.equipment-card--accent .equipment-card__arrow { border-color: rgba(10,13,15,.2); }
.equipment-card--accent:hover { background: var(--orange-2); border-color: transparent; }

.delivery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: rgba(10,13,15,.14); border: 1px solid rgba(10,13,15,.14); border-radius: var(--radius); overflow: hidden; }
.delivery-card { position: relative; min-height: 270px; padding: 30px; background: var(--paper); }
.delivery-card__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 14px; }
.delivery-card__num { position: absolute; right: 26px; top: 22px; color: rgba(10,13,15,.12); font-size: 52px; font-weight: 950; line-height: 1; }
.delivery-card h3 { margin: 50px 0 12px; font-size: 23px; line-height: 1.12; letter-spacing: -.03em; }
.delivery-card p { margin: 0; color: var(--steel); font-size: 14px; }

.configurator { position: relative; display: grid; grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr); gap: 0; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark); }
.configurator__intro { position: relative; padding: clamp(34px,6vw,72px); background: var(--ink); overflow: hidden; }
.configurator__intro::before { content: ""; position: absolute; width: 420px; aspect-ratio: 1; right: -230px; bottom: -220px; border: 1px solid rgba(216,255,62,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(216,255,62,.025), 0 0 0 140px rgba(216,255,62,.018); }
.configurator__intro > * { position: relative; z-index: 1; }
.configurator__intro p { color: rgba(255,255,255,.6); }
.configurator__steps { display: grid; gap: 11px; margin-top: 32px; }
.configurator__step { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: 13px; }
.configurator__step span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 11px; font-weight: 900; }
.configurator__body { padding: clamp(34px,6vw,72px); background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.form-section { margin-bottom: 30px; }
.form-section:last-child { margin-bottom: 0; }
.form-label { display: block; margin-bottom: 10px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 12px 14px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); border-radius: 11px; font-size: 13px; font-weight: 700; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.choice input:checked + span { color: var(--white); background: rgba(216,255,62,.08); border-color: var(--acid); box-shadow: inset 0 0 0 1px rgba(216,255,62,.15); }
.choice input:focus-visible + span { outline: 3px solid rgba(255,106,0,.4); outline-offset: 2px; }
.config-result { margin-top: 30px; padding: 24px; color: var(--ink); background: var(--acid); border-radius: 16px; }
.config-result__caption { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.config-result h3 { margin: 8px 0; font-size: 24px; line-height: 1.1; }
.config-result p { margin: 0; color: rgba(10,13,15,.68); font-size: 13px; }
.config-result__list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.config-result__list li { display: flex; gap: 8px; font-size: 12px; font-weight: 700; }
.config-result__list li::before { content: "✓"; font-weight: 950; }

.compare { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.compare-card { position: relative; min-height: 480px; padding: clamp(28px,5vw,56px); color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; }
.compare-card--fops { background: var(--blueprint); }
.compare-card__abbr { color: var(--acid); font-size: clamp(72px,11vw,150px); font-weight: 950; letter-spacing: -.09em; line-height: .75; opacity: .18; }
.compare-card h3 { margin: 38px 0 16px; font-size: clamp(30px,4vw,50px); line-height: 1; letter-spacing: -.05em; }
.compare-card p { max-width: 520px; color: rgba(255,255,255,.62); }
.compare-card__points { display: grid; gap: 10px; margin-top: 28px; }
.compare-card__point { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: rgba(255,255,255,.78); font-size: 13px; }
.compare-card__point span { width: 20px; height: 20px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 10px; font-weight: 950; }
.compare-card__vector { position: absolute; right: -20px; bottom: -38px; width: 44%; opacity: .35; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 0; border-top: 1px solid rgba(10,13,15,.18); }
.process-step { position: relative; padding: 32px 24px 0 0; border-right: 1px solid rgba(10,13,15,.16); min-height: 250px; }
.process-step:last-child { border-right: 0; padding-right: 0; }
.process-step::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 52px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.process-step::after { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,106,0,.12); }
.process-step h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.15; }
.process-step p { margin: 0; color: var(--steel); font-size: 13px; }

.case-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 16px; }
.case-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 26px; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.case-card:nth-child(1), .case-card:nth-child(4) { grid-column: span 7; }
.case-card:nth-child(2), .case-card:nth-child(3) { grid-column: span 5; }
.case-card::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 34px 34px; }
.case-card__head { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.case-card__tag { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.case-card__meta { color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.case-card__art { position: relative; z-index: 1; flex: 1; min-height: 220px; display: grid; place-items: center; margin: 18px -10px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #0a0d0f; }
.case-card__art img { width: 100%; height: 250px; object-fit: cover; transition: transform .5s var(--ease); }
.case-card:hover .case-card__art img { transform: scale(1.035); }
.case-card__footer { position: relative; z-index: 2; }
.case-card h3 { margin: 0; font-size: clamp(23px,3vw,34px); line-height: 1.05; letter-spacing: -.04em; }
.case-card p { margin: 10px 0 0; color: rgba(255,255,255,.56); font-size: 13px; }

.faq { display: grid; grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); gap: clamp(36px,7vw,100px); align-items: start; }
.faq-list { border-top: 1px solid rgba(10,13,15,.18); }
.faq-item { border-bottom: 1px solid rgba(10,13,15,.18); }
.faq-item summary { position: relative; display: flex; justify-content: space-between; gap: 24px; padding: 24px 44px 24px 0; list-style: none; cursor: pointer; font-size: clamp(18px,2.2vw,24px); font-weight: 850; line-height: 1.25; letter-spacing: -.02em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before,
.faq-item summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 18px; height: 2px; background: var(--ink); transition: transform .25s ease; }
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item__body { padding: 0 56px 26px 0; color: var(--steel); }
.section--dark .faq-list { border-color: rgba(255,255,255,.16); }
.section--dark .faq-item { border-color: rgba(255,255,255,.16); }
.section--dark .faq-item summary::before,
.section--dark .faq-item summary::after { background: var(--white); }
.section--dark .faq-item__body { color: rgba(255,255,255,.6); }

.cta-panel { position: relative; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr); gap: clamp(32px,6vw,76px); align-items: center; padding: clamp(34px,7vw,82px); color: var(--white); background: var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark); }
.cta-panel::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at 78% 40%, #000, transparent 58%); }
.cta-panel::after { content: ""; position: absolute; right: -180px; top: -180px; width: 460px; aspect-ratio: 1; border: 1px solid rgba(216,255,62,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(216,255,62,.02), 0 0 0 140px rgba(216,255,62,.016); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { max-width: 650px; color: rgba(255,255,255,.62); }
.lead-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field input,
.field select,
.field textarea { width: 100%; min-height: 54px; padding: 14px 15px; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 11px; outline: none; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 112px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.36); }
.field select option { color: var(--ink); background: var(--white); }
.field input:focus,
.field select:focus,
.field textarea:focus { background: rgba(255,255,255,.1); border-color: var(--acid); box-shadow: 0 0 0 3px rgba(216,255,62,.1); }
.field--light label { color: var(--steel); }
.field--light input,
.field--light select,
.field--light textarea { color: var(--ink); background: var(--white); border-color: rgba(10,13,15,.18); }
.field--light input::placeholder,
.field--light textarea::placeholder { color: #8b949b; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.45; }
.check input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--orange); }
.check a { text-decoration: underline; text-underline-offset: 2px; }
.check--dark { color: var(--steel); }
.form-status { display: none; padding: 12px 14px; border-radius: 10px; font-size: 12px; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #caffdd; background: rgba(44,154,100,.18); border: 1px solid rgba(44,154,100,.4); }
.form-status.is-error { color: #ffd2cf; background: rgba(204,59,56,.18); border: 1px solid rgba(204,59,56,.4); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

.page-hero { position: relative; padding: clamp(84px,10vw,148px) 0 clamp(70px,8vw,118px); color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, #000 25%, #000 85%, transparent); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.03fr) minmax(340px,.72fr); align-items: center; gap: clamp(32px,7vw,98px); }
.page-hero__copy .lead { max-width: 760px; }
.page-hero__visual { height: 390px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: #11161a; overflow: hidden; }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__visual--document { padding: 26px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)); }
.page-hero__visual--document img { width: auto; max-width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 24px 35px rgba(0,0,0,.38)); }
.content-photo { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 1px solid rgba(10,13,15,.12); border-radius: 8px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: rgba(255,255,255,.48); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span::before { content: "/"; margin-right: 8px; opacity: .5; }
.page-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: 11px; }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.feature-card { min-height: 250px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card__icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 14px; }
.feature-card h3 { margin: 48px 0 12px; font-size: 23px; line-height: 1.12; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--steel); font-size: 14px; }
.feature-card--dark { color: var(--white); background: var(--ink-2); border-color: rgba(255,255,255,.1); }
.feature-card--dark p { color: rgba(255,255,255,.58); }
.feature-card--dark .feature-card__icon { color: var(--ink); background: var(--acid); }

.two-col { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px,7vw,90px); align-items: start; }
.two-col--center { align-items: center; }
.content-card { padding: clamp(26px,5vw,54px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.content-card--dark { color: var(--white); background: var(--ink-2); border-color: rgba(255,255,255,.12); }
.content-card--dark p { color: rgba(255,255,255,.62); }
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 11px; align-items: start; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 11px; font-weight: 950; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { padding: 8px 11px; color: var(--ink); background: var(--paper-2); border: 1px solid rgba(10,13,15,.12); border-radius: 999px; font-size: 11px; font-weight: 700; }

.spec-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line); }
.spec-table th,
.spec-table td { padding: 18px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 32%; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.spec-table td { color: var(--steel); }

.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-cloud span { padding: 11px 14px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; font-size: 12px; font-weight: 800; }

.document-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.document-card { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 28px; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.document-card__preview { flex: 1; display: grid; place-items: center; min-height: 210px; }
.document-card__preview img { width: auto; max-width: 100%; max-height: 210px; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
.document-card h3 { margin: 20px 0 10px; font-size: 22px; }
.document-card p { margin: 0 0 20px; color: rgba(255,255,255,.56); font-size: 13px; }
.document-card .btn { margin-top: auto; align-self: flex-start; }

.contact-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 16px; }
.contact-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.contact-card__label { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card__value { margin-top: 50px; font-size: clamp(24px,3.2vw,42px); font-weight: 900; line-height: 1.08; letter-spacing: -.04em; }
.contact-card__note { margin-top: 10px; color: rgba(255,255,255,.5); font-size: 12px; }
.map-card { min-height: 436px; position: relative; display: grid; place-items: center; padding: 30px; color: var(--white); background: var(--blueprint); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.map-card::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 32px 32px; }
.map-card__pin { position: relative; z-index: 2; width: 140px; height: 140px; display: grid; place-items: center; color: var(--ink); background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.map-card__pin svg { transform: rotate(45deg); }
.map-card__caption { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 2; display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.map-card__caption strong { font-size: 24px; line-height: 1.1; }
.map-card__caption small { color: rgba(255,255,255,.55); }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: clamp(34px,7vw,90px); align-items: start; }
.article-aside { position: sticky; top: calc(var(--header-h) + 34px); display: grid; gap: 14px; }
.article-toc { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.article-toc strong { display: block; margin-bottom: 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.article-toc a { display: block; padding: 7px 0; color: var(--steel); font-size: 12px; line-height: 1.35; }
.article-toc a:hover { color: var(--orange); }
.callout { margin: 34px 0; padding: 24px; background: var(--paper-2); border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; }
.callout strong { display: block; margin-bottom: 6px; }
.callout p { margin: 0; }
.normative-note { margin-top: 22px; padding: 18px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; font-size: 12px; }

.legal { color: #3c464d; }
.legal h1 { margin: 0 0 40px; color: var(--ink); font-size: clamp(36px,5vw,62px); line-height: 1; letter-spacing: -.05em; }
.legal h2 { margin: 42px 0 14px; color: var(--ink); font-size: 25px; line-height: 1.15; }
.legal h3 { margin: 28px 0 10px; color: var(--ink); font-size: 19px; }
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; }
.legal li { margin: 7px 0; }
.legal-meta { margin-bottom: 28px; padding: 16px 18px; background: var(--paper-2); border-radius: 12px; font-size: 12px; }

.site-footer { position: relative; color: var(--white); background: #060809; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, transparent, #000 42%, transparent); }
.footer-main { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .75fr .75fr 1fr; gap: 40px; padding: 76px 0 54px; }
.footer-brand p { max-width: 360px; margin: 22px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }
.footer-title { margin: 0 0 18px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact a { font-size: 18px; font-weight: 850; }
.footer-contact address { color: rgba(255,255,255,.56); font-size: 12px; font-style: normal; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 28px; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; line-height: 1.5; }
.footer-bottom__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal__dialog { position: relative; width: min(100%, 640px); max-height: min(880px, calc(100svh - 40px)); overflow: auto; padding: clamp(28px,5vw,50px); color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); box-shadow: var(--shadow-dark); transform: translateY(20px) scale(.98); transition: transform .3s var(--ease); }
.modal.is-open .modal__dialog { transform: none; }
.modal__close { position: absolute; right: 16px; top: 16px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.modal__dialog h2 { margin: 0 46px 12px 0; font-size: clamp(30px,4vw,44px); line-height: 1; letter-spacing: -.04em; }
.modal__dialog > p { margin: 0 0 26px; color: rgba(255,255,255,.58); }

.cookie-banner { position: fixed; z-index: 90; left: 20px; right: 20px; bottom: 20px; width: min(calc(100% - 40px), 720px); margin-left: auto; padding: 18px; display: none; grid-template-columns: 1fr auto; align-items: center; gap: 18px; color: var(--white); background: rgba(10,13,15,.96); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; box-shadow: var(--shadow-dark); backdrop-filter: blur(18px); }
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.45; }
.cookie-banner a { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-banner .btn { min-height: 40px; padding: 8px 13px; font-size: 11px; }

.mobile-cta { position: fixed; z-index: 42; left: 10px; right: 10px; bottom: 10px; display: none; grid-template-columns: 52px 1fr; gap: 8px; padding: 7px; color: var(--ink); background: rgba(255,255,255,.95); border: 1px solid rgba(0,0,0,.1); border-radius: 16px; box-shadow: 0 14px 40px rgba(0,0,0,.23); backdrop-filter: blur(14px); }
.mobile-cta__phone { width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.not-found { min-height: 75svh; display: grid; place-items: center; text-align: center; color: var(--white); background: var(--ink); }
.not-found__code { color: var(--acid); font-size: clamp(110px,24vw,290px); font-weight: 950; line-height: .75; letter-spacing: -.09em; opacity: .22; }
.not-found h1 { margin: -15px 0 16px; font-size: clamp(34px,5vw,60px); letter-spacing: -.05em; }
.not-found p { max-width: 560px; margin: 0 auto 28px; color: rgba(255,255,255,.58); }

@media (max-width: 1120px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr .86fr; }
  .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process { grid-template-columns: repeat(3,minmax(0,1fr)); row-gap: 34px; }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(4), .process-step:nth-child(5) { border-top: 1px solid rgba(10,13,15,.16); padding-top: 32px; }
  .footer-main { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-main > :last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: end; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .topline__items .topline__item:nth-child(n+2) { display: none; }
  .header-phone { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-copy { max-width: none; }
  .hero-visual { min-height: 520px; }
  .hero-visual__frame { width: min(100%, 570px); }
  .trust-rail__inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .split-risk, .faq, .configurator, .page-hero__grid, .cta-panel, .contact-grid, .article-layout { grid-template-columns: 1fr; }
  .sticky-copy, .article-aside { position: static; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .delivery-grid, .feature-grid, .document-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .compare { grid-template-columns: 1fr; }
  .case-card:nth-child(n) { grid-column: span 6; }
  .cta-panel { padding-bottom: 54px; }
  .page-hero__visual { height: 330px; }
  .two-col { grid-template-columns: 1fr; }
  .article-aside { grid-row: 1; }
  .article-toc { display: none; }
}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .topline__inner { justify-content: center; }
  .topline__right { display: none; }
  .logo__mark { width: 43px; height: 43px; }
  .logo__name { font-size: 15px; }
  .logo__sub { font-size: 8px; }
  .nav-shell { gap: 12px; }
  .hero-grid { padding: 64px 0 76px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .metric { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 14px; }
  .metric span { margin: 0; }
  .hero-visual { min-height: 400px; }
  .hero-visual__frame { border-radius: 24px; }
  .tech-label { min-width: 100px; padding: 8px; }
  .tech-label strong { font-size: 9px; }
  .tech-label span { font-size: 8px; }
  .tech-label--a { left: 2px; }
  .tech-label--b { right: 2px; }
  .hero-badge { width: 86px; right: 4px; }
  .trust-rail__inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .trust-item:first-child { border-left: 0; border-top: 0; }
  .risk-card { grid-template-columns: 1fr; min-height: 0; }
  .risk-card__symbol { justify-content: start; }
  .risk-card__symbol svg { width: 92px; height: 92px; }
  .catalog-grid, .delivery-grid, .feature-grid, .document-grid { grid-template-columns: 1fr; }
  .equipment-card { min-height: 330px; }
  .choice-grid { grid-template-columns: 1fr; }
  .configurator__intro, .configurator__body { padding: 30px 22px; }
  .compare-card { min-height: 420px; }
  .process { grid-template-columns: 1fr; border-top: 0; }
  .process-step, .process-step:nth-child(n) { min-height: auto; padding: 26px 0; border-top: 1px solid rgba(10,13,15,.16); border-right: 0; }
  .process-step::before { margin-bottom: 20px; }
  .process-step::after { top: 21px; left: auto; right: 0; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card:nth-child(n) { grid-column: auto; min-height: 370px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-panel { padding: 34px 22px; border-radius: 24px; }
  .page-hero { padding-top: 70px; }
  .page-hero__visual { height: 280px; }
  .page-actions { display: grid; }
  .page-actions .btn { width: 100%; }
  .spec-table th, .spec-table td { display: block; width: 100%; padding: 12px 10px; }
  .spec-table th { padding-bottom: 0; border-bottom: 0; color: var(--orange); }
  .spec-table td { padding-top: 6px; }
  .map-card { min-height: 390px; }
  .map-card__caption { align-items: start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 58px; }
  .footer-main > :last-child { grid-column: auto; grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom__links { justify-content: flex-start; }
  .cookie-banner { left: 10px; right: 10px; bottom: 84px; width: auto; grid-template-columns: 1fr; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
  .mobile-cta { display: grid; }
  .mobile-nav__sub { grid-template-columns: 1fr; }
}

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

@media print {
  .topline, .site-header, .mobile-nav, .mobile-cta, .cookie-banner, .site-footer, .btn, .modal { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding: 28px 0; color: #000; background: #fff; }
  .page-hero::before, .section::before, .section::after { display: none; }
}
