    :root {
      --t-headline: -apple-system, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
      --t-text: -apple-system, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
      --um-orange: #ff6b1f;
      --um-orange-d: #c2410c;
      --um-orange-l: #fff1e8;
      --um-purple: #7c3aed;
      --um-purple-l: #f3eeff;
      --um-green: #05ae51;
      --um-green-d: #048f43;
      --um-green-l: #e6f7ee;
      --um-muted: #5a6470;
      --um-line: #e6e8ec;
      --um-surface: #f7f8fa;
      --um-ink: #0f1419;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--t-text);
      color: var(--um-ink);
      background: #fff;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
    svg { display: block; }
    img { max-width: 100%; display: block; }

    /* ========== TOP BAR ========== */
    .um-top { background: #0f1419; color: rgba(255,255,255,.7); font-size: 12.5px; padding: 8px 0; }
    .um-top__inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    }
    .um-top__left, .um-top__right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .um-top__city { display: inline-flex; align-items: center; gap: 4px; color: #fff; font-weight: 600; }
    .um-top__city svg { width: 13px; height: 13px; }
    .um-top__link { color: rgba(255,255,255,.7); transition: color .15s; }
    .um-top__link:hover { color: #fff; }
    .um-top__link--b2b { color: #ff6b1f; font-weight: 700; }
    .um-top__sep { opacity: .3; }

    /* ========== HEADER ========== */
    .um-header { background: #fff; border-bottom: 1px solid var(--um-line); position: sticky; top: 0; z-index: 100; }
    .um-header__inner {
      max-width: 1400px; margin: 0 auto; padding: 16px 24px;
      display: grid; grid-template-columns: auto auto 1fr auto auto; gap: 16px; align-items: center;
    }
    .um-header__logo { display: flex; align-items: center; gap: 10px; }
    .um-header__logo-mark {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, #05ae51 0%, #048f43 100%);
      color: #fff; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--t-headline); font-size: 20px; font-weight: 800;
    }
    .um-header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .um-header__logo-text strong { font-family: var(--t-headline); font-size: 16px; font-weight: 800; letter-spacing: .02em; }
    .um-header__logo-text span { font-size: 10.5px; color: var(--um-muted); }

    .um-header__catalog {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 0 18px; height: 48px;
      background: var(--um-orange); color: #fff; border-radius: 10px;
      font-size: 14px; font-weight: 700;
    }
    .um-header__catalog-burger { display: inline-flex; flex-direction: column; gap: 3px; }
    .um-header__catalog-burger span { display: block; width: 16px; height: 2px; background: #fff; border-radius: 1px; }

    .um-header__search {
      display: flex; height: 48px;
      background: var(--um-surface); border: 1.5px solid var(--um-line); border-radius: 10px; overflow: hidden;
    }
    .um-header__search input {
      flex: 1; padding: 0 16px; border: 0; background: transparent;
      font-size: 14px; outline: none; color: var(--um-ink); font-family: inherit;
    }
    .um-header__search button {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 0 20px; background: var(--um-ink); color: #fff;
      font-size: 13px; font-weight: 700;
    }
    .um-header__search button svg { width: 14px; height: 14px; }

    .um-header__contacts { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
    .um-header__phone-num { font-family: var(--t-headline); font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
    .um-header__phone-hint { font-size: 10.5px; color: var(--um-muted); }

    .um-header__actions { display: flex; gap: 8px; }
    .um-header__act {
      display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
      padding: 6px 10px; border-radius: 8px; font-size: 11px; font-weight: 600;
      color: var(--um-ink); position: relative; transition: background .15s;
    }
    .um-header__act:hover { background: var(--um-surface); }
    .um-header__act svg { width: 18px; height: 18px; }
    .um-header__act--cart { background: var(--um-green); color: #fff; }
    .um-header__act--cart:hover { background: var(--um-green-d); }
    .um-header__badge {
      position: absolute; top: 0; right: 4px; min-width: 16px; height: 16px; padding: 0 4px;
      background: var(--um-orange); color: #fff; border-radius: 999px;
      font-size: 10px; font-weight: 800;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .um-header__badge--green { background: #fff; color: var(--um-green); }
    .um-header__act--cart .um-header__badge { top: 2px; right: 2px; }

    /* ========== SUB NAV ========== */
    .um-subnav { background: #fff; border-top: 1px solid var(--um-line); }
    .um-subnav__inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: flex; gap: 4px; overflow-x: auto;
    }
    .um-subnav__link {
      padding: 14px 16px; font-size: 13px; font-weight: 600;
      color: var(--um-muted); white-space: nowrap;
      border-bottom: 2px solid transparent; transition: all .15s;
    }
    .um-subnav__link:hover { color: var(--um-ink); }
    .um-subnav__link.is-active { color: var(--um-ink); border-bottom-color: var(--um-green); }
    .um-subnav__link--sale { color: var(--um-orange); }
    .um-subnav__link--ghost { margin-left: auto; color: var(--um-purple); }

    /* ========== HERO ========== */
    .um-hero { padding: 24px 0; background: var(--um-surface); }
    .um-hero__inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1fr 320px; gap: 20px;
    }
    .um-hero__main {
      position: relative; border-radius: 20px; overflow: hidden;
      min-height: 480px; background: #0f1419;
    }
    .um-hero__bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(5,174,81,.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124,58,237,.2) 0%, transparent 50%),
        linear-gradient(135deg, #1a2530 0%, #0f1419 100%);
    }
    .um-hero__overlay {
      position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 50%, rgba(5,174,81,.25), transparent 60%);
    }
    .um-hero__content { position: relative; padding: 48px; color: #fff; max-width: 640px; }
    .um-hero__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; background: rgba(5,174,81,.2);
      border: 1px solid var(--um-green); border-radius: 999px;
      font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    }
    .um-hero__eyebrow-dot { width: 6px; height: 6px; background: var(--um-green); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
    .um-hero__title {
      font-family: var(--t-headline);
      font-size: clamp(36px, 4.5vw, 56px);
      font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
      margin: 24px 0 16px;
    }
    .um-hero__title b { color: var(--um-green); }
    .um-hero__title em { font-style: normal; color: var(--um-orange); }
    .um-hero__sub { font-size: 16px; line-height: 1.5; opacity: .85; margin: 0 0 28px; }
    .um-hero__sub b { color: var(--um-green); font-weight: 700; }
    .um-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
    .um-hero__btn {
      display: inline-flex; align-items: center;
      padding: 14px 24px; border-radius: 10px;
      font-size: 14px; font-weight: 700; transition: all .2s;
    }
    .um-hero__btn--primary { background: var(--um-green); color: #fff; }
    .um-hero__btn--primary:hover { background: var(--um-green-d); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(5,174,81,.4); }
    .um-hero__btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
    .um-hero__btn--ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }
    .um-hero__stats { display: flex; gap: 32px; }
    .um-hero__stats div { display: flex; flex-direction: column; }
    .um-hero__stats b { font-family: var(--t-headline); font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--um-green); line-height: 1; }
    .um-hero__stats span { font-size: 11px; opacity: .7; margin-top: 4px; }

    .um-hero__side { display: flex; flex-direction: column; gap: 16px; }
    .um-hero__panel {
      padding: 28px 24px; border-radius: 18px;
      background: #fff; border: 1px solid var(--um-line); transition: all .2s;
    }
    .um-hero__panel:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,20,25,.08); }
    .um-hero__panel--b2b {
      background: linear-gradient(135deg, var(--um-purple) 0%, #a855f7 100%);
      color: #fff; border: 0;
    }
    .um-hero__panel-icon { font-size: 32px; margin-bottom: 12px; }
    .um-hero__panel-title { font-family: var(--t-headline); font-size: 19px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
    .um-hero__panel-text { font-size: 13px; line-height: 1.5; margin: 0 0 16px; opacity: .85; }
    .um-hero__panel-text b { font-weight: 700; opacity: 1; }
    .um-hero__panel-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700;
      padding: 8px 14px; background: rgba(255,255,255,.15); border-radius: 8px;
      transition: background .15s;
    }
    .um-hero__panel-link:hover { background: rgba(255,255,255,.25); }
    .um-hero__panel-link svg { width: 14px; height: 14px; }
    .um-hero__panel--b2b .um-hero__panel-link { background: #fff; color: var(--um-purple); }

    /* ========== CATEGORIES (8 групп) ========== */
    .um-cats { padding: 56px 0 40px; }
    .um-cats__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-cats__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
    .um-cats__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.025em; }
    .um-cats__sub { font-size: 13px; color: var(--um-muted); margin-top: 4px; }
    .um-cats__all { font-size: 13px; font-weight: 600; color: var(--um-muted); }
    .um-cats__all:hover { color: var(--um-ink); }
    .um-cats__grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .um-cats__tile {
      padding: 28px 24px; border-radius: 18px;
      background: var(--cat-bg); transition: all .2s;
      display: flex; flex-direction: column; gap: 12px;
      min-height: 200px; position: relative; overflow: hidden;
    }
    .um-cats__tile:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(15,20,25,.1); }
    .um-cats__tile-emoji {
      width: 64px; height: 64px;
      background: rgba(255,255,255,.7); border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 36px;
    }
    .um-cats__tile-info { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
    .um-cats__tile-info strong { font-family: var(--t-headline); font-size: 18px; font-weight: 800; letter-spacing: -.015em; }
    .um-cats__tile-info span { font-size: 12px; color: var(--um-muted); }
    .um-cats__tile-list {
      display: flex; flex-direction: column; gap: 2px;
      font-size: 12px; color: var(--um-muted); line-height: 1.4;
      margin-bottom: 4px;
    }
    .um-cats__tile-list b { font-weight: 600; color: var(--um-ink); margin-right: 4px; }
    .um-cats__tile-tag {
      position: absolute; top: 16px; right: 16px;
      padding: 4px 10px; background: var(--um-orange); color: #fff;
      border-radius: 8px; font-size: 11px; font-weight: 800;
    }

    /* ========== HITS ========== */
    .um-hits { padding: 40px 0; background: var(--um-surface); }
    .um-hits__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-hits__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
    .um-hits__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.025em; }
    .um-hits__sub { font-size: 13px; color: var(--um-muted); margin-top: 4px; }
    .um-hits__all { font-size: 13px; font-weight: 600; color: var(--um-muted); }
    .um-hits__grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    }
    .um-hit {
      background: #fff; border-radius: 14px; border: 1px solid var(--um-line);
      overflow: hidden; transition: all .2s; display: flex; flex-direction: column;
    }
    .um-hit:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,20,25,.08); }
    .um-hit__media {
      position: relative; aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .um-hit__media img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: contain; object-position: center;
    }
    .um-hit__emoji { font-size: 80px; }
    .um-hit__cat-tag {
      position: absolute; top: 10px; left: 10px;
      padding: 3px 8px; background: rgba(255,255,255,.92);
      color: var(--um-ink); border-radius: 6px;
      font-size: 10px; font-weight: 800; letter-spacing: .04em;
      backdrop-filter: blur(4px);
    }
    .um-hit__badge {
      position: absolute; top: 10px; right: 10px;
      padding: 3px 8px; background: var(--um-orange); color: #fff;
      border-radius: 6px; font-size: 10px; font-weight: 800;
    }
    .um-hit__fav {
      position: absolute; bottom: 10px; right: 10px;
      width: 32px; height: 32px; background: rgba(255,255,255,.95);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center; color: var(--um-muted);
    }
    .um-hit__fav svg { width: 14px; height: 14px; }
    .um-hit__body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
    .um-hit__brand { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--um-muted); }
    .um-hit__name { font-family: var(--t-headline); font-size: 13.5px; font-weight: 700; line-height: 1.3; }
    .um-hit__foot {
      display: flex; align-items: end; justify-content: space-between; gap: 8px;
      margin-top: auto; padding-top: 8px; border-top: 1px dashed var(--um-line);
    }
    .um-hit__prices b { font-family: var(--t-headline); font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
    .um-hit__prices span { font-size: 11px; color: var(--um-muted); text-decoration: line-through; display: block; }
    .um-hit__btn {
      padding: 7px 12px; background: var(--um-green); color: #fff;
      border-radius: 7px; font-size: 11px; font-weight: 700;
    }
    .um-hit__btn:hover { background: var(--um-green-d); }

    /* ========== PROMO BANNERS ========== */
    .um-promo { padding: 40px 0 56px; }
    .um-promo__inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
    }
    .um-promo__card {
      position: relative; border-radius: 18px; overflow: hidden;
      padding: 28px 24px; min-height: 240px;
      display: flex; flex-direction: column; justify-content: space-between;
      color: #fff; transition: all .2s;
    }
    .um-promo__card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(15,20,25,.15); }
    .um-promo__card--green { background: linear-gradient(135deg, #05ae51 0%, #048f43 100%); }
    .um-promo__card--orange { background: linear-gradient(135deg, #ff6b1f 0%, #c2410c 100%); }
    .um-promo__card--purple { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
    .um-promo__decor {
      position: absolute; right: -40px; top: -40px;
      width: 140px; height: 140px; border-radius: 50%;
      background: rgba(255,255,255,.12);
    }
    .um-promo__decor-2 {
      position: absolute; right: 20px; bottom: -50px;
      width: 100px; height: 100px; border-radius: 50%;
      background: rgba(255,255,255,.08);
    }
    .um-promo__lbl { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .85; margin-bottom: 6px; }
    .um-promo__title { font-family: var(--t-headline); font-size: 22px; font-weight: 800; letter-spacing: -.015em; line-height: 1.15; margin-bottom: 6px; position: relative; z-index: 1; }
    .um-promo__text { font-size: 12.5px; opacity: .9; position: relative; z-index: 1; }
    .um-promo__price {
      font-family: var(--t-headline); font-size: 32px; font-weight: 800;
      letter-spacing: -.025em; margin-top: 8px; position: relative; z-index: 1;
    }
    .um-promo__price small { font-size: 14px; opacity: .75; font-weight: 600; }
    .um-promo__btn {
      align-self: flex-start; margin-top: 12px;
      padding: 10px 18px; background: rgba(255,255,255,.2);
      color: #fff; border-radius: 8px;
      font-size: 12.5px; font-weight: 700;
      backdrop-filter: blur(8px);
      position: relative; z-index: 1;
    }
    .um-promo__btn:hover { background: rgba(255,255,255,.3); }

    /* ========== ADVANTAGES ========== */
    .um-adv { padding: 56px 0; background: var(--um-surface); }
    .um-adv__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-adv__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.025em; margin: 0 0 24px; }
    .um-adv__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .um-adv__item {
      padding: 24px; background: #fff;
      border-radius: 16px; border: 1px solid var(--um-line);
      transition: all .2s;
    }
    .um-adv__item:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(15,20,25,.06); }
    .um-adv__icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 14px;
    }
    .um-adv__item h3 { font-family: var(--t-headline); font-size: 16px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em; }
    .um-adv__item p { font-size: 13px; line-height: 1.5; color: var(--um-muted); margin: 0; }

    /* ========== BRANDS ========== */
    .um-brands { padding: 56px 0; }
    .um-brands__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-brands__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; margin: 0 0 6px; letter-spacing: -.025em; }
    .um-brands__sub { font-size: 13px; color: var(--um-muted); margin: 0 0 24px; }
    .um-brands__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
    .um-brands__logo {
      display: flex; align-items: center; justify-content: center;
      height: 76px; background: #fff;
      border: 1px solid var(--um-line); border-radius: 12px;
      font-family: var(--t-headline); font-size: 12px; font-weight: 800;
      letter-spacing: .04em; transition: all .2s;
    }
    .um-brands__logo:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,20,25,.08); }

    /* ========== REVIEWS ========== */
    .um-rev { padding: 56px 0; }
    .um-rev__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-rev__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
    .um-rev__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; }
    .um-rev__sub { font-size: 13px; color: var(--um-muted); margin-top: 4px; }
    .um-rev__all { font-size: 13px; font-weight: 600; color: var(--um-muted); }
    .um-rev__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .um-rev__card {
      padding: 24px; background: var(--um-surface);
      border-radius: 16px; border: 1px solid var(--um-line);
      display: flex; flex-direction: column; gap: 12px;
    }
    .um-rev__cat {
      align-self: flex-start; padding: 4px 10px;
      background: #fff; border-radius: 6px;
      font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
      color: var(--um-green);
    }
    .um-rev__stars { color: var(--um-orange); font-size: 16px; letter-spacing: 2px; }
    .um-rev__card h3 { font-family: var(--t-headline); font-size: 16px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
    .um-rev__card p { font-size: 13.5px; line-height: 1.5; color: #2a3340; margin: 0; }
    .um-rev__author { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px dashed var(--um-line); margin-top: auto; }
    .um-rev__avatar {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--um-purple), #a855f7);
      color: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 800; flex-shrink: 0;
    }
    .um-rev__author div { line-height: 1.3; }
    .um-rev__author strong { font-size: 13px; font-weight: 700; }
    .um-rev__author span { font-size: 11px; color: var(--um-muted); }

    /* ========== BLOG ========== */
    .um-blog { padding: 56px 0; background: var(--um-surface); }
    .um-blog__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-blog__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
    .um-blog__title { font-family: var(--t-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 800; }
    .um-blog__sub { font-size: 13px; color: var(--um-muted); margin-top: 4px; }
    .um-blog__all { font-size: 13px; font-weight: 600; color: var(--um-muted); }
    .um-blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .um-blog__card {
      position: relative; border-radius: 16px; overflow: hidden;
      min-height: 240px;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 20px; transition: all .2s;
    }
    .um-blog__card--big { grid-column: span 2; min-height: 280px; }
    .um-blog__card:hover { transform: translateY(-3px); }
    .um-blog__cat {
      align-self: flex-start;
      padding: 4px 10px; background: rgba(255,255,255,.85);
      border-radius: 6px; font-size: 10px; font-weight: 800;
      letter-spacing: .04em; text-transform: uppercase;
    }
    .um-blog__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
    }
    .um-blog__body { position: relative; color: #fff; }
    .um-blog__body h3 {
      font-family: var(--t-headline); font-size: 17px; font-weight: 800;
      margin: 0 0 6px; letter-spacing: -.01em; line-height: 1.3;
    }
    .um-blog__card--big .um-blog__body h3 { font-size: 22px; }
    .um-blog__body p { font-size: 12px; opacity: .8; margin: 0; }

    /* ========== FORM ========== */
    .um-form { padding: 56px 0; }
    .um-form__inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
    }
    .um-form__eyebrow {
      display: inline-block; padding: 4px 10px;
      background: var(--um-green-l); color: var(--um-green-d);
      border-radius: 6px; font-size: 11px; font-weight: 800;
      letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
    }
    .um-form__title {
      font-family: var(--t-headline);
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 800; letter-spacing: -.025em; line-height: 1.1;
      margin: 0 0 14px;
    }
    .um-form__sub { font-size: 15px; color: var(--um-muted); line-height: 1.6; margin: 0 0 24px; }
    .um-form__sub b { color: var(--um-green); font-weight: 700; }
    .um-form__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
    .um-form__list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
    .um-form__list span {
      width: 22px; height: 22px;
      background: var(--um-green); color: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; flex-shrink: 0;
    }
    .um-form__trust {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      padding-top: 20px; border-top: 1px dashed var(--um-line);
    }
    .um-form__trust div { display: flex; flex-direction: column; }
    .um-form__trust b { font-family: var(--t-headline); font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
    .um-form__trust span { font-size: 11px; color: var(--um-muted); margin-top: 2px; }
    .um-form__right {
      background: var(--um-ink); color: #fff;
      border-radius: 20px; padding: 32px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .um-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .um-form__field { display: flex; flex-direction: column; gap: 6px; }
    .um-form__field span { font-size: 12px; font-weight: 600; opacity: .7; }
    .um-form__field em { color: var(--um-green); font-style: normal; }
    .um-form__field input, .um-form__field textarea {
      padding: 12px 14px;
      background: rgba(255,255,255,.08);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: 10px; font-size: 14px; color: #fff; outline: none;
      font-family: inherit; transition: border-color .15s;
    }
    .um-form__field input:focus, .um-form__field textarea:focus { border-color: var(--um-green); }
    .um-form__field textarea { resize: vertical; min-height: 80px; }
    .um-form__chips { display: flex; gap: 6px; flex-wrap: wrap; }
    .um-form__chip { cursor: pointer; }
    .um-form__chip input { display: none; }
    .um-form__chip span {
      display: inline-flex; padding: 8px 12px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
      border-radius: 999px; font-size: 12px; font-weight: 600;
      transition: all .15s; opacity: 1;
    }
    .um-form__chip input:checked + span { background: var(--um-green); border-color: var(--um-green); }
    .um-form__btn {
      width: 100%; padding: 16px;
      background: var(--um-green); color: #fff;
      border-radius: 10px; font-size: 14px; font-weight: 700;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px; margin-top: 6px; transition: background .15s;
    }
    .um-form__btn:hover { background: var(--um-green-d); }
    .um-form__btn svg { width: 16px; height: 16px; }
    .um-form__agree {
      display: flex; align-items: center; gap: 8px;
      font-size: 11.5px; opacity: .7; cursor: pointer;
    }
    .um-form__agree input { accent-color: var(--um-green); }

    /* ========== FOOTER ========== */
    .um-footer { background: var(--um-ink); color: rgba(255,255,255,.7); }
    .um-footer__cta { background: linear-gradient(135deg, var(--um-green) 0%, var(--um-green-d) 100%); padding: 32px 0; }
    .um-footer__cta-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap; color: #fff;
    }
    .um-footer__cta h3 { font-family: var(--t-headline); font-size: 22px; font-weight: 800; margin: 0 0 4px; }
    .um-footer__cta p { font-size: 13px; opacity: .9; margin: 0; }
    .um-footer__cta-form { display: flex; gap: 8px; min-width: 360px; }
    .um-footer__cta-form input {
      flex: 1; padding: 12px 16px;
      background: rgba(255,255,255,.15);
      border: 1.5px solid rgba(255,255,255,.3);
      border-radius: 10px; color: #fff; font-size: 14px;
      outline: none; font-family: inherit;
    }
    .um-footer__cta-form input::placeholder { color: rgba(255,255,255,.6); }
    .um-footer__cta-form button { padding: 12px 24px; background: #fff; color: var(--um-green); border-radius: 10px; font-size: 13px; font-weight: 700; }
    .um-footer__main { padding: 56px 0 40px; }
    .um-footer__inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
    .um-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; }
    .um-footer__col h4 { font-family: var(--t-headline); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
    .um-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; }
    .um-footer__col a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .15s; }
    .um-footer__col a:hover { color: #fff; }
    .um-footer__col--brand .um-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .um-footer__logo-mark {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, #05ae51 0%, #048f43 100%);
      color: #fff; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--t-headline); font-size: 20px; font-weight: 800;
    }
    .um-footer__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .um-footer__logo-text strong { font-family: var(--t-headline); font-size: 16px; font-weight: 800; letter-spacing: .02em; color: #fff; }
    .um-footer__logo-text span { font-size: 10.5px; color: rgba(255,255,255,.5); }
    .um-footer__about { font-size: 13px; line-height: 1.5; margin: 0 0 20px; }
    .um-footer__social { display: flex; gap: 8px; }
    .um-footer__social a {
      width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 800;
    }
    .um-footer__social a:hover { background: rgba(255,255,255,.16); }
    .um-footer__phone { display: block; font-family: var(--t-headline); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; }
    .um-footer__phone--b2b { font-size: 14px; }
    .um-footer__phone--b2b span {
      display: inline-block; padding: 1px 6px;
      background: var(--um-purple); color: #fff;
      border-radius: 4px; font-size: 10px; margin-left: 6px;
    }
    .um-footer__mail { display: block; font-size: 13px; margin-bottom: 16px; }
    .um-footer__addr { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.5); }
    .um-footer__strip {
      padding: 24px 0;
      background: rgba(255,255,255,.03);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .um-footer__strip-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap;
    }
    .um-footer__strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
    .um-footer__strip-num { font-family: var(--t-headline); font-weight: 800; color: var(--um-green); }
    .um-footer__bottom { padding: 20px 0; }
    .um-footer__bottom-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 24px;
      display: flex; justify-content: space-between; gap: 16px;
      flex-wrap: wrap; font-size: 11.5px;
    }
    .um-footer__bottom-left { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
    .um-footer__bottom-left a:hover { color: #fff; }
    .um-footer__bottom-right { display: flex; gap: 12px; align-items: center; }
    .um-footer__top {
      padding: 8px 14px; background: rgba(255,255,255,.08);
      color: #fff; border-radius: 6px;
      font-size: 12px; font-weight: 600;
    }
    .um-footer__top:hover { background: rgba(255,255,255,.16); }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1100px) {
      .um-hero__inner, .um-form__inner { grid-template-columns: 1fr; }
      .um-cats__grid { grid-template-columns: repeat(2, 1fr); }
      .um-hits__grid { grid-template-columns: repeat(3, 1fr); }
      .um-promo__inner { grid-template-columns: 1fr; }
      .um-blog__grid { grid-template-columns: repeat(2, 1fr); }
      .um-blog__card--big { grid-column: span 2; }
      .um-brands__grid { grid-template-columns: repeat(4, 1fr); }
      .um-adv__grid { grid-template-columns: repeat(2, 1fr); }
      .um-rev__grid { grid-template-columns: repeat(2, 1fr); }
      .um-footer__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .um-header__inner { grid-template-columns: 1fr auto; gap: 12px; }
      .um-header__logo, .um-header__contacts, .um-header__catalog { display: none; }
      .um-header__search { height: 44px; }
      .um-header__search button span { display: none; }
      .um-header__actions .um-header__act span { display: none; }
      .um-cats__grid { grid-template-columns: 1fr; }
      .um-hits__grid { grid-template-columns: repeat(2, 1fr); }
      .um-blog__grid, .um-brands__grid, .um-adv__grid, .um-rev__grid { grid-template-columns: 1fr; }
      .um-blog__card--big { grid-column: span 1; }
      .um-form__row, .um-form__trust { grid-template-columns: 1fr; }
      .um-footer__cta-inner, .um-footer__cta-form { flex-direction: column; align-items: stretch; min-width: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    }
 

    /* ===== MEGA MENU (новый) ===== */
.um-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--um-line);
  box-shadow: 0 16px 40px rgba(15,20,25,.08);
  display: none;
  z-index: 99;
}
.um-mega.is-open { display: block; }
.um-mega__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 28px;
}
.um-mega__cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.um-mega__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--um-ink);
  transition: all .15s ease;
  border: 1px solid transparent;
}
.um-mega__cat:hover,
.um-mega__cat.is-active {
  background: var(--um-green-l);
  color: var(--um-green-d);
  border-color: rgba(5,174,81,.15);
}
.um-mega__cat-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--um-green);
  font-size: 20px;
}
.um-mega__cat-arrow {
  margin-left: auto;
  width: 14px;
  height: 14px;
  color: var(--um-muted);
  transition: transform .15s ease;
}
.um-mega__cat.is-active .um-mega__cat-arrow {
  color: var(--um-green);
  transform: translateX(2px);
}
.um-mega__subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  align-content: start;
}
.um-mega__sub-link {
  display: block;
  padding: 6px 0;
  color: var(--um-ink);
  text-decoration: none;
  font-size: 14px;
  transition: color .12s ease;
}
.um-mega__sub-link:hover { color: var(--um-green); }
.um-mega__empty {
  grid-column: 1 / -1;
  color: var(--um-muted);
  font-size: 14px;
}
.um-mega__banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* При необходимости добавьте промо-стили, как в старом CSS */