
  /* ─── MICROSOFT FLUENT TOKENS ────────────── */
  :root {
    color-scheme: only light;
    --ms-blue:        #0067B8;
    --ms-blue-hover:  #005DA6;
    --ms-blue-dark:   #004E8C;
    --ms-blue-tint:   #EFF6FC;
    --ms-blue-tint2:  #F3F9FD;
    --bg:             #FFFFFF;
    --bg-alt:         #FAF9F8;
    --bg-gray:        #F3F2F1;
    --card:           #FFFFFF;
    --border:         #E1DFDD;
    --border-strong:  #C8C6C4;
    --text:           #242424;
    --text-secondary: #484644;
    --text-muted:     #616161;
    --text-dim:       #8A8886;
    --green:          #107C10;
    --green-bg:       #DFF6DD;
    --win-red:        #F25022;
    --win-green:      #7FBA00;
    --win-blue:       #00A4EF;
    --win-yellow:     #FFB900;
    --radius:         8px;
    --radius-sm:      4px;
    --transition:     0.2s cubic-bezier(0.33,0,0.1,1);
    --shadow-sm:      0 1.6px 3.6px rgba(0,0,0,.10), 0 0.3px 0.9px rgba(0,0,0,.07);
    --shadow-md:      0 3.2px 7.2px rgba(0,0,0,.13), 0 0.6px 1.8px rgba(0,0,0,.10);
    --shadow-lg:      0 6.4px 14.4px rgba(0,0,0,.13), 0 1.2px 3.6px rgba(0,0,0,.10);
  }

  /* ─── RESET ──────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; background: #FFFFFF; }
  body {
    font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #FFFFFF;
    color: #242424;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  main { background: #FFFFFF; display: block; }

  ::-webkit-scrollbar { width: 12px; }
  ::-webkit-scrollbar-track { background: var(--bg-gray); }
  ::-webkit-scrollbar-thumb { background: var(--border-strong); border: 3px solid var(--bg-gray); border-radius: 6px; }

  /* ─── NAV ────────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 17px; font-weight: 600; letter-spacing: -0.2px;
    color: var(--text);
  }
  .nav-logo-icon { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 22px; height: 22px; }
  .nav-logo-icon span { border-radius: 1px; }
  .nav-logo-icon span:nth-child(1) { background: var(--win-red); }
  .nav-logo-icon span:nth-child(2) { background: var(--win-green); }
  .nav-logo-icon span:nth-child(3) { background: var(--win-blue); }
  .nav-logo-icon span:nth-child(4) { background: var(--win-yellow); }

  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a {
    font-size: 14px; color: var(--text-secondary); font-weight: 400;
    transition: color var(--transition);
    position: relative; padding: 4px 0;
  }
  .nav-links a:not(.nav-cta):hover { color: var(--ms-blue); }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--ms-blue); transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
  }
  .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav-links a.nav-cta {
    background: var(--ms-blue); color: #fff;
    padding: 9px 22px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600;
    transition: background var(--transition);
  }
  .nav-links a.nav-cta:hover { background: var(--ms-blue-hover); color: #fff; }
  .nav-links a.nav-cta::after { display: none; }

  /* ─── BURGER + MOBILE NAV ────────────────── */
  .nav-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 8px; background: none; border: none; cursor: pointer; flex-shrink: 0;
  }
  .nav-burger span {
    display: block; width: 22px; height: 2px; background: var(--text);
    border-radius: 2px; transition: transform 0.22s, opacity 0.22s;
  }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-mobile-panel {
    display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 98;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; flex-direction: column; gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-mobile-panel.open { display: flex; }
  .nav-mobile-link {
    display: block; padding: 13px 12px; font-size: 16px; font-weight: 500;
    color: var(--text); border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-link:last-child { border-bottom: none; }
  .nav-mobile-link:hover { background: var(--bg-alt); color: var(--ms-blue); }
  .nav-mobile-cta {
    margin-top: 10px; background: var(--ms-blue); color: #fff !important;
    text-align: center; font-weight: 600; border-radius: var(--radius-sm);
    border-bottom: none !important;
  }
  .nav-mobile-cta:hover { background: var(--ms-blue-hover) !important; }

  /* ─── HERO ───────────────────────────────── */
  .hero {
    position: relative; overflow: hidden;
    padding: 132px 32px 88px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .win-tile { position: absolute; border-radius: 8px; opacity: 0.10; }
  .win-tile-1 { width: 240px; height: 240px; background: var(--win-red);    top: -30px; right: 130px; transform: rotate(12deg); }
  .win-tile-2 { width: 240px; height: 240px; background: var(--win-green);  top: -30px; right: -60px; transform: rotate(12deg); }
  .win-tile-3 { width: 240px; height: 240px; background: var(--win-blue);   top: 170px; right: 130px; transform: rotate(12deg); }
  .win-tile-4 { width: 240px; height: 240px; background: var(--win-yellow); top: 170px; right: -60px; transform: rotate(12deg); }
  .hero-glow { display: none; }

  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ms-blue-tint);
    color: var(--ms-blue-dark);
    padding: 6px 14px; border-radius: 4px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
    text-transform: uppercase; margin-bottom: 22px;
  }
  .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(.8);} }

  .hero h1 {
    font-size: clamp(38px, 5.2vw, 60px);
    font-weight: 600; line-height: 1.08; letter-spacing: -1.5px;
    margin-bottom: 22px; color: var(--text);
  }
  .hero h1 em { font-style: normal; color: var(--ms-blue); }
  .hero-desc { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 34px; max-width: 480px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ms-blue); color: #fff;
    padding: 13px 30px; border-radius: var(--radius-sm);
    font-size: 15px; font-weight: 600;
    transition: background var(--transition); border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--ms-blue-hover); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg); color: var(--text);
    padding: 13px 26px; border-radius: var(--radius-sm);
    font-size: 15px; font-weight: 600;
    border: 1px solid var(--border-strong);
    transition: all var(--transition); cursor: pointer;
  }
  .btn-ghost:hover { background: var(--bg-gray); border-color: var(--text-dim); }

  .hero-stats { display: flex; gap: 36px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border); }
  .stat-num { font-size: 28px; font-weight: 600; letter-spacing: -0.5px; color: var(--text); }
  .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

  /* HERO CARD */
  .hero-card-wrap { position: relative; }
  .hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--win-red), var(--win-yellow), var(--win-green), var(--win-blue));
  }
  .product-icon-lg { width: 56px; height: 56px; margin-bottom: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .product-icon-lg span { border-radius: 2px; }
  .product-icon-lg span:nth-child(1) { background: var(--win-red); }
  .product-icon-lg span:nth-child(2) { background: var(--win-green); }
  .product-icon-lg span:nth-child(3) { background: var(--win-blue); }
  .product-icon-lg span:nth-child(4) { background: var(--win-yellow); }

  .hero-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
  .hero-card-price { font-size: 34px; font-weight: 700; letter-spacing: -1px; color: var(--text); margin: 18px 0 8px; }
  .hero-card-price sup { font-size: 16px; font-weight: 600; vertical-align: top; margin-top: 8px; }
  .hero-card-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
  .old-price { display: inline-block; color: var(--text-dim); font-size: 14px; text-decoration: line-through; margin-bottom: 18px; }
  .discount-tag {
    display: inline-block; background: var(--green-bg); color: var(--green);
    padding: 2px 8px; border-radius: 3px; font-size: 12px; font-weight: 700; margin-left: 8px;
  }
  .card-features { list-style: none; margin: 18px 0 22px; }
  .card-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); padding: 6px 0; }
  .card-features li::before {
    content: ''; width: 20px; height: 20px; flex-shrink: 0;
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
    border-radius: 50%;
  }
  .card-buy-btn {
    width: 100%; padding: 13px; background: var(--ms-blue); color: #fff;
    border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer;
    transition: background var(--transition);
  }
  .card-buy-btn:hover { background: var(--ms-blue-hover); }

  .hero-float-tag {
    position: absolute; top: -16px; right: 18px; z-index: 5;
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--ms-blue); color: #fff;
    padding: 9px 18px; border-radius: 4px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
    box-shadow: var(--shadow-md); white-space: nowrap;
  }
  .hero-float-tag svg { width: 16px; height: 16px; }

  /* ─── TRUST BAR ──────────────────────────── */
  .trust-bar { border-bottom: 1px solid var(--border); padding: 22px 32px; background: var(--bg); }
  .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-secondary); }
  .trust-icon { display: inline-flex; color: var(--ms-blue); }
  .trust-icon svg { width: 24px; height: 24px; }

  /* ─── SECTION ────────────────────────────── */
  .section { padding: 84px 32px; background: var(--bg); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label { display: inline-block; color: var(--ms-blue); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; color: var(--text); }
  .section-sub { font-size: 17px; color: var(--text-muted); max-width: 540px; line-height: 1.6; margin-bottom: 52px; }

  /* ─── PRODUCTS ───────────────────────────── */
  .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(290px,100%),1fr)); gap: 24px; }
  .product-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; position: relative; overflow: hidden; isolation: isolate;
    box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ms-blue); }
  .product-card.featured { border-color: var(--ms-blue); background: var(--ms-blue-tint2); }
  .product-card.featured::after {
    content: 'ТОП ПРОДАЖ'; position: absolute; top: 20px; right: -45px; width: 160px; text-align: center;
    background: var(--ms-blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 5px 0; transform: rotate(45deg); box-shadow: var(--shadow-sm);
  }
  .product-accent-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
  .product-icon { width: 44px; height: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 18px; }
  .product-icon span { border-radius: 2px; }
  .product-icon span:nth-child(1) { background: var(--win-red); }
  .product-icon span:nth-child(2) { background: var(--win-green); }
  .product-icon span:nth-child(3) { background: var(--win-blue); }
  .product-icon span:nth-child(4) { background: var(--win-yellow); }
  .icon-office span { background: #D83B01 !important; }
  .icon-office span:nth-child(4) { opacity: .5; }
  .icon-server span { background: var(--ms-blue) !important; }
  .icon-server span:nth-child(2) { opacity: .6; }
  .icon-server span:nth-child(3) { opacity: .4; }
  .icon-server span:nth-child(4) { opacity: .25; }

  .product-name { font-size: 18px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
  .product-version { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
  .product-price { font-size: 30px; font-weight: 700; letter-spacing: -0.8px; margin-bottom: 4px; color: var(--text); }
  .product-price-old { font-size: 14px; color: var(--text-dim); text-decoration: line-through; margin-bottom: 16px; }
  .product-delivery { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); margin-bottom: 18px; font-weight: 600; }
  .product-delivery svg { display: inline-block; }
  .product-buy {
    width: 100%; padding: 12px; background: var(--ms-blue); color: #fff; border: none;
    border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer;
    transition: background var(--transition);
  }
  .product-buy:hover { background: var(--ms-blue-hover); }

  /* ─── HOW IT WORKS ───────────────────────── */
  .how-section { background: var(--bg-alt); }
  .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .step {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 28px; position: relative; box-shadow: var(--shadow-sm); transition: all var(--transition);
  }
  .step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .step:not(:last-child)::after {
    content: ''; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 1;
    width: 22px; height: 22px;
    background: var(--ms-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h13M13 6l6 6-6 6' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/15px no-repeat;
    border-radius: 50%; box-shadow: var(--shadow-sm);
  }
  .step-num { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--ms-blue); text-transform: uppercase; margin-bottom: 18px; }
  .step-icon {
    width: 56px; height: 56px; border-radius: 10px; margin-bottom: 18px;
    background: var(--ms-blue-tint); color: var(--ms-blue);
    display: flex; align-items: center; justify-content: center;
  }
  .step-icon svg { width: 30px; height: 30px; }
  .step h4 { font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
  .step p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

  /* ─── ADVANTAGES ─────────────────────────── */
  .adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .adv-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow-sm); transition: all var(--transition);
  }
  .adv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--ms-blue); }
  .adv-icon {
    width: 64px; height: 64px; border-radius: 12px;
    background: var(--ms-blue-tint); color: var(--ms-blue);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .adv-icon svg { width: 34px; height: 34px; }
  .adv-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
  .adv-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

  /* ─── REVIEWS CAROUSEL ───────────────────── */
  .reviews-carousel { position: relative; }
  .carousel-track-wrap { overflow: hidden; }
  .carousel-track {
    display: flex; gap: 24px;
    transition: transform 0.42s cubic-bezier(0.25,0,0.1,1);
    will-change: transform;
  }
  .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
  }
  .review-stars { color: var(--win-yellow); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex: 1; }
  .review-author {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; text-align: center;
  }
  .review-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--ms-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
    overflow: hidden; border: 2px solid var(--border);
  }
  .review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .review-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .review-date { font-size: 12px; color: var(--text-dim); }
  .review-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 600; }
  .carousel-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-top: 32px;
  }
  .carousel-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--card);
    cursor: pointer; color: var(--text); font-size: 18px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); box-shadow: var(--shadow-sm);
  }
  .carousel-btn:hover:not(:disabled) { background: var(--ms-blue); color: #fff; border-color: var(--ms-blue); box-shadow: var(--shadow-md); }
  .carousel-btn:disabled { opacity: 0.3; cursor: default; }
  .carousel-counter { font-size: 13px; color: var(--text-muted); min-width: 44px; text-align: center; }
  @media (max-width: 1024px) {
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  }
  @media (max-width: 640px) {
    .review-card { flex: 0 0 100%; padding: 22px 18px; }
    .carousel-controls { margin-top: 20px; }
  }

  /* ─── FAQ ────────────────────────────────── */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; align-items: start; }
  .faq-col { min-width: 0; }
  .faq-col:nth-child(2) { margin-top: 24px; }
  .faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; background: var(--card); }
  .faq-q {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
    padding: 18px 22px; cursor: pointer; font-size: 16px; font-weight: 600;
    color: var(--text); transition: background var(--transition); line-height: 1.4;
  }
  .faq-q:hover { background: var(--bg-alt); }
  .faq-q-inner { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
  .faq-q-icon {
    width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0; margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
  }
  .faq-q-icon svg { width: 16px; height: 16px; }
  .faq-q-text { flex: 1; }
  .faq-tag {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
    text-transform: uppercase; padding: 2px 7px; border-radius: 3px;
    margin-bottom: 5px;
  }
  .tag-license  { background: var(--ms-blue-tint);  color: var(--ms-blue-dark); }
  .tag-delivery { background: #FFF4E5; color: #C55A11; }
  .tag-activate { background: var(--green-bg);      color: var(--green); }
  .tag-buy      { background: #F3F0FF;               color: #5B21B6; }
  .tag-guarantee{ background: #FFF0F0;               color: #C50F1F; }
  .faq-q::after { content: '+'; font-size: 22px; color: var(--ms-blue); font-weight: 400; flex-shrink: 0; margin-top: 2px; }
  .faq-a { display: none; padding: 0 22px 20px 66px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
  .faq-item.open { border-color: var(--ms-blue); }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-q { background: var(--ms-blue-tint2); }
  .faq-item.open .faq-q .faq-q-text { color: var(--ms-blue); }
  .faq-item.open .faq-q::after { content: '−'; }

  /* ─── HELP / MESSENGERS ──────────────────── */
  .help-section { padding-top: 40px; padding-bottom: 40px; }
  .help-box {
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start;
  }
  .help-text { font-size: 16px; color: var(--text-muted); line-height: 1.6; max-width: 420px; margin-bottom: 24px; }
  .help-box .section-title { margin-bottom: 14px; font-size: clamp(26px,3vw,34px); }
  .help-features-block {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px;
  }
  .help-feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--ms-blue);
    border-radius: 12px;
    padding: 26px 22px 22px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
  }
  .help-feature-card:nth-child(4) { border-top-color: var(--green); }
  .help-feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .help-feature-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    background: var(--ms-blue-tint); color: var(--ms-blue);
    display: flex; align-items: center; justify-content: center;
  }
  .help-feature-icon svg { width: 25px; height: 25px; }
  .help-feature-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; line-height: 1.35; }
  .help-feature-card span { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
  .help-right { display: flex; flex-direction: column; gap: 14px; }
  .messenger-btn {
    display: flex; align-items: center; gap: 14px; background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
  }
  .messenger-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .messenger-tg:hover { border-color: #29A9EB; }
  .messenger-max:hover { border-color: #7B61FF; }
  .messenger-label { font-size: 15px; font-weight: 600; color: var(--text); }
  .messenger-handle { font-size: 13px; color: var(--text-muted); }
  .messenger-arrow { margin-left: auto; color: var(--text-dim); font-size: 18px; transition: transform var(--transition); }
  .messenger-btn:hover .messenger-arrow { transform: translateX(4px); color: var(--ms-blue); }

  /* ─── GUARANTEE ─────────────────────────── */
  .guarantee-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
  .guarantee-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow-sm); transition: all var(--transition);
  }
  .guarantee-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--ms-blue); }
  .guarantee-icon {
    width: 60px; height: 60px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  }
  .guarantee-icon svg { width: 30px; height: 30px; }
  .guarantee-badge {
    display: inline-flex; align-items: center;
    padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700;
    margin-bottom: 12px;
  }
  .badge-green { background: var(--green-bg); color: var(--green); }
  .badge-blue  { background: var(--ms-blue-tint); color: var(--ms-blue-dark); }
  .badge-orange{ background: #FFF4E5; color: #C55A11; }
  .guarantee-card h4 { font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
  .guarantee-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
  .guarantee-card a  { color: var(--ms-blue); text-decoration: underline; }

  /* ─── CTA BANNER ─────────────────────────── */
  .cta-section { padding: 80px 32px; background: var(--bg); }
  .cta-inner {
    max-width: 1200px; margin: 0 auto; background: var(--ms-blue);
    border-radius: var(--radius); padding: 64px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--win-red), var(--win-yellow), var(--win-green), var(--win-blue)); }
  .cta-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 600; margin-bottom: 16px; letter-spacing: -0.8px; color: #fff; }
  .cta-inner p { font-size: 17px; color: rgba(255,255,255,.9); margin-bottom: 32px; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-buttons .btn-primary { background: #fff; color: var(--ms-blue); }
  .cta-buttons .btn-primary:hover { background: var(--bg-gray); }
  .cta-buttons .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
  .cta-buttons .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

  /* ─── FOOTER ─────────────────────────────── */
  footer { border-top: 1px solid var(--border); padding: 52px 32px; background: var(--bg-gray); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; margin-bottom: 12px; color: var(--text); }
  .footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
  .footer-col h5 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; transition: color var(--transition); }
  .footer-col a:hover { color: var(--ms-blue); text-decoration: underline; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 0; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-legal { font-size: 12px; color: var(--text-dim); line-height: 1.6; padding-top: 24px; border-top: 1px solid var(--border); margin-bottom: 16px; }
  .footer-bottom-links a { color: var(--text-muted); transition: color var(--transition); }
  .footer-bottom-links a:hover { color: var(--ms-blue); text-decoration: underline; }

  /* ─── RESPONSIVE ─────────────────────────── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-card-wrap { max-width: 440px; width: 100%; }
    .steps { grid-template-columns: repeat(2,1fr); }
    .step:nth-child(2)::after { display: none; }
    .adv-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  }
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero { padding: 100px 20px 60px; }
    .win-tile { width: 140px; height: 140px; }
    .win-tile-3, .win-tile-4 { top: 100px; }
    .section { padding: 56px 20px; }
    .section-sub { max-width: 100%; margin-bottom: 36px; }
    .trust-bar { padding: 18px 20px; }
    .trust-bar-inner { gap: 12px 20px; justify-content: center; }
    .trust-item { font-size: 13px; }
    .steps { grid-template-columns: 1fr; }
    .step { padding: 26px 22px; }
    .step::after { display: none; }
    .adv-grid { grid-template-columns: 1fr; }
    .adv-card { padding: 24px 20px; }
    .review-card { flex: 0 0 100%; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-inner { padding: 44px 24px; }
    .help-box { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
    .help-features-block { grid-template-columns: 1fr 1fr; }
    .help-feature-card { padding: 20px 16px 18px; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .guarantee-card { padding: 24px 20px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-col:nth-child(2) { margin-top: 0; }
    .faq-a { padding: 0 16px 18px 16px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
    footer { padding: 40px 20px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 10px 16px; }
  }
  @media (max-width: 480px) {
    .nav { padding: 0 16px; }
    .hero { padding: 88px 16px 44px; }
    .section { padding: 44px 16px; }
    .trust-bar { padding: 14px 16px; }
    .trust-item { font-size: 12px; }
    .trust-icon svg { width: 20px; height: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .hero-stats { justify-content: space-around; }
    .stat-num { font-size: 22px; }
    .hero-card { padding: 22px 18px; }
    .hero-card-price { font-size: 28px; }
    .hero-float-tag { right: 10px; font-size: 12px; padding: 7px 14px; }
    .product-card { padding: 20px 18px; }
    .product-price { font-size: 26px; }
    .step { padding: 22px 18px; }
    .step-icon { width: 48px; height: 48px; }
    .adv-card { padding: 22px 18px; }
    .adv-icon { width: 52px; height: 52px; }
    .faq-q { padding: 14px 16px; font-size: 15px; }
    .faq-q-icon { width: 28px; height: 28px; }
    .faq-a { padding: 0 14px 16px 14px; font-size: 14px; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 8px 14px; }
    .messenger-btn { padding: 14px 16px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn-primary, .cta-buttons .btn-ghost { width: 100%; justify-content: center; }
    .cta-inner { padding: 32px 18px; }
    .help-features-block { grid-template-columns: 1fr; }
    .help-feature-card { gap: 12px; padding: 18px 16px; }
    .guarantee-card { padding: 20px 16px; }
    .guarantee-icon { width: 48px; height: 48px; }
    .support-float { bottom: 78px; right: 20px; }
    #scrollTopBtn { bottom: 20px; right: 20px; }
    .support-popup { width: calc(100vw - 40px); right: 0; }
  }

  /* ─── PRIVACY MODAL ─────────────────────── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.45); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal-box {
    background: var(--bg); border-radius: var(--radius);
    max-width: 780px; width: 100%; max-height: 88vh;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    transform: translateY(18px); transition: transform 0.2s ease;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
  }
  .modal-header h2 { font-size: 19px; font-weight: 600; color: var(--text); }
  .modal-close {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg);
    cursor: pointer; font-size: 18px; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); flex-shrink: 0; line-height: 1;
  }
  .modal-close:hover { background: var(--bg-gray); color: var(--text); border-color: var(--border-strong); }
  .modal-body {
    overflow-y: auto; padding: 24px 28px;
    font-size: 14px; color: var(--text-secondary); line-height: 1.75;
  }
  .modal-body h3 {
    font-size: 14px; font-weight: 700; color: var(--text);
    margin: 22px 0 8px; text-transform: uppercase; letter-spacing: 0.3px;
  }
  .modal-body h3:first-child { margin-top: 0; }
  .modal-body p { margin-bottom: 10px; }
  .modal-body ul { padding-left: 22px; margin-bottom: 10px; }
  .modal-body ul li { margin-bottom: 5px; }
  .modal-date { font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }
  .modal-requisites {
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 20px;
    font-size: 13px;
  }
  .modal-requisites p { margin-bottom: 4px; }
  @media (max-width: 480px) {
    .modal-header { padding: 16px 18px; }
    .modal-body { padding: 18px; }
  }

  /* ─── ANIMATIONS ─────────────────────────── */
  @media (prefers-reduced-motion: no-preference) {
    .hero-left > * { animation: fadeUp 0.6s ease both; }
    .hero-left > *:nth-child(1) { animation-delay: .05s; }
    .hero-left > *:nth-child(2) { animation-delay: .12s; }
    .hero-left > *:nth-child(3) { animation-delay: .19s; }
    .hero-left > *:nth-child(4) { animation-delay: .26s; }
    .hero-left > *:nth-child(5) { animation-delay: .33s; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }
    .hero-card-wrap { animation: fadeIn 0.7s .25s ease both; }
    @keyframes fadeIn { from { opacity: 0; transform: scale(.98);} to { opacity: 1; transform: scale(1);} }
  }

  /* ===== SUPPORT FLOAT ===== */
  .support-float { position: fixed; bottom: 84px; right: 28px; z-index: 900; }
  .support-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--ms-blue); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background var(--transition), transform var(--transition);
  }
  .support-btn:hover { background: var(--ms-blue-dark); transform: scale(1.08); }
  .support-btn svg { width: 22px; height: 22px; }
  .support-popup {
    position: absolute; bottom: 56px; right: 0;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow-lg); padding: 18px 18px 14px; width: 272px;
    opacity: 0; transform: translateY(8px) scale(0.97); transform-origin: bottom right;
    pointer-events: none; transition: opacity 0.2s, transform 0.2s;
  }
  .support-popup.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .support-popup-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
  .support-popup-title { font-size: 15px; font-weight: 700; color: var(--text); }
  .support-popup-close {
    width: 26px; height: 26px; border-radius: 50%; border: none;
    background: var(--bg-gray); cursor: pointer; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background var(--transition);
  }
  .support-popup-close:hover { background: var(--border); }
  .support-popup-close svg { width: 14px; height: 14px; }
  .support-popup-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
  .support-popup-link {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    border-radius: 10px; color: var(--text); transition: background var(--transition);
    margin-bottom: 6px;
  }
  .support-popup-link:last-child { margin-bottom: 0; }
  .support-popup-link:hover { background: var(--bg-alt); }
  .support-link-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .support-link-tg .support-link-icon { background: #E1F3FF; color: #0088CC; }
  .support-link-max .support-link-icon { background: #F0EDFF; color: #5B21B6; }
  .support-link-icon svg { width: 20px; height: 20px; }
  .support-popup-link strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
  .support-popup-link em { font-style: normal; font-size: 12px; color: var(--text-muted); }

  /* ===== SCROLL TO TOP ===== */
  #scrollTopBtn {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--ms-blue); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }
  #scrollTopBtn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  #scrollTopBtn:hover { background: var(--ms-blue-dark); }
  #scrollTopBtn svg { width: 20px; height: 20px; }


/* ─── MULTIPAGE SEO LAYOUT: добавлено без изменения визуального стиля ─── */
.breadcrumbs { max-width: 1180px; margin: 0 auto; padding: 22px 32px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumbs a { color: var(--ms-blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.page-hero { padding: 74px 32px 58px; background: linear-gradient(180deg, var(--ms-blue-tint2) 0%, var(--bg) 100%); position: relative; overflow: hidden; }
.page-hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -1.6px; margin: 12px 0 18px; color: var(--text); }
.page-hero p { font-size: 18px; line-height: 1.6; color: var(--text-muted); max-width: 760px; }
.page-hero-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.page-hero-card .product-price { margin-top: 10px; }
.page-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:24px; }
.page-label { display:inline-flex; align-items:center; gap:8px; padding:7px 12px; border:1px solid var(--border); border-radius:999px; background:#fff; font-size:13px; font-weight:600; color:var(--ms-blue); }
.seo-text { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); color: var(--text-muted); line-height: 1.75; font-size: 16px; }
.seo-text h2, .seo-text h3 { color: var(--text); margin: 22px 0 10px; }
.seo-text h2:first-child, .seo-text h3:first-child { margin-top: 0; }
.seo-text p { margin-bottom: 12px; }
.seo-text ul { padding-left: 22px; margin-bottom: 14px; }
.seo-text li { margin-bottom: 7px; }
.seo-text a { color: var(--ms-blue); text-decoration: none; font-weight: 600; }
.seo-text a:hover { text-decoration: underline; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--ms-blue); }
.product-card .details-link { display:block; text-align:center; margin-top:10px; color:var(--ms-blue); font-size:14px; font-weight:600; text-decoration:none; }
.product-card .details-link:hover { text-decoration: underline; }
.filter-panel { display:flex; flex-wrap:wrap; gap:10px; margin: 0 0 28px; }
.filter-panel button, .filter-panel a { border:1px solid var(--border); background:var(--card); color:var(--text); border-radius:999px; padding:10px 16px; font-weight:600; cursor:pointer; text-decoration:none; transition:all var(--transition); }
.filter-panel button:hover, .filter-panel a:hover, .filter-panel .active { border-color:var(--ms-blue); color:var(--ms-blue); background:var(--ms-blue-tint2); }
.info-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.info-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-sm); }
.info-card h3 { font-size:20px; margin-bottom:12px; color:var(--text); }
.info-card p, .info-card li { color:var(--text-muted); line-height:1.65; }
.info-card ul { padding-left:20px; }
.specs-table { width:100%; border-collapse:collapse; background:var(--card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.specs-table th, .specs-table td { padding:16px 18px; border-bottom:1px solid var(--border); text-align:left; vertical-align:top; }
.specs-table th { width:34%; color:var(--text); background:var(--bg-alt); font-weight:600; }
.specs-table td { color:var(--text-muted); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom:none; }
.related-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.sticky-buy-bar { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 70; display:flex; align-items:center; gap:14px; background:rgba(255,255,255,.96); border:1px solid var(--border); border-radius:999px; padding:10px 12px 10px 18px; box-shadow:var(--shadow-lg); backdrop-filter: blur(12px); }
.sticky-buy-bar strong { white-space:nowrap; color:var(--text); }
.sticky-buy-bar .product-buy, .sticky-buy { width:auto; min-width:160px; padding:11px 18px; }
.blog-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.blog-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow-sm); text-decoration:none; color:inherit; transition:all var(--transition); }
.blog-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--ms-blue); }
.blog-card h3 { color:var(--text); margin-bottom:10px; }
.blog-card p { color:var(--text-muted); line-height:1.55; }
.review-page-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:24px; }
.legal-page .modal-body { background:var(--card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-sm); }
.notice-box { background:var(--ms-blue-tint2); border:1px solid rgba(0,103,184,.18); border-radius:var(--radius); padding:18px 20px; color:var(--text); margin:18px 0; }
.nav-links { gap: 16px; }
.nav-links a { font-size: 13px; }
.nav-links a.nav-cta { padding: 9px 16px; }
@media (max-width: 1180px) { .nav-links { display: none; } .nav-burger { display: flex; } }
@media (max-width: 980px) { .page-hero-inner, .info-grid, .info-grid.two, .related-grid, .blog-grid, .review-page-grid { grid-template-columns:1fr; } .page-hero { padding-top:48px; } }
@media (max-width: 640px) { .breadcrumbs { padding-left:20px; padding-right:20px; } .page-hero { padding:38px 20px 42px; } .section { padding-left:20px; padding-right:20px; } .seo-text, .legal-page .modal-body { padding:22px; } .sticky-buy-bar { left:12px; right:12px; transform:none; justify-content:space-between; border-radius:18px; } .sticky-buy-bar .product-buy, .sticky-buy { min-width:130px; } }


