:root {
  --ink: #0b1220;
  --ink-2: #172033;
  --text: #344054;
  --muted: #667085;
  --line: #d8e3ee;
  --line-2: #eef2f6;
  --surface: #ffffff;
  --surface-2: #f6f9fc;
  --page: #eef4f8;
  --primary: #0b78d1;
  --cyan: #2ec5ff;
  --emerald: #19b88a;
  --coral: #f25f4c;
  --amber: #f5a524;
  --radius: 8px;
  --pill: 999px;
  --shell: 1240px;
  --shadow: 0 18px 48px rgba(11, 18, 32, .12);
  --shadow-soft: 0 10px 26px rgba(11, 18, 32, .08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(238,244,248,.94) 34%, rgba(246,249,252,.98)),
    var(--page);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg,
canvas {
  display: block;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.app-main {
  min-height: 70vh;
  outline: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.top-bar {
  color: rgba(255,255,255,.88);
  background:
    linear-gradient(90deg, #0b1220, #16304a 48%, #193246),
    #0b1220;
}

.top-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar a {
  min-height: 24px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--pill);
  color: #fff;
  background: rgba(255,255,255,.07);
}

.nav-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(270px, 1fr) minmax(260px, 390px) auto;
  gap: 18px;
  align-items: center;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, var(--primary), var(--cyan) 62%, var(--emerald));
  box-shadow: 0 12px 28px rgba(11, 120, 209, .24);
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
}

.brand__copy em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.mobile-nav a {
  min-height: 42px;
  padding: 11px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--primary);
  background: #edf6ff;
}

.search-box {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 650;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 18, 32, .07);
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

.icon-btn svg,
.btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.icon-btn:hover,
.icon-btn:focus-visible,
.icon-btn.is-active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
  outline: 0;
}

.icon-btn--solid {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.nav-actions .icon-btn b {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  color: #fff;
  background: var(--coral);
  font-size: 11px;
  font-weight: 950;
}

.nav-actions .icon-btn b:empty {
  display: none;
}

.nav-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary), #fff 8%), var(--primary));
  box-shadow: 0 14px 28px rgba(11, 120, 209, .24);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 120, 209, .3);
}

.btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary), #fff 42%);
  background: #f4faff;
}

.btn--light {
  color: var(--ink);
  border-color: rgba(255,255,255,.5);
  background: #fff;
  box-shadow: none;
}

.btn--small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.link-button {
  min-height: 32px;
  border: 0;
  padding: 0;
  color: var(--primary);
  background: transparent;
  font-weight: 850;
}

.select,
.field input,
.field select,
.field textarea,
.catalog-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  font-weight: 650;
}

.field textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.field span,
.filter-form legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field--full {
  grid-column: 1 / -1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--cyan), #fff 18%);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11,18,32,.94), rgba(16,45,70,.94) 54%, rgba(11,120,209,.86)),
    #0b1220;
}

