
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    :root {
      /* Системные шрифты ОС (без внешних @font-face / Google Fonts). */
      --uiv-ff: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
      /* Моно — тоже системные гарнитуры, если есть. */
      --uiv-ff-mono: ui-monospace, "Cascadia Code", "Cascadia Mono", "Consolas", "Liberation Mono", Menlo, "Segoe UI Mono", monospace;
      /* Фон страницы / «выпуклые» элементы / текст — по макету; тени: свет слева-сверху, тень справа-снизу; вдавленное — наоборот (inset). */
      --uiv-bg: #eff2f9;
      --uiv-surface: #eff2f9;
      --uiv-fg: #6e7f8d;
      --uiv-muted: #6e7f8d;
      --uiv-subtle-fill: #b5bfc6;
      --uiv-sh-lt: #fafbff;
      --uiv-sh-dk: rgba(22, 27, 29, 0.23);
      --uiv-dk: rgba(22, 27, 29, 0.23);
      --uiv-lt: #fafbff;
      --uiv-accent: #6b7f94;
      /* Второй акцент (CTA / роза): кнопки VK на главной, toggle ON, диапазон */
      --uiv-accent-2: #d77e86;
      --uiv-card: #eff2f9;
      /* outer: выпуклость — свет TL, тень BR */
      --uiv-elev-sm: -5px -5px 10px var(--uiv-sh-lt), 5px 5px 10px var(--uiv-sh-dk);
      /* inset: вдавленность — тёмная внутри к BR, светлая к TL (как на схеме) */
      --uiv-elev-sm-in: inset 5px 5px 10px var(--uiv-sh-dk), inset -5px -5px 10px var(--uiv-sh-lt);
      --uiv-elev-md: -10px -10px 20px var(--uiv-sh-lt), 10px 10px 20px var(--uiv-sh-dk);
      --uiv-elev-md-in: inset 10px 10px 20px var(--uiv-sh-dk), inset -10px -10px 20px var(--uiv-sh-lt);
      --uiv-elev-lg: -20px -20px 40px var(--uiv-sh-lt), 20px 20px 40px var(--uiv-sh-dk);
      --uiv-elev-lg-in: inset 20px 20px 40px var(--uiv-sh-dk), inset -20px -20px 40px var(--uiv-sh-lt);
      --uiv-btn-t: box-shadow 0.25s ease, color 0.2s ease, background 0.2s ease;
      --uiv-btn-sh-raised: var(--uiv-elev-sm);
      --uiv-btn-sh-pressed: var(--uiv-elev-sm-in);
      --uiv-btn-fg: #6e7f8d;
      --uiv-btn-fg-pressed: #5c6a78;
      /* Pedro (как nm-btn-cvx-2) */
      --uiv-dur: 0.3s;
      --uiv-ease: cubic-bezier(0.4, 0, 0.2, 1);
      --uiv-ease-shadow: cubic-bezier(0.22, 1, 0.36, 1);
      --uiv-tab-switch-dur: 0.55s;
      --uiv-pedro-h: 1;
      --uiv-pedro-sd: rgba(22, 27, 29, 0.26);
      --uiv-pedro-lt: rgba(255, 255, 255, 0.52);
      --uiv-pedro-btn-dur: 0.15s;
      --uiv-pedro-btn-span-dur: 0.3s;
      --uiv-pedro-btn-shift: 0.12rem;
      /* Минимальная длительность «нажатия» при коротком клике (см. uiv-pedro-press в JS) */
      --uiv-pedro-press-min: 220ms;
    }

    html {
      background: var(--uiv-bg);
      font-family: var(--uiv-ff);
    }

    body {
      margin: 0;
      min-height: 100vh;
      /* место под фикс. демо-хедер t396 (стекло) */
      padding-top: 4.75rem;
      background: var(--uiv-bg);
      font-family: var(--uiv-ff);
      color: var(--uiv-fg);
      line-height: 1.5;
    }

    code,
    kbd,
    samp,
    .uikit3 pre {
      font-family: var(--uiv-ff-mono);
    }

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

    .uikit3 {
      max-width: 1040px;
      margin: 0 auto;
      padding: clamp(1.25rem, 4vw, 2.5rem);
    }

    .uikit3 button,
    .uikit3 [role="tab"],
    .uikit3 a[href],
    .uikit3 .uiv-range2__in {
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    .uikit3 button:focus,
    .uikit3 a:focus,
    .uikit3 .uiv-range2__in:focus {
      outline: none;
    }

    .uikit3 button:focus-visible,
    .uikit3 a:focus-visible,
    .uikit3 .uiv-range2__in:focus-visible {
      box-shadow:
        0 0 0 2px var(--uiv-bg),
        0 0 0 4px color-mix(in srgb, var(--uiv-muted) 80%, var(--uiv-fg) 20%);
    }

    .uikit3__title {
      margin: 0 0 1.5rem;
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #485053;
    }

    .uikit3__grid {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .uikit3__item {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 1rem 1.5rem;
      padding: 0;
    }

    .uikit3__label {
      flex: 0 0 100%;
      margin: 0;
      font-size: 1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--uiv-muted);
    }

    .uikit3__demos {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.25rem;
      align-items: center;
      width: 100%;
    }

    .uikit3__caption {
      flex: 0 0 100%;
      margin: 0.35rem 0 0;
      font-size: 0.8125rem;
      color: var(--uiv-muted);
      line-height: 1.45;
    }

    /* 1. Кнопка — Pedro (как .nm-btn-cvx-2) + A/B/C */
    .uiv-btn,
    .uiv-btn-a,
    .uiv-btn-b,
    .uiv-btn-c {
      position: relative;
      isolation: isolate;
      z-index: 0;
      overflow: hidden;
      transform: translateZ(0);
      cursor: pointer;
      border: 1px solid var(--uiv-surface);
      color: #6e7f8d;
      font-weight: 400;
      letter-spacing: 0.1em;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-pedro-sd) calc(0.33rem * var(--uiv-pedro-h)) calc(0.33rem * var(--uiv-pedro-h)) 0.6rem;
      transition:
        box-shadow var(--uiv-pedro-btn-dur) var(--uiv-pedro-btn-dur) ease-in,
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .uiv-btn,
    .uiv-btn-a,
    .uiv-btn-b {
      padding: 0.7em 1.7em;
      font-size: 18px;
      border-radius: 12px;
    }

    .uiv-btn-c {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .uiv-btn::before,
    .uiv-btn-a::before,
    .uiv-btn-b::before,
    .uiv-btn-c::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      box-shadow: var(--uiv-pedro-lt) calc(-0.33rem * var(--uiv-pedro-h)) calc(-0.33rem * var(--uiv-pedro-h)) 0.6rem;
      transition: box-shadow var(--uiv-pedro-btn-dur) var(--uiv-pedro-btn-dur) ease-in;
    }

    .uiv-btn::after,
    .uiv-btn-a::after,
    .uiv-btn-b::after,
    .uiv-btn-c::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      box-shadow: inset 0 0 0 0 var(--uiv-pedro-sd), inset 0 0 0 0 var(--uiv-pedro-lt);
      transition: box-shadow var(--uiv-pedro-btn-dur) ease-in;
    }

    .uiv-btn > span,
    .uiv-btn-a > span,
    .uiv-btn-b > span,
    .uiv-btn-c > svg {
      position: relative;
      z-index: 1;
      display: inline-block;
      transition: transform var(--uiv-pedro-btn-span-dur) ease-in-out;
    }

    .uiv-btn:active,
    .uiv-btn-a:active,
    .uiv-btn-b:active,
    .uiv-btn-c:active,
    .uiv-btn.uiv-pedro-press,
    .uiv-btn-a.uiv-pedro-press,
    .uiv-btn-b.uiv-pedro-press,
    .uiv-btn-c.uiv-pedro-press,
    .uiv-btn--latch[aria-pressed="true"] {
      color: var(--uiv-btn-fg-pressed);
      box-shadow: none;
      transition:
        box-shadow var(--uiv-pedro-btn-dur) ease-out,
        color 0.2s ease,
        background 0.2s ease;
    }

    .uiv-btn:active::before,
    .uiv-btn-a:active::before,
    .uiv-btn-b:active::before,
    .uiv-btn-c:active::before,
    .uiv-btn.uiv-pedro-press::before,
    .uiv-btn-a.uiv-pedro-press::before,
    .uiv-btn-b.uiv-pedro-press::before,
    .uiv-btn-c.uiv-pedro-press::before,
    .uiv-btn--latch[aria-pressed="true"]::before {
      box-shadow: none;
      transition: box-shadow var(--uiv-pedro-btn-dur) ease-out;
    }

    .uiv-btn:active::after,
    .uiv-btn-a:active::after,
    .uiv-btn-b:active::after,
    .uiv-btn-c:active::after,
    .uiv-btn.uiv-pedro-press::after,
    .uiv-btn-a.uiv-pedro-press::after,
    .uiv-btn-b.uiv-pedro-press::after,
    .uiv-btn-c.uiv-pedro-press::after,
    .uiv-btn--latch[aria-pressed="true"]::after {
      box-shadow:
        inset calc(0.25rem * var(--uiv-pedro-h)) calc(0.25rem * var(--uiv-pedro-h)) 0.6rem 0 var(--uiv-pedro-sd),
        inset calc(-0.25rem * var(--uiv-pedro-h)) calc(-0.25rem * var(--uiv-pedro-h)) 0.6rem 0 var(--uiv-pedro-lt);
      transition: box-shadow var(--uiv-pedro-btn-dur) var(--uiv-pedro-btn-dur) ease-out;
    }

    .uiv-btn:active > span,
    .uiv-btn-a:active > span,
    .uiv-btn-b:active > span,
    .uiv-btn--latch[aria-pressed="true"] > span,
    .uiv-btn-c:active > svg,
    .uiv-btn.uiv-pedro-press > span,
    .uiv-btn-a.uiv-pedro-press > span,
    .uiv-btn-b.uiv-pedro-press > span,
    .uiv-btn-c.uiv-pedro-press > svg {
      transform: translateY(var(--uiv-pedro-btn-shift));
    }

    /* Кнопка второго акцента (заливка, не Pedro-блик) */
    .uiv-btn.uiv-btn--accent2,
    a.uiv-btn.uiv-btn--accent2,
    .uiv-btn-a.uiv-btn--accent2,
    .uiv-btn-b.uiv-btn--accent2 {
      background: var(--uiv-accent-2);
      color: #fafbff;
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-btn.uiv-btn--accent2::before,
    a.uiv-btn.uiv-btn--accent2::before,
    .uiv-btn-a.uiv-btn--accent2::before,
    .uiv-btn-b.uiv-btn--accent2::before,
    .uiv-btn.uiv-btn--accent2::after,
    a.uiv-btn.uiv-btn--accent2::after,
    .uiv-btn-a.uiv-btn--accent2::after,
    .uiv-btn-b.uiv-btn--accent2::after {
      content: none;
    }

    .uiv-btn.uiv-btn--accent2:hover,
    a.uiv-btn.uiv-btn--accent2:hover,
    .uiv-btn-a.uiv-btn--accent2:hover,
    .uiv-btn-b.uiv-btn--accent2:hover {
      filter: brightness(1.06);
      color: #fafbff;
    }

    .uiv-btn.uiv-btn--accent2:active,
    a.uiv-btn.uiv-btn--accent2:active,
    .uiv-btn-a.uiv-btn--accent2:active,
    .uiv-btn-b.uiv-btn--accent2:active,
    .uiv-btn.uiv-btn--accent2.uiv-pedro-press,
    a.uiv-btn.uiv-btn--accent2.uiv-pedro-press,
    .uiv-btn-a.uiv-btn--accent2.uiv-pedro-press,
    .uiv-btn-b.uiv-btn--accent2.uiv-pedro-press {
      color: #fafbff;
      filter: brightness(0.96);
      background: var(--uiv-accent-2);
      box-shadow: var(--uiv-elev-sm-in);
    }

    /* 2. Карточка (плоская neumorphic) */
    .uiv-card {
      width: 190px;
      height: 254px;
      border-radius: 30px;
      background: var(--uiv-card);
      box-shadow: var(--uiv-elev-md);
      flex-shrink: 0;
    }

    /* 3. Поле ввода */
    .uiv-input {
      max-width: 200px;
      min-height: 40px;
      padding: 10px;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      outline: none;
      color: #6e7f8d;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      border: none;
      border-radius: 12px;
      transition: box-shadow 0.35s ease, background 0.2s ease;
    }

    .uiv-input:focus {
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-textarea {
      width: min(100%, 320px);
      min-height: 88px;
      padding: 10px 12px;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
      outline: none;
      resize: vertical;
      background: var(--uiv-surface);
      border: none;
      border-radius: 12px;
      box-shadow: var(--uiv-elev-sm-in);
      transition: box-shadow 0.3s ease;
    }

    .uiv-textarea:focus {
      box-shadow: var(--uiv-elev-md-in);
    }

    /* 4. Органическая «капля» */
    .uiv-blob {
      width: 200px;
      height: 200px;
      background-color: transparent;
      box-shadow:
        inset 10px 10px 10px 10px rgba(0, 0, 0, 0.158),
        10px 10px 20px rgba(0, 0, 0, 0.466),
        inset -10px -10px 10px 10px rgba(255, 255, 255, 0.897);
      border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
      position: relative;
      flex-shrink: 0;
    }

    .uiv-blob::after {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      position: absolute;
      background-color: rgba(255, 255, 255, 0.842);
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      top: 40px;
      left: 40px;
    }

    .uiv-blob::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 20px;
      position: absolute;
      background-color: rgba(255, 255, 255, 0.842);
      border-radius: 48% 52% 45% 55% / 48% 67% 33% 52%;
      top: 35px;
      left: 60px;
    }

    /* Поверхности Pedro */
    .uiv-pedro-raised {
      width: 120px;
      height: 72px;
      border-radius: 12px;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-pedro-inset {
      width: 120px;
      height: 72px;
      border-radius: 12px;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm-in);
    }

    /* Карточка товара (в сетке 2 в ряд на мобильных) */
    .uiv-product-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem 1.15rem;
      width: 100%;
      max-width: 100%;
      align-items: start;
    }

    .uiv-product {
      min-width: 0;
      max-width: none;
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      background: var(--uiv-card);
      box-shadow: var(--uiv-elev-md);
    }

    .uiv-product__media {
      aspect-ratio: 3 / 4;
      background: var(--uiv-subtle-fill);
      overflow: hidden;
    }

    .uiv-product__photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .uiv-product__body {
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
      padding: 0.85rem 0.6rem 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .uiv-product__title {
      margin: 0 0 0.35rem;
      font-size: 1rem;
      font-weight: 600;
      max-width: 100%;
    }

    .uiv-product__price {
      margin: 0 0 0.65rem;
      font-size: 0.95rem;
      color: var(--uiv-muted);
      max-width: 100%;
    }

    .uiv-product__more {
      box-sizing: border-box;
      min-width: 0;
      max-width: 100%;
      align-self: stretch;
      width: 100%;
      min-height: 54px;
      position: relative;
      display: block;
      text-align: center;
      text-indent: 0;
      padding: 0.7em 1.7em;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: normal;
      text-decoration: none;
      color: #6e7f8d;
      background: var(--uiv-surface);
      border: 1px solid var(--uiv-surface);
      box-shadow: var(--uiv-btn-sh-raised);
      transition: var(--uiv-btn-t);
    }

    .uiv-product__more > span {
      position: absolute;
      left: 50%;
      top: 50%;
      display: inline-block;
      transform: translate(-50%, -50%);
      text-align: center;
      text-indent: 0;
      white-space: nowrap;
      letter-spacing: 0.1em;
    }

    .uiv-product__more:active {
      color: var(--uiv-btn-fg-pressed);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /*
      Карточка категории: одно фото на всю карточку; заголовок в левом верхнем углу поверх фото;
      вся карточка — ссылка .uiv-cat-hero__card-link. На мобильных — 2 колонки как .uiv-product-grid.
    */
    .uiv-cat-hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem 1.15rem;
      width: 100%;
      max-width: 100%;
      align-items: stretch;
    }

    .uiv-cat-hero {
      --uiv-cat-tint: var(--uiv-accent-2);
      --uiv-cat-deep: color-mix(in srgb, var(--uiv-cat-tint) 82%, #121518);
      --uiv-cat-mid: color-mix(in srgb, var(--uiv-cat-tint) 62%, #242a30);
      box-sizing: border-box;
      min-width: 0;
      width: 100%;
      border-radius: clamp(24px, 5vw, 34px);
      overflow: hidden;
      background: var(--uiv-subtle-fill);
      box-shadow: var(--uiv-elev-md);
      position: relative;
      isolation: isolate;
    }

    .uiv-cat-hero__card-link {
      display: block;
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      color: inherit;
      text-decoration: none;
      outline: none;
      -webkit-tap-highlight-color: transparent;
    }

    .uiv-cat-hero__card-link:focus-visible {
      outline: 2px solid color-mix(in srgb, var(--uiv-muted) 45%, var(--uiv-fg) 55%);
      outline-offset: -6px;
      border-radius: clamp(18px, 4vw, 28px);
    }

    .uiv-cat-hero__card-link:active .uiv-cat-hero__photo {
      transform: scale(1.04);
    }

    .uiv-cat-hero__visual {
      position: relative;
      aspect-ratio: 3 / 4;
      width: 100%;
      overflow: hidden;
      background: var(--uiv-subtle-fill);
    }

    .uiv-cat-hero__photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform 0.28s var(--uiv-ease, ease);
    }

    .uiv-cat-hero__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(18, 22, 26, 0.28) 0%,
        rgba(18, 22, 26, 0) 32%,
        rgba(18, 22, 26, 0) 40%,
        rgba(18, 22, 26, 0.38) 68%,
        rgba(18, 22, 26, 0.62) 80%,
        color-mix(in srgb, var(--uiv-cat-deep) 78%, #050607) 92%,
        rgba(6, 8, 10, 0.94) 100%
      );
    }

    .uiv-cat-hero__title {
      position: absolute;
      top: auto;
      bottom: 0.62rem;
      left: 0.62rem;
      right: 0.62rem;
      z-index: 3;
      margin: 0;
      max-width: none;
      width: auto;
      box-sizing: border-box;
      font-family: var(--uiv-ff);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.35;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: left;
      color: rgba(255, 255, 255, 0.98);
      text-wrap: balance;
      text-shadow:
        0 1px 3px rgba(6, 8, 10, 0.85),
        0 0 20px rgba(6, 8, 10, 0.55);
      pointer-events: none;
    }

    .uiv-cat-hero__badge {
      position: absolute;
      top: 0.52rem;
      right: 0.52rem;
      left: auto;
      z-index: 4;
      max-width: calc(100% - 1.15rem);
      padding: 0.22rem 0.5rem;
      border-radius: 999px;
      font-family: var(--uiv-ff);
      font-size: clamp(0.56rem, 1.55vw, 0.68rem);
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.2;
      text-align: center;
      color: rgba(255, 255, 255, 0.96);
      background: rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 1px 3px rgba(18, 22, 26, 0.18);
      pointer-events: none;
    }

    @media (min-width: 768px) {
      /* Компактнее на ПК: фиксированный верхний предел дорожки, без «растягивания». */
      .uiv-cat-hero-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 240px));
        justify-content: center;
        gap: 1.5rem;
      }

      .uiv-cat-hero__title {
        font-size: clamp(1rem, 0.4vw + 0.85rem, 1.125rem);
        bottom: 1.05rem;
        left: 1.05rem;
        right: 1.05rem;
      }

      .uiv-cat-hero__badge {
        font-size: clamp(0.6rem, 0.3vw + 0.5rem, 0.7rem);
        top: 0.62rem;
        right: 0.62rem;
      }
    }

    .home-categories__divider-label {
      margin: clamp(1.35rem, 4vw, 1.85rem) 0 clamp(0.85rem, 2.6vw, 1.15rem);
      text-align: left;
    }

    @media (min-width: 768px) {
      .home-categories__divider-label {
        text-align: center;
      }
    }

    /* Хедер */
    .uiv-hdr {
      position: sticky;
      top: 0;
      z-index: 200;
      width: 100%;
      max-width: min(100%, 400px);
      border-radius: 0;
      padding: 0.6rem 0.85rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem 0.65rem;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      min-height: 54px;
    }

    .uiv-hdr .uiv-call-blob {
      margin-left: auto;
    }

    /* Хедер: плавное нажатие на капле n2 */
    .uiv-hdr .uiv-call-blob--n2 {
      transition:
        box-shadow 0.42s cubic-bezier(0.25, 0.85, 0.35, 1),
        transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
      transform-origin: center center;
    }

    .uiv-hdr .uiv-call-blob--n2 svg {
      transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
    }

    .uiv-hdr .uiv-call-blob--n2::before,
    .uiv-hdr .uiv-call-blob--n2::after {
      transition:
        transform 0.4s cubic-bezier(0.25, 0.85, 0.35, 1),
        opacity 0.35s ease;
    }

    .uiv-hdr .uiv-call-blob--n2:active {
      transform: scale(0.93);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-hdr .uiv-call-blob--n2:active svg {
      transform: scale(0.92);
    }

    .uiv-hdr .uiv-call-blob--n2:active::before,
    .uiv-hdr .uiv-call-blob--n2:active::after {
      transform: scale(0.85);
      opacity: 0.72;
    }

    /* В хедере капли компактнее (как кнопка меню), те же классы n1–n4 */
    .uiv-hdr .uiv-call-blob,
    .uiv-call-blob--hdr {
      width: 48px;
      height: 48px;
    }

    .uiv-hdr .uiv-call-blob svg,
    .uiv-call-blob--hdr svg {
      width: 18px;
      height: 18px;
    }

    .uiv-hdr__menu {
      width: 48px;
      height: 48px;
      border: 1px solid var(--uiv-surface);
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--uiv-surface);
      color: #6e7f8d;
      font-weight: 400;
      letter-spacing: 0.1em;
      flex-shrink: 0;
      box-shadow: var(--uiv-btn-sh-raised);
      transition: var(--uiv-btn-t);
    }

    .uiv-hdr__menu:active,
    .uiv-hdr__menu.uiv-pedro-press {
      color: var(--uiv-btn-fg-pressed);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-hdr__title {
      flex: 1 1 6rem;
      text-align: center;
      font-weight: 600;
      font-size: 0.95rem;
      margin: 0;
      min-width: 0;
      color: var(--uiv-fg);
    }

    /* Хедер t396 / pill: тёмная «капсула», блик слева (как на референсе), иконки белые */
    .uiv-hdr--t396,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill {
      --uiv-t396-pill-bg: #121214;
      --uiv-t396-pill-edg: rgba(255, 255, 255, 0.12);
      position: relative;
      top: auto;
      flex: 0 0 100%;
      max-width: min(100%, 574px);
      width: 100%;
      min-height: 58px;
      box-sizing: border-box;
      padding: 0.45rem 1.15rem;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem 0.75rem;
      border-radius: 9999px;
      overflow: hidden;
      isolation: isolate;
      background: var(--uiv-t396-pill-bg);
      border: 1px solid var(--uiv-t396-pill-edg);
      box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06) inset,
        0 8px 32px rgba(0, 0, 0, 0.55);
    }

    /* Вертикальный gl-blick слева (~20% ширины) */
    .uiv-hdr--t396::before,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill::before {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
      left: 4%;
      top: 10%;
      bottom: 10%;
      width: 22%;
      max-width: 120px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.26) 0%,
        rgba(255, 255, 255, 0.08) 42%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0.75;
    }

    /* Лёгкое пятно справа (глубина), без «капли» из старой версии */
    .uiv-hdr--t396::after,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
      right: 0;
      top: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 60%);
    }

    .uiv-hdr--t396 .uiv-hdr__search,
    .uiv-hdr--t396 .uiv-hdr__menu,
    .uiv-hdr--t396 .uiv-hdr__tel,
    .uiv-hdr--t396 .uiv-call-blob--hdr,
    .uiv-hdr--t396 .uiv-hdr__brand,
    .uiv-hdr--t396 .uiv-hdr__title,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__brand {
      position: relative;
      z-index: 1;
    }

    .uiv-hdr--t396 .uiv-hdr__search,
    .uiv-hdr--t396 .uiv-hdr__menu,
    .uiv-hdr--t396 a.uiv-hdr__tel,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill a.uiv-hdr__tel {
      width: 44px;
      height: 44px;
      min-width: 44px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 50%;
      background: transparent;
      color: #f5f5f5;
      text-decoration: none;
      box-sizing: border-box;
      cursor: pointer;
      flex-shrink: 0;
      box-shadow: none;
      transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    }

    .uiv-hdr--t396 .uiv-hdr__search:hover,
    .uiv-hdr--t396 .uiv-hdr__menu:hover,
    .uiv-hdr--t396 .uiv-hdr__tel:hover,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search:hover,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu:hover,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .uiv-hdr--t396 .uiv-hdr__search:active,
    .uiv-hdr--t396 .uiv-hdr__menu:active,
    .uiv-hdr--t396 .uiv-hdr__tel:active,
    .uiv-hdr--t396 .uiv-hdr__menu.uiv-pedro-press,
    .uiv-hdr--t396 .uiv-hdr__search.uiv-pedro-press,
    .uiv-hdr--t396 .uiv-hdr__tel.uiv-pedro-press,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu.uiv-pedro-press,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search.uiv-pedro-press,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel.uiv-pedro-press,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu:active,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search:active,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel:active {
      color: #fff;
      background: rgba(0, 0, 0, 0.25);
      box-shadow: none;
    }

    .uiv-hdr--t396 .uiv-hdr__brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex: 1 1 auto;
      min-width: 0;
      gap: 0.1rem 0;
      text-align: center;
      line-height: 1.1;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-link {
      --uiv-brand-stroke: rgba(181, 191, 198, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      width: 150px;
      min-height: 45px;
      height: 45px;
      max-width: min(100%, 150px);
      padding: 0 10px;
      box-sizing: border-box;
      text-decoration: none;
      line-height: 1.1;
      color: var(--uiv-brand-stroke);
      border: none;
      border-radius: 13px;
      background: rgba(0, 0, 0, 0);
    }

    .uiv-hdr--t396 .uiv-hdr__brand-frame {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 45px;
      pointer-events: none;
      color: var(--uiv-brand-stroke);
    }

    .uiv-hdr--t396 .uiv-hdr__brand-name,
    .uiv-hdr--t396 .uiv-hdr__brand-rail {
      position: relative;
      z-index: 1;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-name {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1 1 auto;
      width: 100%;
      min-height: 0;
      margin-bottom: -12px;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-indent: 0.2em;
      color: rgba(110, 127, 141, 1);
      text-transform: uppercase;
      font-family: system-ui, "Segoe UI", Roboto, sans-serif;
      line-height: 1.1;
      text-align: center;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-rail {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      align-self: stretch;
      width: 100%;
      margin: 0;
      padding: 0;
      gap: 0 2px;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-rail__left {
      visibility: hidden;
      flex: 1 1 auto;
      min-width: 0.5rem;
      height: 0;
      border-bottom: none;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-sub {
      flex: 0 0 auto;
      margin: 0 -6px -3px 0;
      padding: 0;
      text-align: right;
      color: rgba(110, 127, 141, 1);
      background: none;
      font-size: 13px;
      line-height: 1.05;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: none;
      white-space: nowrap;
      font-family: system-ui, "Segoe UI", Roboto, sans-serif;
    }

    .uiv-hdr--t396 .uiv-hdr__brand-rail__right {
      visibility: hidden;
      flex: 0 0 16px;
      width: 16px;
      height: 0;
      border-bottom: none;
    }

    .uikit3 .uiv-hdr--t396 .uiv-hdr__menu:focus,
    .uikit3 .uiv-hdr--t396 .uiv-hdr__search:focus,
    .uikit3 .uiv-hdr--t396 .uiv-hdr__tel:focus,
    .uikit3 .uiv-hdr--t396 .uiv-call-blob--hdr:focus,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu:focus,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search:focus,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel:focus {
      outline: none;
    }

    .uikit3 .uiv-hdr--t396 .uiv-hdr__menu:focus-visible,
    .uikit3 .uiv-hdr--t396 .uiv-hdr__search:focus-visible,
    .uikit3 .uiv-hdr--t396 .uiv-hdr__tel:focus-visible,
    .uikit3 .uiv-hdr--t396 .uiv-call-blob--hdr:focus-visible,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__menu:focus-visible,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__search:focus-visible,
    .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill .uiv-hdr__tel:focus-visible {
      box-shadow:
        0 0 0 2px #121214,
        0 0 0 4px rgba(255, 255, 255, 0.35);
    }

    /* Демо: только <header> — fixed вверху, «стекло» (фон страницы + blur), иконки как текст */
    header.uiv-hdr.uiv-hdr--t396 {
      position: fixed;
      top: 0.65rem;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      z-index: 500;
      width: min(100% - 1.5rem, 574px);
      max-width: min(100%, 574px);
      margin: 0;
      flex: none;
      /* поверх блюра — заметно прозрачнее, контент сзади читается сильнее */
      --uiv-t396-pill-bg: color-mix(in srgb, var(--uiv-bg) 32%, rgba(255, 255, 255, 0.18));
      background: var(--uiv-t396-pill-bg);
      -webkit-backdrop-filter: blur(4px) saturate(1.05);
      backdrop-filter: blur(4px) saturate(1.05);
      border: 1px solid rgba(255, 255, 255, 0.32);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.38) inset,
        0 8px 32px rgba(22, 27, 29, 0.07);
    }

    header.uiv-hdr--t396::before {
      left: 3%;
      width: 24%;
      max-width: 110px;
      opacity: 0.4;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.12) 44%,
        rgba(255, 255, 255, 0) 100%
      );
    }

    header.uiv-hdr--t396::after {
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 58%);
    }

    /* Меню в стеклянной шапке — только крупная иконка, без капли / neum-корпуса */
    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__menu {
      width: auto;
      min-width: 48px;
      min-height: 48px;
      height: 48px;
      padding: 0 0.2rem;
      border: none;
      border-radius: 10px;
      background: transparent;
      box-shadow: none;
      color: var(--uiv-fg);
    }

    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__menu:hover {
      background: color-mix(in srgb, var(--uiv-fg) 6%, transparent);
    }

    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__menu:active,
    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__menu.uiv-pedro-press {
      color: var(--uiv-fg);
      background: color-mix(in srgb, var(--uiv-fg) 10%, transparent);
      box-shadow: none;
    }

    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__menu svg {
      display: block;
      width: 32px;
      height: 32px;
    }

    /* Текстовый логотип: рамка + разорванный низ, «Ижевск» справа (как на макете) */
    header.uiv-hdr.uiv-hdr--t396 .uiv-hdr__brand {
      align-items: center;
      text-align: center;
      gap: 0.04rem;
      line-height: 1.1;
    }

    .uikit3 header.uiv-hdr--t396 .uiv-hdr__menu:focus-visible,
    .uikit3 header.uiv-hdr--t396 .uiv-call-blob--hdr:focus-visible {
      box-shadow:
        0 0 0 2px color-mix(in srgb, var(--uiv-bg) 85%, var(--uiv-fg) 15%),
        0 0 0 4px color-mix(in srgb, var(--uiv-muted) 60%, var(--uiv-fg) 40%);
    }

    /* Tilda: цепочка #allrecords > #t-header > #rec* > .t396 > .t396__artboard > .t396__filter (как в Zero) */
    .uikit3 .uiv-t396-dom #allrecords {
      width: 100%;
      max-width: 574px;
    }

    .uikit3 .uiv-t396-dom #t-header {
      margin: 0;
      padding: 0;
      border: none;
      display: block;
    }

    .uikit3 .uiv-t396-dom .t-rec {
      position: relative;
    }

    .uikit3 .uiv-t396-dom .t396 {
      position: relative;
    }

    .uikit3 .uiv-t396-dom .t396__artboard {
      position: relative;
      display: block;
      width: 100%;
      min-height: 64px;
    }

    @media (max-width: 420px) {
      .uikit3 .uiv-t396-dom .t396__filter.uiv-t396-pill {
        flex-wrap: wrap;
        min-height: auto;
      }
    }

    /* Хедер — «большая капля»: силуэт как у micro gl-stip; звонок — обычная кнопка, не .uiv-call-blob */
    .uiv-hdr--blobcap {
      position: relative;
      max-width: min(100%, 400px);
      width: 100%;
      min-height: 67px;
      padding: 0.65rem 0.95rem;
      border-radius: 38% 62% 48% 52% / 36% 42% 58% 64%;
      background-color: transparent;
      box-shadow:
        inset 4px 4px 5px 4px rgba(0, 0, 0, 0.12),
        5px 6px 12px rgba(0, 0, 0, 0.22),
        inset -4px -4px 5px 4px rgba(255, 255, 255, 0.88);
      isolation: isolate;
      overflow: visible;
    }

    .uiv-hdr--blobcap::before {
      content: "";
      position: absolute;
      width: 3px;
      height: 3px;
      top: 14px;
      left: 14%;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
      box-shadow:
        10px 6px 0 -0.5px rgba(255, 255, 255, 0.65),
        4px 14px 0 -0.5px rgba(255, 255, 255, 0.42),
        18px 10px 0 -0.5px rgba(255, 255, 255, 0.32);
    }

    .uiv-hdr--blobcap::after {
      content: "";
      position: absolute;
      width: min(38%, 140px);
      height: 52px;
      top: 8px;
      right: 8%;
      z-index: 0;
      pointer-events: none;
      border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
      background: radial-gradient(ellipse 75% 65% at 28% 28%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 70%);
      opacity: 0.85;
    }

    .uiv-hdr--blobcap .uiv-hdr__menu,
    .uiv-hdr--blobcap .uiv-hdr__title,
    .uiv-hdr--blobcap .uiv-hdr__tel {
      position: relative;
      z-index: 1;
    }

    .uiv-hdr__tel {
      margin-left: auto;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--uiv-surface);
      color: #16a34a;
      text-decoration: none;
      border: 1px solid var(--uiv-surface);
      box-shadow: var(--uiv-btn-sh-raised);
      transition: var(--uiv-btn-t);
      -webkit-tap-highlight-color: transparent;
    }

    .uiv-hdr__tel:active,
    .uiv-hdr__tel.uiv-pedro-press {
      color: #15803d;
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-hdr__tel svg {
      display: block;
      width: 18px;
      height: 18px;
    }

    /* Кнопка звонка — варианты «органическая капля» (.uiv-blob), слегка зелёные */
    .uiv-call-blob {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--uiv-btn-t);
      -webkit-tap-highlight-color: transparent;
    }

    .uiv-call-blob svg {
      display: block;
      flex-shrink: 0;
      pointer-events: none;
    }

    /* v1 — монолит: градиент + тени как у капли, иконка сверху */
    .uiv-call-blob--v1 {
      border-radius: 55% 45% 58% 42% / 42% 52% 48% 58%;
      background: linear-gradient(155deg, #86efac 0%, #22c55e 42%, #15803d 100%);
      box-shadow:
        inset 5px 5px 10px rgba(255, 255, 255, 0.38),
        inset -4px -6px 12px rgba(0, 0, 0, 0.12),
        6px 9px 18px rgba(22, 163, 74, 0.4),
        -4px -4px 12px rgba(255, 255, 255, 0.45);
      color: #fff;
    }

    .uiv-call-blob--v1:active {
      box-shadow: var(--uiv-btn-sh-pressed);
      filter: brightness(0.93);
    }

    /* v2 — иконка снизу по слоям, «стекло» сверху */
    .uiv-call-blob--v2 .uiv-call-blob__stack {
      position: relative;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
    }

    .uiv-call-blob--v2 .uiv-call-blob__icon {
      position: relative;
      z-index: 0;
      color: #166534;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
      transition: transform 0.2s ease;
    }

    .uiv-call-blob--v2 .uiv-call-blob__veil {
      position: absolute;
      inset: 0;
      z-index: 1;
      border-radius: 48% 52% 55% 45% / 38% 48% 52% 62%;
      pointer-events: none;
      background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.42),
        rgba(134, 239, 172, 0.45),
        rgba(34, 197, 94, 0.32)
      );
      box-shadow:
        inset 6px 7px 12px rgba(255, 255, 255, 0.65),
        inset -5px -7px 14px rgba(0, 0, 0, 0.08),
        5px 8px 16px rgba(22, 163, 74, 0.3);
    }

    .uiv-call-blob--v2:active .uiv-call-blob__veil {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-call-blob--v2:active .uiv-call-blob__icon {
      transform: scale(0.96);
    }

    /* v3 — радиальный блик + зелёное тело (иконка по центру) */
    .uiv-call-blob--v3 {
      border-radius: 52% 48% 46% 54% / 40% 58% 42% 60%;
      background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.6) 0%, transparent 42%),
        linear-gradient(165deg, #d1fae5 0%, #4ade80 38%, #16a34a 72%, #14532d 100%);
      box-shadow:
        inset 4px 5px 10px rgba(255, 255, 255, 0.45),
        inset -5px -8px 14px rgba(0, 0, 0, 0.14),
        7px 10px 20px rgba(22, 163, 74, 0.36);
      color: #fff;
    }

    .uiv-call-blob--v3:active {
      box-shadow: var(--uiv-btn-sh-pressed);
      filter: brightness(0.93);
    }

    /* v4 — как .uiv-blob: прозрачный корпус с тенями + зелёная заливка + блики */
    .uiv-call-blob--v4 {
      border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
      background-color: transparent;
      color: #fff;
    }

    .uiv-call-blob--v4::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      background: linear-gradient(155deg, rgba(187, 247, 208, 0.92), rgba(34, 197, 94, 0.88), rgba(21, 128, 61, 0.95));
      box-shadow:
        inset 5px 5px 7px rgba(0, 0, 0, 0.12),
        6px 8px 16px rgba(0, 0, 0, 0.28),
        inset -5px -6px 10px rgba(255, 255, 255, 0.88);
    }

    .uiv-call-blob--v4::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      top: 12px;
      left: 14px;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.75);
      z-index: 1;
      pointer-events: none;
      box-shadow: 16px 10px 0 -2px rgba(255, 255, 255, 0.35);
    }

    .uiv-call-blob--v4 svg {
      position: relative;
      z-index: 2;
    }

    .uiv-call-blob--v4:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* v5 — как v4, другой силуэт капли + более мятный градиент */
    .uiv-call-blob--v5 {
      border-radius: 44% 56% 52% 48% / 38% 46% 54% 62%;
      background-color: transparent;
      color: #fff;
    }

    .uiv-call-blob--v5::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      background: linear-gradient(195deg, #ecfccb 0%, #86efac 35%, #22c55e 70%, #14532d 100%);
      box-shadow:
        inset 5px 6px 8px rgba(255, 255, 255, 0.5),
        inset -5px -7px 12px rgba(0, 0, 0, 0.1),
        5px 9px 18px rgba(22, 163, 74, 0.32),
        -3px -4px 10px rgba(255, 255, 255, 0.4);
    }

    .uiv-call-blob--v5::after {
      content: "";
      position: absolute;
      width: 11px;
      height: 8px;
      top: 11px;
      left: 12px;
      border-radius: 70% 30% 80% 20% / 55% 45% 60% 40%;
      background: rgba(255, 255, 255, 0.72);
      z-index: 1;
      pointer-events: none;
      box-shadow: 14px 12px 0 -1px rgba(255, 255, 255, 0.28);
    }

    .uiv-call-blob--v5 svg {
      position: relative;
      z-index: 2;
    }

    .uiv-call-blob--v5:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* v6 — тени в духе .uiv-blob (глубже «органика»), заливка зелёная */
    .uiv-call-blob--v6 {
      border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
      background-color: transparent;
      color: #fff;
    }

    .uiv-call-blob--v6::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      background: linear-gradient(160deg, rgba(209, 250, 229, 0.95), rgba(52, 211, 153, 0.9), rgba(5, 150, 105, 0.98));
      box-shadow:
        inset 6px 6px 7px rgba(0, 0, 0, 0.14),
        7px 9px 18px rgba(0, 0, 0, 0.32),
        inset -7px -7px 11px rgba(255, 255, 255, 0.82);
    }

    .uiv-call-blob--v6::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      top: 38px;
      left: 34px;
      border-radius: 48% 52% 45% 55% / 48% 67% 33% 52%;
      background: rgba(255, 255, 255, 0.55);
      z-index: 1;
      pointer-events: none;
    }

    .uiv-call-blob--v6 svg {
      position: relative;
      z-index: 2;
    }

    .uiv-call-blob--v6:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* v7 — радиальный блик в ::before + мягкое свечение снаружи */
    .uiv-call-blob--v7 {
      border-radius: 48% 52% 58% 42% / 32% 54% 46% 68%;
      background-color: transparent;
      color: #fff;
      filter: drop-shadow(0 4px 10px rgba(34, 197, 94, 0.35));
    }

    .uiv-call-blob--v7::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      background:
        radial-gradient(ellipse 70% 55% at 28% 22%, rgba(255, 255, 255, 0.75) 0%, transparent 52%),
        linear-gradient(175deg, #bbf7d0, #22c55e 50%, #0f5132);
      box-shadow:
        inset 4px 4px 9px rgba(255, 255, 255, 0.35),
        inset -5px -6px 11px rgba(0, 0, 0, 0.12),
        5px 7px 14px rgba(0, 0, 0, 0.22);
    }

    .uiv-call-blob--v7::after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      top: 13px;
      left: 15px;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.68);
      z-index: 1;
      pointer-events: none;
    }

    .uiv-call-blob--v7 svg {
      position: relative;
      z-index: 2;
    }

    .uiv-call-blob--v7:active {
      filter: drop-shadow(0 2px 6px rgba(34, 197, 94, 0.25));
    }

    .uiv-call-blob--v7:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* v8 — светлее, «стеклянный» обод + мелкие блики (тройка точек через box-shadow) */
    .uiv-call-blob--v8 {
      border-radius: 54% 46% 50% 50% / 28% 60% 40% 72%;
      background-color: transparent;
      color: #fff;
    }

    .uiv-call-blob--v8::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      background: linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(74, 222, 128, 0.92), rgba(21, 128, 61, 0.94));
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.45),
        inset 5px 5px 8px rgba(0, 0, 0, 0.08),
        6px 8px 16px rgba(0, 0, 0, 0.2),
        inset -6px -7px 12px rgba(255, 255, 255, 0.65);
    }

    .uiv-call-blob--v8::after {
      content: "";
      position: absolute;
      width: 5px;
      height: 5px;
      top: 14px;
      left: 13px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      z-index: 1;
      pointer-events: none;
      box-shadow:
        11px 4px 0 0 rgba(255, 255, 255, 0.45),
        6px 14px 0 0 rgba(255, 255, 255, 0.28);
    }

    .uiv-call-blob--v8 svg {
      position: relative;
      z-index: 2;
    }

    .uiv-call-blob--v8:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /*
      n1–n4: капля как .uiv-blob (нейтральные серые тени, без зелёного тела).
      Иконка трубки — зелёная (см. [class*="uiv-call-blob--n"] svg).
    */
    .uiv-call-blob[class*="uiv-call-blob--n"] svg {
      position: relative;
      z-index: 2;
      color: #16a34a;
    }

    /* n1 — тени на ::before (масштаб с .uiv-blob 200px → 56px), блики ::after */
    .uiv-call-blob--n1 {
      border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
      background-color: transparent;
    }

    .uiv-call-blob--n1::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      pointer-events: none;
      background-color: transparent;
      box-shadow:
        inset 3px 3px 3px 3px rgba(0, 0, 0, 0.158),
        3px 3px 6px rgba(0, 0, 0, 0.466),
        inset -3px -3px 3px 3px rgba(255, 255, 255, 0.897);
    }

    .uiv-call-blob--n1::after {
      content: "";
      position: absolute;
      width: 3px;
      height: 3px;
      top: 11px;
      left: 11px;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.84);
      z-index: 1;
      pointer-events: none;
      box-shadow: 13px 5px 0 0 rgba(255, 255, 255, 0.72);
    }

    .uiv-call-blob--n1:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* n2 — те же тени на самом <a> (как у блока .uiv-blob), два блика псевдо как в демо */
    .uiv-call-blob--n2 {
      border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
      background-color: transparent;
      box-shadow:
        inset 3px 3px 3px 3px rgba(0, 0, 0, 0.158),
        3px 3px 6px rgba(0, 0, 0, 0.466),
        inset -3px -3px 3px 3px rgba(255, 255, 255, 0.897);
    }

    .uiv-call-blob--n2::before {
      content: "";
      position: absolute;
      width: 3px;
      height: 3px;
      top: 11px;
      left: 11px;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.842);
      z-index: 1;
      pointer-events: none;
    }

    .uiv-call-blob--n2::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 6px;
      top: 10px;
      left: 17px;
      border-radius: 48% 52% 45% 55% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.842);
      z-index: 1;
      pointer-events: none;
    }

    .uiv-call-blob--n2:active {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /*
      Кнопка как .uiv-btn по отступам, корпус прозрачный как .uiv-blob / n2.
      Текст — var(--uiv-fg). Силуэты: --sil-n3 | --sil-n4 | --sil-wide | --sil-ribbon | --micro
      Блики: --gl-blob | --gl-arc | --gl-stip | --gl-soft
    */
    a.uiv-btn-call-n2.uiv-call-blob,
    button.uiv-btn-call-n2.uiv-call-blob {
      width: auto;
      height: auto;
      min-width: 6.35rem;
      padding: 0.7em 1.7em;
      font-size: 18px;
      line-height: 1;
      border: none;
      text-decoration: none;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45em;
      font-family: inherit;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    button.uiv-btn-call-n2.uiv-call-blob {
      appearance: none;
    }

    a.uiv-btn-call-n2.uiv-call-blob svg,
    button.uiv-btn-call-n2.uiv-call-blob svg {
      position: relative;
      z-index: 2;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .uiv-btn-call-n2__text {
      position: relative;
      z-index: 2;
      color: #6e7f8d;
      font-weight: 400;
      letter-spacing: 0.1em;
      font-weight: 400;
    }

    /* Подпись и корпус: как основной текст; иконка трубки остаётся зелёной (правило n-серии для svg) */
    a.uiv-call-blob.uiv-btn-call-n2,
    button.uiv-call-blob.uiv-btn-call-n2 {
      color: var(--uiv-fg);
    }

    a.uiv-call-blob.uiv-call-blob--n2.uiv-btn-call-n2:has(.uiv-btn-call-n2__text),
    button.uiv-call-blob.uiv-call-blob--n2.uiv-btn-call-n2:has(.uiv-btn-call-n2__text) {
      background-color: transparent;
      background-image: none;
    }

    /* Длинные подписи: мягкая капля и перенос */
    .uiv-btn-call-n2--long.uiv-call-blob {
      max-width: 13.5rem;
      padding: 0.62em 1.35em;
      line-height: 1.22;
    }

    .uiv-btn-call-n2--long .uiv-btn-call-n2__text {
      white-space: normal;
      text-align: center;
      text-wrap: balance;
    }

    /* Очень короткая кнопка — почти круглая капля */
    .uiv-btn-call-n2--micro.uiv-call-blob--n2 {
      min-width: auto;
      padding: 0.65em 0.95em;
      border-radius: 48% 52% 50% 50% / 42% 58% 44% 56%;
    }

    .uiv-btn-call-n2--micro.uiv-btn-call-n2--gl-stip.uiv-call-blob--n2::before {
      top: 9px;
      left: 10px;
    }

    .uiv-btn-call-n2--micro.uiv-btn-call-n2--gl-stip.uiv-call-blob--n2::after {
      top: 10px;
      left: 54%;
    }

    /* Удлинённая «ленточная» органика под длинный текст */
    .uiv-btn-call-n2--sil-ribbon.uiv-call-blob--n2 {
      border-radius: 34% 66% 42% 58% / 52% 38% 62% 48%;
    }

    /* Силуэт капли (органические border-radius) */
    .uiv-btn-call-n2--sil-n3.uiv-call-blob--n2 {
      border-radius: 46% 54% 48% 52% / 32% 44% 56% 68%;
    }

    .uiv-btn-call-n2--sil-n4.uiv-call-blob--n2 {
      border-radius: 52% 48% 58% 42% / 28% 52% 48% 72%;
    }

    .uiv-btn-call-n2--sil-wide.uiv-call-blob--n2 {
      border-radius: 38% 62% 52% 48% / 42% 36% 64% 58%;
    }

    /* Блики: переопределение псевдо n2 (как у .uiv-blob, но под широкую кнопку) */
    .uiv-btn-call-n2--gl-blob.uiv-call-blob--n2::before {
      width: 6px;
      height: 6px;
      top: 20%;
      left: 12%;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      box-shadow: 11px 5px 0 -1px rgba(255, 255, 255, 0.55);
    }

    .uiv-btn-call-n2--gl-blob.uiv-call-blob--n2::after {
      width: 10px;
      height: 8px;
      top: 16%;
      left: 48%;
      transform: translateX(-50%);
      border-radius: 48% 52% 45% 55% / 48% 67% 33% 52%;
    }

    .uiv-btn-call-n2--gl-arc.uiv-call-blob--n2::before {
      width: min(52%, 5.5rem);
      height: 3px;
      top: 7px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.88) 45%,
        rgba(255, 255, 255, 0.55) 72%,
        transparent
      );
      box-shadow: none;
    }

    .uiv-btn-call-n2--gl-arc.uiv-call-blob--n2::after {
      width: 4px;
      height: 4px;
      top: 11px;
      left: auto;
      right: 12%;
      transform: none;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.82);
      box-shadow: -10px 6px 0 -1px rgba(255, 255, 255, 0.35);
    }

    .uiv-btn-call-n2--gl-stip.uiv-call-blob--n2::before {
      width: 2px;
      height: 2px;
      top: 10px;
      left: 14px;
      border-radius: 50%;
      box-shadow:
        7px 4px 0 0 rgba(255, 255, 255, 0.75),
        3px 9px 0 0 rgba(255, 255, 255, 0.45),
        14px 8px 0 0 rgba(255, 255, 255, 0.35);
    }

    .uiv-btn-call-n2--gl-stip.uiv-call-blob--n2::after {
      width: 5px;
      height: 4px;
      top: 12px;
      left: 58%;
      transform: translateX(-50%);
      border-radius: 70% 30% 80% 20% / 55% 45% 60% 40%;
      opacity: 0.9;
    }

    .uiv-btn-call-n2--gl-soft.uiv-call-blob--n2::before {
      width: 9px;
      height: 7px;
      top: 18%;
      left: 10%;
      border-radius: 65% 35% 70% 30% / 50% 50% 50% 50%;
      background-color: rgba(255, 255, 255, 0.55);
      box-shadow: 14px 6px 0 -2px rgba(255, 255, 255, 0.28);
    }

    .uiv-btn-call-n2--gl-soft.uiv-call-blob--n2::after {
      width: 5px;
      height: 5px;
      top: 22%;
      left: auto;
      right: 14%;
      border-radius: 48% 52% 45% 55%;
      background-color: rgba(255, 255, 255, 0.5);
      box-shadow: -8px 10px 0 -1px rgba(255, 255, 255, 0.22);
    }

    .uiv-btn-call-n2.uiv-call-blob--n2 {
      transition:
        box-shadow 0.42s cubic-bezier(0.25, 0.85, 0.35, 1),
        transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
      transform-origin: center center;
    }

    .uiv-btn-call-n2.uiv-call-blob--n2 svg {
      transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
    }

    .uiv-btn-call-n2.uiv-call-blob--n2::before,
    .uiv-btn-call-n2.uiv-call-blob--n2::after {
      transition:
        transform 0.4s cubic-bezier(0.25, 0.85, 0.35, 1),
        opacity 0.35s ease;
    }

    .uiv-btn-call-n2.uiv-call-blob--n2:active {
      transform: scale(0.93);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-btn-call-n2.uiv-call-blob--n2:active svg {
      transform: scale(0.92);
    }

    .uiv-btn-call-n2.uiv-call-blob--n2:active::before,
    .uiv-btn-call-n2.uiv-call-blob--n2:active::after {
      transform: scale(0.85);
      opacity: 0.72;
    }

    .uiv-btn-call-n2--gl-blob.uiv-call-blob--n2:active::after,
    .uiv-btn-call-n2--gl-stip.uiv-call-blob--n2:active::after {
      transform: translateX(-50%) scale(0.85);
    }

    .uiv-btn-call-n2--gl-arc.uiv-call-blob--n2:active::before {
      transform: translateX(-50%) scale(0.85);
    }

    .uiv-btn-call-n2--gl-arc.uiv-call-blob--n2:active::after {
      transform: scale(0.85);
    }

    .uiv-btn-call-n2--gl-soft.uiv-call-blob--n2:active::after {
      transform: scale(0.85);
    }

    /* n3 — другой силуэт капли, чуть сильнее внешняя тень */
    .uiv-call-blob--n3 {
      border-radius: 46% 54% 48% 52% / 32% 44% 56% 68%;
      background-color: transparent;
    }

    .uiv-call-blob--n3::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      pointer-events: none;
      background-color: transparent;
      box-shadow:
        inset 3px 3px 4px 3px rgba(0, 0, 0, 0.16),
        4px 4px 7px rgba(0, 0, 0, 0.42),
        inset -3px -3px 4px 3px rgba(255, 255, 255, 0.88);
    }

    .uiv-call-blob--n3::after {
      content: "";
      position: absolute;
      width: 4px;
      height: 4px;
      top: 12px;
      left: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.88);
      z-index: 1;
      pointer-events: none;
      box-shadow:
        12px 5px 0 -1px rgba(255, 255, 255, 0.55),
        5px 14px 0 -1px rgba(255, 255, 255, 0.35);
    }

    .uiv-call-blob--n3:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* n4 — мягче контраст (ближе к «туманной» капле на #e8e8e8) */
    .uiv-call-blob--n4 {
      border-radius: 52% 48% 58% 42% / 28% 52% 48% 72%;
      background-color: transparent;
    }

    .uiv-call-blob--n4::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 0;
      pointer-events: none;
      background-color: transparent;
      box-shadow:
        inset 2px 2px 3px 3px rgba(0, 0, 0, 0.11),
        2px 3px 5px rgba(0, 0, 0, 0.32),
        inset -2px -2px 3px 3px rgba(255, 255, 255, 0.82);
    }

    .uiv-call-blob--n4::after {
      content: "";
      position: absolute;
      width: 2px;
      height: 2px;
      top: 13px;
      left: 14px;
      border-radius: 80% 20% 91% 9% / 48% 67% 33% 52%;
      background-color: rgba(255, 255, 255, 0.78);
      z-index: 1;
      pointer-events: none;
      box-shadow: 11px 7px 0 1px rgba(255, 255, 255, 0.45);
    }

    .uiv-call-blob--n4:active::before {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    /* Анимации (5 демо) */
    .uiv-anim-box {
      padding: 1rem;
      border-radius: 12px;
      background: var(--uiv-surface);
      min-height: 72px;
      min-width: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .uiv-anim-1 {
      box-shadow: var(--uiv-elev-sm);
      animation: uivPulse 2.4s ease-in-out infinite;
    }

    @keyframes uivPulse {
      0%, 100% {
        box-shadow: var(--uiv-elev-sm);
      }
      50% {
        box-shadow: var(--uiv-elev-md);
      }
    }

    .uiv-anim-2 {
      animation: uivFloat 2.2s ease-in-out infinite;
      box-shadow: var(--uiv-elev-sm);
    }

    @keyframes uivFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .uiv-anim-3 {
      background: linear-gradient(110deg, #eff2f9, #eff2f9, #dde4ee);
      background-size: 200% 200%;
      animation: uivShimmer 2.5s ease infinite;
      box-shadow: var(--uiv-elev-sm-in);
    }

    @keyframes uivShimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .uiv-anim-4 {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      margin: 0 auto;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      animation: uivSpin 3.5s linear infinite;
    }

    @keyframes uivSpin {
      to { transform: rotate(360deg); }
    }

    .uiv-anim-5 {
      animation: uivHue 4s linear infinite;
      border-radius: 12px;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
    }

    @keyframes uivHue {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }

    /* Футер */
    .uiv-ftr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      font-size: 0.82rem;
      max-width: 400px;
      width: 100%;
    }

    .uiv-ftr > span {
      display: inline-block;
      padding: 0.2rem 0;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
    }

    .uiv-ftr__legal {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.35rem 0.85rem;
      padding-top: 0.65rem;
      margin-top: 0.15rem;
      border-top: 1px solid rgba(0, 0, 0, 0.07);
      font-size: 0.68rem;
      line-height: 1.35;
    }

    .uiv-ftr__legal a {
      color: var(--uiv-fg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    .uiv-ftr__legal a:hover {
      border-bottom-color: rgba(0, 0, 0, 0.2);
    }

    /* Toggle — та же анимация 0.3s; трек вдавленный, бегунок как .uiv-btn */
    .uiv-tgl {
      position: relative;
      width: 56px;
      height: 30px;
      border-radius: 999px;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: var(--uiv-btn-t);
      background: var(--uiv-surface);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-tgl-k {
      position: absolute;
      top: 4px;
      left: 4px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--uiv-bg);
      box-shadow: var(--uiv-btn-sh-raised);
      transition:
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;
    }

    .uiv-tgl-k:active {
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-tgl[aria-checked="true"] .uiv-tgl-k {
      transform: translateX(26px);
    }

    .uiv-tgl[aria-checked="true"] {
      background: var(--uiv-accent-2);
      box-shadow: var(--uiv-elev-sm-in);
    }

    /* Range два ползунка */
    .uiv-range2 {
      width: 100%;
      max-width: min(100%, 360px);
      --r2-fill: linear-gradient(90deg, var(--uiv-accent-2), color-mix(in srgb, var(--uiv-accent-2) 68%, white));
    }

    .uiv-range2__head {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
      margin-bottom: 0.55rem;
      gap: 0.4rem 0.6rem;
    }

    .uiv-range2__head span,
    .uiv-range2__head strong {
      font-weight: 400;
      letter-spacing: 0.1em;
      color: inherit;
    }

    .uiv-range2__cap {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .uiv-range2__in {
      box-sizing: border-box;
      flex: 1 1 4.5rem;
      min-width: 4rem;
      max-width: 9rem;
      min-height: 40px;
      padding: 8px 10px;
      margin: 0;
      border: none;
      border-radius: 12px;
      background: var(--uiv-surface);
      color: #6e7f8d;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-align: left;
      outline: none;
      box-shadow: var(--uiv-elev-sm-in);
      transition: box-shadow 0.3s ease;
    }

    .uiv-range2__in:focus {
      box-shadow: var(--uiv-elev-md-in);
    }

    .uiv-range2__in::placeholder {
      color: var(--uiv-muted);
    }

    .uiv-range2__track {
      position: relative;
      height: 22px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--uiv-accent-2) 18%, var(--uiv-surface));
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-range2__fill {
      position: absolute;
      top: 4px;
      bottom: 4px;
      left: var(--r2-left, 10%);
      width: var(--r2-w, 40%);
      border-radius: 999px;
      background: var(--r2-fill);
      pointer-events: none;
      z-index: 1;
    }

    .uiv-range2__track input[type="range"] {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      height: 14px;
      margin: 0;
      appearance: none;
      background: none;
      pointer-events: none;
      z-index: 2;
    }

    .uiv-range2__track input[type="range"].uiv-range2__min { z-index: 3; }
    .uiv-range2__track input[type="range"].uiv-range2__max { z-index: 2; }

    .uiv-range2__track input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--uiv-bg);
      box-shadow: var(--uiv-elev-sm);
      cursor: grab;
      pointer-events: auto;
      transition: var(--uiv-btn-t);
    }

    .uiv-range2__track input[type="range"]::-webkit-slider-thumb:active {
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-range2__track input[type="range"]::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border: none;
      border-radius: 50%;
      background: var(--uiv-bg);
      box-shadow: var(--uiv-elev-sm);
      cursor: grab;
      pointer-events: auto;
      transition: var(--uiv-btn-t);
    }

    .uiv-range2__track input[type="range"]::-moz-range-thumb:active {
      box-shadow: var(--uiv-elev-sm-in);
    }

    /* Вкладки */
    .uiv-tabs-pill {
      display: inline-flex;
      padding: 4px;
      gap: 4px;
      border-radius: 12px;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm-in);
      flex-wrap: wrap;
    }

    .uiv-tabs-pill button {
      border: 1px solid transparent;
      padding: 0.4rem 0.85rem;
      border-radius: 0.5em;
      font: inherit;
      font-size: 0.78rem;
      font-weight: 400;
      cursor: pointer;
      color: var(--uiv-muted);
      background: transparent;
      transition:
        color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        background var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        border-color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        filter var(--uiv-tab-switch-dur) ease;
    }

    .uiv-tabs-pill button.is-on {
      color: var(--uiv-fg);
      background: var(--uiv-bg);
      border-color: var(--uiv-bg);
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-tabs-pill button:not(.is-on):active {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
      background: var(--uiv-bg);
      border-color: var(--uiv-bg);
    }

    .uiv-tabs-line {
      display: flex;
      gap: 0.35rem;
      flex-wrap: wrap;
      align-items: center;
      padding-bottom: 0;
      border-bottom: none;
    }

    .uiv-tabs-line button {
      border: 1px solid var(--uiv-surface);
      background: var(--uiv-surface);
      padding: 0.45rem 0.75rem;
      font: inherit;
      font-size: 0.8rem;
      font-weight: 400;
      cursor: pointer;
      color: var(--uiv-muted);
      border-radius: 0.5em;
      box-shadow: var(--uiv-elev-sm);
      transition:
        color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        background var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        border-color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        filter var(--uiv-tab-switch-dur) ease;
    }

    .uiv-tabs-line button.is-on {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-line button:not(.is-on):active {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-seg {
      display: flex;
      border-radius: 0.5em;
      overflow: hidden;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm-in);
      gap: 2px;
      padding: 2px;
    }

    .uiv-tabs-seg button {
      flex: 1;
      border: 1px solid var(--uiv-surface);
      padding: 0.5rem;
      font: inherit;
      font-size: 0.75rem;
      font-weight: 400;
      cursor: pointer;
      background: var(--uiv-surface);
      color: var(--uiv-muted);
      border-radius: 0.45em;
      box-shadow: var(--uiv-elev-sm);
      transition:
        color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        background var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        border-color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        filter var(--uiv-tab-switch-dur) ease;
    }

    .uiv-tabs-seg button.is-on {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-seg button:not(.is-on):active {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-card {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .uiv-tabs-card button {
      border: 1px solid var(--uiv-surface);
      padding: 0.45rem 0.75rem;
      border-radius: 0.5em;
      font: inherit;
      font-size: 0.78rem;
      font-weight: 400;
      cursor: pointer;
      color: var(--uiv-muted);
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      transition:
        color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        background var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        border-color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        filter var(--uiv-tab-switch-dur) ease;
    }

    .uiv-tabs-card button.is-on {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-card button:not(.is-on):active {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-vert {
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-width: 200px;
    }

    .uiv-tabs-vert button {
      text-align: left;
      border: 1px solid var(--uiv-surface);
      padding: 0.5rem 0.75rem;
      border-radius: 0.5em;
      font: inherit;
      font-size: 0.8rem;
      font-weight: 400;
      cursor: pointer;
      color: var(--uiv-muted);
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      transition:
        color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        background var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        border-color var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow),
        filter var(--uiv-tab-switch-dur) ease;
    }

    .uiv-tabs-vert button.is-on {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-vert button:not(.is-on):active {
      color: var(--uiv-fg);
      box-shadow: var(--uiv-elev-sm-in);
    }

    .uiv-tabs-pill button,
    .uiv-tabs-line button,
    .uiv-tabs-seg button,
    .uiv-tabs-card button,
    .uiv-tabs-vert button {
      position: relative;
      isolation: isolate;
      z-index: 0;
      overflow: hidden;
      transform: translateZ(0);
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
    }

    .uiv-tabs-pill button.is-on,
    .uiv-tabs-line button.is-on,
    .uiv-tabs-seg button.is-on,
    .uiv-tabs-card button.is-on,
    .uiv-tabs-vert button.is-on {
      color: #485053;
    }

    .uiv-tabs-pill button::before,
    .uiv-tabs-line button::before,
    .uiv-tabs-seg button::before,
    .uiv-tabs-card button::before,
    .uiv-tabs-vert button::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      box-shadow: var(--uiv-pedro-lt) calc(-0.33rem * var(--uiv-pedro-h)) calc(-0.33rem * var(--uiv-pedro-h)) 0.6rem;
      transition: opacity var(--uiv-tab-switch-dur) var(--uiv-ease-shadow), box-shadow var(--uiv-tab-switch-dur) var(--uiv-ease-shadow);
    }

    .uiv-tabs-pill button.is-on::before,
    .uiv-tabs-line button.is-on::before,
    .uiv-tabs-seg button.is-on::before,
    .uiv-tabs-card button:not(.is-on)::before,
    .uiv-tabs-vert button:not(.is-on)::before {
      opacity: 1;
    }

    .uiv-tabs-pill button::after,
    .uiv-tabs-line button::after,
    .uiv-tabs-seg button::after,
    .uiv-tabs-card button::after,
    .uiv-tabs-vert button::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      box-shadow: inset 0 0 0 0 var(--uiv-pedro-sd), inset 0 0 0 0 var(--uiv-pedro-lt);
      transition:
        box-shadow var(--uiv-pedro-btn-dur) ease,
        opacity var(--uiv-tab-switch-dur) var(--uiv-ease-shadow);
    }

    .uiv-tabs-pill button:active::after,
    .uiv-tabs-line button:active::after,
    .uiv-tabs-seg button:active::after,
    .uiv-tabs-card button:active::after,
    .uiv-tabs-vert button:active::after,
    .uiv-tabs-pill button.uiv-pedro-press::after,
    .uiv-tabs-line button.uiv-pedro-press::after,
    .uiv-tabs-seg button.uiv-pedro-press::after,
    .uiv-tabs-card button.uiv-pedro-press::after,
    .uiv-tabs-vert button.uiv-pedro-press::after {
      box-shadow:
        inset calc(0.2rem * var(--uiv-pedro-h)) calc(0.2rem * var(--uiv-pedro-h)) 0.5rem 0 var(--uiv-pedro-sd),
        inset calc(-0.2rem * var(--uiv-pedro-h)) calc(-0.2rem * var(--uiv-pedro-h)) 0.5rem 0 var(--uiv-pedro-lt);
    }

    .uiv-tabs-pill button > span,
    .uiv-tabs-line button > span,
    .uiv-tabs-seg button > span,
    .uiv-tabs-card button > span,
    .uiv-tabs-vert button > span {
      position: relative;
      z-index: 1;
      display: inline-block;
      transition: transform var(--uiv-pedro-btn-span-dur) ease-in-out;
    }

    .uiv-tabs-pill button:active > span,
    .uiv-tabs-line button:active > span,
    .uiv-tabs-seg button:active > span,
    .uiv-tabs-card button:active > span,
    .uiv-tabs-vert button:active > span,
    .uiv-tabs-pill button.uiv-pedro-press > span,
    .uiv-tabs-line button.uiv-pedro-press > span,
    .uiv-tabs-seg button.uiv-pedro-press > span,
    .uiv-tabs-card button.uiv-pedro-press > span,
    .uiv-tabs-vert button.uiv-pedro-press > span {
      transform: translateY(var(--uiv-pedro-btn-shift));
    }

    .uiv-tabs-pill button:not(.is-on):active,
    .uiv-tabs-line button:not(.is-on):active,
    .uiv-tabs-seg button:not(.is-on):active,
    .uiv-tabs-card button:not(.is-on):active,
    .uiv-tabs-vert button:not(.is-on):active,
    .uiv-tabs-pill button:not(.is-on).uiv-pedro-press,
    .uiv-tabs-line button:not(.is-on).uiv-pedro-press,
    .uiv-tabs-seg button:not(.is-on).uiv-pedro-press,
    .uiv-tabs-card button:not(.is-on).uiv-pedro-press,
    .uiv-tabs-vert button:not(.is-on).uiv-pedro-press {
      filter: brightness(0.97);
    }

    /* Хлебные крошки */
    .uiv-bc {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
    }

    .uiv-bc a {
      color: #485053;
      text-decoration: none;
      font-weight: 400;
      letter-spacing: 0.1em;
    }

    .uiv-bc-1 span[aria-hidden="true"] {
      opacity: 0.5;
      padding: 0 0.15rem;
    }

    .uiv-bc-2 span[aria-hidden="true"]::before {
      content: "›";
      padding: 0 0.2rem;
    }

    .uiv-bc-3 a,
    .uiv-bc-3 span {
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm);
      font-size: 0.72rem;
    }

    .uiv-bc-4 span[aria-hidden="true"] {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--uiv-subtle-fill);
      opacity: 0.5;
    }

    .uiv-bc-5 {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
      border-radius: 10px;
      padding: 0.4rem 0.65rem;
      background: var(--uiv-surface);
      box-shadow: var(--uiv-elev-sm-in);
    }

    /* Мобильное меню (превью) */
    .uiv-mnav-stage {
      position: relative;
      height: 280px;
      max-width: 100%;
      width: 360px;
      background: linear-gradient(90deg, var(--uiv-subtle-fill) 0%, #eff2f9 45%, #eff2f9 100%);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-mnav-panel {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: min(260px, 88%);
      display: flex;
      flex-direction: column;
      background: var(--uiv-surface);
      box-shadow: 12px 0 24px var(--uiv-sh-dk);
      border-radius: 0 12px 12px 0;
      z-index: 2;
    }

    .uiv-mnav-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 21px 0.7rem 21px;
      border-bottom: 1px solid rgba(110, 127, 141, 0.12);
    }

    .uiv-mnav-top__title {
      font-weight: 600;
      font-size: 0.9rem;
      margin: 0;
      color: var(--uiv-fg);
    }

    .uiv-mnav-close {
      width: 40px;
      height: 40px;
      border: 1px solid var(--uiv-surface);
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--uiv-surface);
      color: #6e7f8d;
      font-weight: 400;
      letter-spacing: 0.1em;
      box-shadow: var(--uiv-btn-sh-raised);
      transition: var(--uiv-btn-t);
    }

    .uiv-mnav-close:active {
      color: var(--uiv-btn-fg-pressed);
      box-shadow: var(--uiv-btn-sh-pressed);
    }

    .uiv-mnav-list {
      list-style: none;
      margin: 0;
      padding: 0.45rem 0.7rem;
      flex: 1;
      overflow: auto;
    }

    .uiv-mnav-list li {
      margin: 0;
      padding: 0;
      border-bottom: 1px solid rgba(110, 127, 141, 0.1);
    }

    .uiv-mnav-list a {
      display: block;
      padding: 0.65rem 0.1rem;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
    }

    .uiv-mnav-actions {
      padding: 0.65rem 0.7rem 60px;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      border-top: 1px solid rgba(110, 127, 141, 0.1);
    }

    .uiv-mnav-actions__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.55rem 0.75rem;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #6e7f8d;
      text-decoration: none;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--uiv-btn-t);
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-mnav-actions__btn:active {
      box-shadow: var(--uiv-elev-sm-in);
      filter: brightness(0.95);
    }

    .uiv-mnav-actions__btn--vk {
      background: #5b7a96;
      color: #fafbff;
    }

    .uiv-mnav-actions__btn--tel {
      background: linear-gradient(145deg, #5a9a8a, #3d7a6a);
      color: #fafbff;
    }

    /* Loaders */
    .uiv-ld {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
    }

    .uiv-ld-dots span {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin: 0 4px;
      background: linear-gradient(145deg, #6e7f8d, #4a5a66);
      box-shadow: var(--uiv-elev-sm);
      animation: uivLdBounce 1.2s ease-in-out infinite;
    }

    .uiv-ld-dots span:nth-child(2) { animation-delay: 0.15s; }
    .uiv-ld-dots span:nth-child(3) { animation-delay: 0.3s; }

    @keyframes uivLdBounce {
      0%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-8px); }
    }

    .uiv-ld-ring {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #4a5a66;
      border-right-color: #6e7f8d;
      animation: uivSpin 0.9s linear infinite;
      box-shadow: var(--uiv-elev-sm);
    }

    .uiv-ld-lite1 {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 3px solid rgba(180, 191, 198, 0.55);
      border-top-color: rgba(110, 127, 141, 0.45);
      animation: uivSpin 0.95s linear infinite;
    }

    /* Типографика (компактное демо) — без неоморфной подложки */
    .uiv-type-demo {
      max-width: 100%;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
    }

    .uiv-type-demo__header {
      background: transparent;
      padding: 1.25rem 0 1.5rem;
      margin: 0;
    }

    .uiv-type-level {
      margin: 0 0 0.2rem;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--uiv-fg);
    }

    .uiv-type-demo__body .uiv-type-level:not(:first-child) {
      margin-top: 0.85rem;
    }

    .uiv-type-h1 {
      font-weight: 400;
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      line-height: 1.3;
      letter-spacing: 0.1em;
      margin: 0;
      color: rgba(72, 80, 83, 1);
    }

    .uiv-type-demo__body {
      padding: 0 0 0.5rem;
    }

    .uikit3 h2,
    .uiv-type-h2 {
      margin: 0 0 0.5rem;
      font-size: 1.15rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #485053;
    }

    .uikit3 h3,
    .uiv-type-h3 {
      margin: 0 0 0.35rem;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: #485053;
    }

    .uiv-type-body {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.75rem;
      color: rgba(110, 127, 141, 1);
    }

    .uiv-type-callout {
      margin: 0 0 0.75rem;
      font-size: 0.8125rem;
      color: var(--uiv-fg);
      line-height: 1.45;
    }

    .uiv-type-callout code,
    .uiv-type-level code {
      font-family: var(--uiv-ff-mono);
      font-size: 0.9em;
      text-transform: none;
      letter-spacing: 0;
    }

    .uiv-type-caption {
      margin: 0 0 0.75rem;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--uiv-fg);
    }

    .uiv-type-quote {
      margin: 0.75rem 0 0;
      padding: 0.5rem 0 0.5rem 1rem;
      border-left: 4px solid #8a9baf;
      font-style: italic;
      color: var(--uiv-fg);
    }

    .uiv-type-quote p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .uiv-type-em--highlight {
      background-color: #d8e3ef;
      padding: 0.1em 0.15em;
      border-radius: 2px;
      font-style: italic;
    }
  