/* SEO/CONVERSION ADDITIONS */
.catalog-advanced-filters {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 26px;
  padding: 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-alt);
}
.catalog-advanced-filters label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.catalog-advanced-filters select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 10px; background: #fff; color: var(--text); font: inherit; }
.seo-category-grid { margin-top: 12px; }
.conversion-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.conversion-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.conversion-card h3 { margin: 0 0 10px; font-size: 17px; }
.conversion-card ul { margin: 0; padding-left: 18px; color: var(--text-secondary); }
.conversion-card li + li { margin-top: 6px; }
.conversion-card p { color: var(--text-secondary); }
.inline-seo-links { padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--ms-blue-tint); color: var(--text-secondary); }
.inline-seo-links a { color: var(--ms-blue); font-weight: 600; }
@media (max-width: 900px) {
  .conversion-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .conversion-grid { grid-template-columns: 1fr; }
  .catalog-advanced-filters { display: grid; grid-template-columns: 1fr; }
}

.filter-group-label { font-size: 13px; font-weight: 700; color: var(--text-dim); align-self: center; margin-right: 4px; }
@media (max-width: 768px){ .filter-group-label { width: 100%; margin-bottom: 2px; } }

/* FINAL MOBILE FIXES */
html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 640px) {
  .support-float { bottom: 86px; right: 16px; }
  #scrollTopBtn { bottom: 24px; right: 16px; }
  .support-popup { width: min(300px, calc(100vw - 32px)); right: 0; }
  .sticky-buy-bar { bottom: 16px; }
}