.hero::before,
.site-footer::before,
.brand-story__visual::before,
.product-card__visual::before,
.device__grid {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(46,197,255,.12) 42% 47%, transparent 47%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.hero__grid {
  position: relative;
  min-height: 590px;
  padding: 68px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  gap: 48px;
  align-items: center;
}

.hero__copy {
  max-width: 680px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .98;
  font-weight: 950;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.stat-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  display: grid;
  align-content: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
}

.stat strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.stat span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.hero-visual__head,
.hero-visual__chips {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-visual__head span,
.hero-visual__head strong {
  color: #fff;
  font-weight: 950;
}

.hero-visual__stage {
  position: relative;
  display: grid;
  place-items: center;
}

.chip,
.tag-row span,
.active-filters span {
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(216,227,238,.9);
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}

.hero-visual .chip {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
}

.category-strip {
  padding: 28px 0 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  min-height: 144px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  align-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.category-card:hover,
.category-card.is-active {
  border-color: color-mix(in srgb, var(--primary), #fff 38%);
  background: #fff;
  transform: translateY(-2px);
}

.category-card small {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.category-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
}

.category-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
}

.section,
.page,
.catalog-page,
.product-page {
  padding: 44px 0;
}

.section--tight {
  padding-top: 28px;
}

.section--white {
  background: rgba(255,255,255,.62);
}

.section-head {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-head h2,
.panel h2,
.form-card h2,
.summary-card h2,
.document-card h2,
.product-info h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 950;
}

.section-head p,
.panel p,
.form-card p,
.summary-card p,
.product-info p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.benefit-grid,
.flow-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.flow-card,
.blog-card,
.panel,
.form-card,
.summary-card,
.document-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}

.benefit-card,
.flow-card,
.blog-card {
  min-height: 190px;
  padding: 22px;
}

.benefit-card b,
.flow-card b,
.blog-card span,
.mini-card b {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.benefit-card h3,
.flow-card h3,
.blog-card h2,
.mini-card strong {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 950;
}

.benefit-card p,
.flow-card p,
.blog-card p,
.mini-card span {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary), #fff 45%);
  box-shadow: var(--shadow);
}

.product-card__visual {
  position: relative;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fbfe, #edf5fb),
    #f6f9fc;
}

.product-card__visual::before {
  opacity: .8;
  background-size: auto, 38px 38px, 38px 38px;
}

.product-card__badge,
.product-card__discount {
  position: absolute;
  top: 14px;
  z-index: 3;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: var(--pill);
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 950;
}

.product-card__badge {
  left: 14px;
}

.product-card__discount {
  right: 14px;
  color: #fff;
  background: var(--coral);
}

.product-card__visual-link {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.product-card__tools {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.product-card__tools .icon-btn {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  box-shadow: none;
}

.product-card__tools .icon-btn.is-active,
.product-card__tools .icon-btn[aria-pressed="true"] {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.product-card__body {
  min-width: 0;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card__meta span {
  min-height: 24px;
  padding: 5px 8px;
  border-radius: var(--pill);
  color: var(--primary);
  background: #edf7ff;
  font-size: 11px;
  font-weight: 900;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 950;
}

.product-card h3 a,
.product-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.product-card h3 a {
  min-height: 44px;
  -webkit-line-clamp: 2;
}

.product-card p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  -webkit-line-clamp: 2;
}

.product-card__specs {
  display: grid;
  gap: 6px;
}

.product-card__specs span,
.spec-table div {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.product-card__specs b,
.spec-table span {
  color: var(--muted);
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card__foot {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.price del {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.device {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1.34;
  transform-style: preserve-3d;
  animation: deviceFloat 7s ease-in-out infinite;
}

.product-image {
  width: min(100%, 320px);
  height: min(100%, 240px);
  display: grid;
  place-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(11,18,32,.14));
}

.product-image--compact {
  width: min(100%, 210px);
  height: 160px;
}

.device--compact {
  width: min(100%, 210px);
  animation-duration: 8.5s;
}

.device__grid {
  opacity: .42;
  border-radius: var(--radius);
  background-size: auto, 26px 26px, 26px 26px;
}

.device__plate,
.device__body,
.device__screen,
.device__keys,
.device__rail,
.device__glow {
  position: absolute;
  border-radius: var(--radius);
}

.device__plate {
  left: 7%;
  right: 8%;
  top: 16%;
  height: 34%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(215,224,232,.92)),
    linear-gradient(90deg, transparent 0 45%, rgba(255,255,255,.72) 45% 55%, transparent 55%);
  box-shadow:
    0 20px 40px rgba(11,18,32,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: perspective(420px) rotateX(58deg) rotateZ(-18deg);
}

.device__body {
  left: 22%;
  right: 17%;
  bottom: 23%;
  height: 26%;
  background: linear-gradient(145deg, #eef3f7, #cfd9e3);
  box-shadow: 0 22px 40px rgba(11,18,32,.16);
  transform: perspective(420px) rotateX(55deg) rotateZ(-18deg);
}

.device__screen {
  left: 28%;
  right: 48%;
  bottom: 36%;
  height: 11%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent), #fff 18%), #d9f3ff);
  transform: perspective(420px) rotateX(55deg) rotateZ(-18deg);
}

.device__keys {
  left: 52%;
  right: 22%;
  bottom: 36%;
  height: 11%;
  background:
    repeating-linear-gradient(90deg, rgba(11,18,32,.15) 0 6px, transparent 6px 12px),
    rgba(255,255,255,.8);
  transform: perspective(420px) rotateX(55deg) rotateZ(-18deg);
}

.device__rail {
  left: 58%;
  right: 16%;
  bottom: 22%;
  height: 8%;
  background: #f9fbfd;
  box-shadow: inset 0 0 0 1px rgba(11,18,32,.08);
  transform: perspective(420px) rotateX(55deg) rotateZ(-18deg);
}

.device__glow {
  left: 16%;
  right: 14%;
  bottom: 10%;
  height: 20%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent), transparent 74%), transparent 68%);
  filter: blur(8px);
}

.device--platform .device__plate,
.device--warehouse .device__plate,
.device--floor .device__plate {
  top: 12%;
  height: 42%;
}

.device--platform .device__body,
.device--warehouse .device__body,
.device--floor .device__body {
  left: 34%;
  right: 25%;
  height: 18%;
}

.device--lab .device__plate,
.device--counter .device__plate {
  left: 18%;
  right: 18%;
  height: 46%;
  border-radius: 50%;
}

.device--lab .device__body {
  left: 30%;
  right: 28%;
  height: 36%;
}

.device--crane .device__plate {
  left: 34%;
  right: 34%;
  height: 46%;
}

.device--crane .device__body {
  left: 36%;
  right: 32%;
  height: 42%;
}

.device--service .device__plate {
  left: 15%;
  right: 15%;
  height: 48%;
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(.001deg); }
  50% { transform: translateY(-8px) rotate(.001deg); }
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.brand-story__visual {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #101826, #183b56 58%, #0b78d1),
    #101826;
  box-shadow: var(--shadow);
}

.brand-story__visual::before {
  opacity: .9;
}

.glass-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(300px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(12px);
}

.glass-note strong,
.glass-note span {
  display: block;
}

.glass-note span {
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.panel,
.form-card,
.summary-card,
.document-card {
  padding: 26px;
}

.brand-story__copy {
  display: grid;
  align-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11,18,32,.96), rgba(24,48,74,.94) 55%, rgba(25,184,138,.72)),
    #0b1220;
}

.page-hero__grid {
  min-height: 320px;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.aside-grid {
  display: grid;
  gap: 10px;
}

.aside-item {
  min-height: 78px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  background: rgba(255,255,255,.09);
}

.aside-item span {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.aside-item strong {
  color: #fff;
  font-size: 16px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 112px;
}

.filter-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.filter-form__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.filter-form h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.filter-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.check-row {
  min-height: 36px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--text);
  font-weight: 750;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.filter-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-presets button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 0 10px;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 850;
}

.catalog-results {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.catalog-toolbar {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.catalog-toolbar strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.active-filters {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-search {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.product-grid--list {
  grid-template-columns: 1fr;
}

.product-grid--list .product-card {
  grid-template-columns: 280px minmax(0, 1fr);
  grid-template-rows: auto;
}

.product-grid--list .product-card__visual {
  min-height: 100%;
}

.empty-state {
  min-height: 240px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.8);
}

.empty-state h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.empty-state p {
  margin: 8px 0 18px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .85fr);
  gap: 24px;
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-gallery {
  padding: 20px;
}

.product-gallery__main {
  min-height: 520px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fbfe, #edf5fb),
    #f6f9fc;
}

.product-gallery__main .device {
  width: min(82%, 470px);
}

.product-gallery__thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-gallery__thumbs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.product-gallery__thumbs button.is-active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.product-info {
  padding: 28px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.product-info h1 {
  margin-bottom: 14px;
}

.product-info__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-info__meta span {
  padding: 8px 10px;
  border-radius: var(--pill);
  color: var(--primary);
  background: #edf7ff;
  font-size: 12px;
  font-weight: 900;
}

.product-info__buy {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
}

.spec-table {
  display: grid;
  gap: 8px;
}

.info-grid,
.contact-layout,
.profile-layout,
.checkout-layout,
.cart-layout,
.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 22px;
  align-items: start;
}

.info-card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 16px;
}

.mini-card strong {
  display: block;
  margin: 16px 0 6px;
  font-size: 18px;
}

.contact-list {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-list a,
.contact-list div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-list b,
.contact-list span {
  display: block;
}

.contact-list b {
  color: var(--ink);
  font-size: 13px;
}

.contact-list span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.map-surface {
  min-height: 230px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(11,120,209,.08) 44% 50%, transparent 50%),
    linear-gradient(#dfe8ef 1px, transparent 1px),
    linear-gradient(90deg, #dfe8ef 1px, transparent 1px),
    #f9fbfd;
  background-size: auto, 28px 28px, 28px 28px;
}

.profile-layout {
  grid-template-columns: 250px minmax(0, 1fr);
}

.profile-nav {
  display: grid;
  gap: 8px;
}

.profile-nav a {
  min-height: 42px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 850;
}

.profile-nav a.is-active,
.profile-nav a:hover {
  color: #fff;
  background: var(--primary);
}

.cart-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 110px 132px 120px 46px;
  gap: 14px;
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cart-row__visual {
  height: 78px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.cart-row__visual .device,
.cart-row__visual .product-image {
  width: 88px;
  height: 72px;
}

.cart-row h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.cart-row span,
.cart-row__price {
  color: var(--muted);
  font-weight: 750;
}

.cart-row strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.qty-control {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  border: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
}

.qty-control button + strong,
.qty-control strong + button {
  border-left: 1px solid var(--line);
}

.qty-control strong {
  display: grid;
  place-items: center;
  color: var(--ink);
}

.summary-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  font-weight: 800;
}

.summary-line strong {
  color: var(--ink);
  text-align: right;
}

.summary-line--total {
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 20px;
}

.summary-note {
  padding: 16px;
  border-radius: var(--radius);
  color: #dff1ff;
  background: linear-gradient(135deg, #0b1220, #143d5e);
}

.summary-note b,
.summary-note span {
  display: block;
}

.summary-note b {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.summary-note span {
  margin-top: 7px;
  font-weight: 700;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.document-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.document-card {
  overflow: hidden;
}

.document-card section + section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}

.document-card p {
  margin: 10px 0 0;
  color: var(--text);
  font-weight: 700;
}

.document-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
}

.document-nav a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.document-nav b,
.document-nav span {
  display: block;
}

.document-nav span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.compare-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th,
.compare-table td {
  min-width: 190px;
  padding: 16px;
  border-bottom: 1px solid var(--line-2);
  border-right: 1px solid var(--line-2);
  vertical-align: top;
  text-align: left;
}

.compare-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 190px;
  color: var(--ink);
  background: #f8fbfe;
  font-weight: 950;
}

.compare-table thead th {
  background: #fff;
}

.compare-product {
  display: grid;
  gap: 10px;
}

.compare-product .product-image,
.compare-product .device {
  width: 150px;
  height: 112px;
}

.compare-product strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.compare-product span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.compare-mobile-list {
  display: none;
}

.compare-mobile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.compare-mobile-card__top {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.compare-mobile-card__top .product-image,
.compare-mobile-card__top .device {
  width: 104px;
  height: 82px;
}

.compare-mobile-card__top strong,
.compare-mobile-card__top span {
  display: block;
}

.compare-mobile-card__top strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
  font-weight: 950;
}

.compare-mobile-card__top span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.compare-mobile-card__rows {
  display: grid;
  gap: 8px;
}

.compare-mobile-card__rows div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  background: var(--surface-2);
}

.compare-mobile-card__rows span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.compare-mobile-card__rows b {
  color: var(--ink);
  line-height: 1.2;
  font-weight: 900;
}

.compare-mobile-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.faq-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  min-height: 54px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-weight: 700;
}

.request-band {
  color: #fff;
  background:
    linear-gradient(120deg, #0b1220, #143d5e 56%, color-mix(in srgb, var(--primary), #0b1220 10%)),
    #0b1220;
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.request-copy,
.request-form {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 28px;
}

.request-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.request-copy p,
.request-form p {
  color: rgba(255,255,255,.72);
}

.request-form {
  background: rgba(255,255,255,.08);
}

.request-form .field span {
  color: #fff;
}

.request-form .field input,
.request-form .field textarea {
  border-color: rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.request-form .field input::placeholder,
.request-form .field textarea::placeholder {
  color: rgba(255,255,255,.56);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  background: rgba(11,18,32,.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__panel {
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  transform: translateX(100%);
  transition: transform .2s ease;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  min-height: 76px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.drawer__body {
  min-height: 0;
  overflow: auto;
  padding: 16px;
}

.mini-cart-list {
  display: grid;
  gap: 10px;
}

.mini-cart-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.mini-cart-item > div:first-child {
  height: 64px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.mini-cart-item .device,
.mini-cart-item .product-image {
  width: 72px;
  height: 58px;
}

.mini-cart-item strong,
.mini-cart-item span {
  display: block;
}

.mini-cart-item strong {
  color: var(--ink);
  line-height: 1.15;
}

.mini-cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.operator-widget {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 80;
}

.operator-widget__button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: var(--pill);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), #075fa9);
  box-shadow: 0 18px 38px rgba(11, 120, 209, .28);
}

.operator-widget__button svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.2;
}

.operator-widget__panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: grid;
  gap: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.operator-widget.is-open .operator-widget__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.operator-widget__panel strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.operator-widget__panel a {
  min-height: 44px;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface-2);
  font-weight: 900;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 120;
  max-width: min(420px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: #0b1220;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease;
  font-weight: 850;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  background:
    linear-gradient(135deg, #151b24, #0b1220 54%, #17283a),
    #0b1220;
}

.site-footer::before {
  opacity: .72;
}

.footer-grid,
.footer-bottom {
  position: relative;
}

.footer-grid {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, .7fr));
  gap: 28px;
}

.footer-brand p {
  max-width: 420px;
}

.brand--footer .brand__copy strong,
.brand--footer .brand__copy em {
  color: #fff;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.footer-grid a,
.footer-grid button {
  margin-top: 7px;
  display: flex;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  min-height: 56px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.fade-in {
  animation: fadeUp .5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .nav-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .nav-links,
  .search-box {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    padding: 0 0 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
  }

  .hero__grid,
  .product-layout,
  .brand-story,
  .document-layout {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .document-nav,
  .summary-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    min-height: 0;
    padding: 46px 0 54px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .stat-grid,
  .benefit-grid,
  .flow-grid,
  .blog-grid,
  .info-card-grid,
  .contact-list,
  .footer-grid,
  .cart-layout,
  .checkout-layout,
  .info-grid,
  .contact-layout,
  .profile-layout,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .product-grid--list .product-card {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 78px minmax(0, 1fr) 46px;
  }

  .cart-row__price,
  .cart-row > .qty-control,
  .cart-row > strong {
    grid-column: 2 / 4;
  }

  .cart-row > .icon-btn {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar__contacts {
    display: none;
  }

  .brand__copy {
    display: none;
  }

  .nav-row {
    min-height: 66px;
    gap: 10px;
  }

  .icon-btn {
    width: 42px;
    height: 42px;
  }

  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 330px;
    padding: 16px;
  }

  .hero-visual__chips {
    flex-wrap: wrap;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 116px;
  }

  .section,
  .page,
  .catalog-page,
  .product-page {
    padding: 30px 0;
  }

  .section-head,
  .catalog-toolbar,
  .product-card__foot,
  .product-info__buy {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-actions {
    flex-wrap: wrap;
  }

  .toolbar-actions .select {
    min-width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery__main {
    min-height: 330px;
  }

  .product-card {
    grid-template-rows: 190px 1fr;
  }

  .product-card__specs span,
  .spec-table div {
    grid-template-columns: 1fr;
  }

  .compare-table-wrap {
    display: none;
  }

  .compare-mobile-list {
    display: grid;
    gap: 14px;
  }

  .card-actions {
    width: 100%;
  }

  .card-actions .btn {
    flex: 1;
  }

  .panel,
  .form-card,
  .summary-card,
  .document-card,
  .request-copy,
  .request-form {
    padding: 18px;
  }

  .operator-widget {
    right: 12px;
    bottom: 14px;
  }

  .operator-widget__panel {
    width: min(238px, calc(100vw - 24px));
  }
}
