
  :root {
    --white: #FFFFFF;
    --green: #38AD4E;
    --green-hover: #2E9341;
    --green-light: #4DBE63;
    --green-dark: #237D38;
    --green-50: #F4FAF3;
    --green-100: #E5F1E3;
    --green-200: #C9E5C3;
    --green-600: #2E9341;

    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50:  #F8FAFC;

    --amber-500: #F59E0B;
    --amber-400: #FBBF24;
    --amber-50: #FFFBEB;

    --red-500: #EF4444;
    --red-600: #DC2626;
    --red-50:  #FEF2F2;

    --blue-500: #3B82F6;
    --blue-50:  #EFF6FF;

    --shadow-sm: 0 1px 2px 0 rgba(15,23,42,.05);
    --shadow-md: 0 4px 16px -4px rgba(15,23,42,.08);
    --shadow-lg: 0 12px 40px -8px rgba(15,23,42,.18), 0 0 0 1px rgba(15,23,42,.05);
    --shadow-cta: 0 4px 14px -2px rgba(56,173,78,.30);
    --shadow-card: 0 1px 3px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.03);
    --shadow-card-hover: 0 8px 28px -8px rgba(15,23,42,.12), 0 2px 6px rgba(15,23,42,.04);

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;

    --ease: cubic-bezier(.4,0,.2,1);
    --ease-out: cubic-bezier(.16,1,.3,1);

    --mobile-row1: 60px;
    --mobile-row2: 56px;
    --shadow-drawer: -20px 0 60px -10px rgba(15,23,42,.20);
    --shadow-bottom-sheet: 0 -20px 60px -10px rgba(15,23,42,.25);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html, body {
    font-family: 'FiraGO', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate-900);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  img { display: block; max-width: 100%; }

  .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

  /* ================================================================
     HEADER (same as company page)
     ================================================================ */
  .site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
  }
  .utility-bar {
    background: var(--green-50);
    border-bottom: 1px solid var(--green-100);
    font-size: var(--fs-base); color: var(--slate-600);
  }
  .utility-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; gap: 24px; }
  .util-group { display: flex; align-items: center; gap: 18px; }
  .util-item { display: inline-flex; align-items: center; gap: 6px; transition: color .15s var(--ease); }
  .util-item:hover { color: var(--green-600); }
  .util-item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .7; }
  .util-divider { width: 1px; height: 14px; background: var(--green-200); }
  .main-header-inner { display: flex; align-items: center; height: 72px; gap: 32px; }
  .logo img { height: 38px; }
  .main-nav { display: flex; align-self: stretch; align-items: stretch; }
  .nav-item { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 0 14px; font-size: var(--fs-base); font-weight: 500; color: var(--slate-700); transition: color .15s var(--ease); }
  .nav-item:hover { color: var(--green-600); }
  .nav-item.is-active { color: var(--slate-900); font-weight: 600; }
  .nav-item.is-active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px; background: var(--green); border-radius: 2px 2px 0 0; }
  .nav-item .chevron { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.2; opacity: .55; }
  .header-search { flex: 1; max-width: 360px; margin-left: auto; }
  .search-wrap { position: relative; }
  .search-wrap input { width: 100%; height: 40px; padding: 0 70px 0 40px; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); background: var(--slate-50); font-family: inherit; font-size: var(--fs-base); color: var(--slate-900); transition: all .15s var(--ease); }
  .search-wrap input::placeholder { color: var(--slate-400); }
  .search-wrap input:focus { outline: none; background: var(--white); border-color: var(--green); box-shadow: 0 0 0 3px rgba(56,173,78,.15); }
  .search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--slate-400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .search-kbd { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: var(--fs-xs); font-weight: 600; color: var(--slate-500); background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-xs); padding: 3px 6px; pointer-events: none; line-height: 1; }
  .header-actions { display: flex; align-items: center; gap: 6px; }
  .icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: none; background: transparent; border-radius: var(--radius-sm); color: var(--slate-600); position: relative; transition: all .15s var(--ease); }
  .icon-btn:hover { background: var(--slate-100); color: var(--slate-900); }
  .icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .notif-dot { position: absolute; top: 9px; right: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); border: 2px solid var(--white); }
  .lang-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 0 10px; height: 40px; background: transparent; border: none; border-radius: var(--radius-sm); font-size: var(--fs-base); font-weight: 500; color: var(--slate-600); transition: all .15s var(--ease); }
  .lang-toggle:hover { background: var(--slate-100); color: var(--slate-900); }
  .flag { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(15,23,42,.06); }
  .chevron-sm { width: 12px; height: 12px; stroke-width: 2.2; opacity: .7; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .cta-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); font-size: var(--fs-base); font-weight: 600; height: 40px; padding: 0 16px; border: none; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: all .15s var(--ease); }
  .cta-primary:hover { background: var(--green-hover); box-shadow: var(--shadow-cta); }
  .cta-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .avatar-btn { margin-left: 4px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px 4px 4px; border: 1px solid var(--slate-200); background: var(--white); border-radius: 999px; transition: all .15s var(--ease); }
  .avatar-btn:hover { border-color: var(--slate-300); box-shadow: var(--shadow-sm); }
  .avatar-img { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; background: var(--slate-900); }
  .avatar-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ================================================================
     PAGE HERO — title strip
     ================================================================ */
  .page-hero {
    margin-top: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 28px 32px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 360px; height: 360px;
    background-image: url('https://fairbusiness.mpulse.ge/wp-content/uploads/2024/11/Icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .07;
    pointer-events: none;
    transform: rotate(-12deg);
  }
  .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 200px at 100% 0%, var(--green-50), transparent 70%);
    pointer-events: none;
  }
  .page-hero-content { position: relative; z-index: 1; }

  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fs-base); color: var(--slate-500);
    margin-bottom: 14px;
  }
  .breadcrumb a { transition: color .15s var(--ease); }
  .breadcrumb a:hover { color: var(--green-600); }
  .breadcrumb svg.home {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .breadcrumb .sep { color: var(--slate-300); font-size: var(--fs-xs); }
  .breadcrumb .current { color: var(--slate-900); font-weight: 500; }

  .page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.025em;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .page-subtitle {
    font-size: var(--fs-md);
    color: var(--slate-600);
    line-height: 1.5;
    max-width: 540px;
  }

  .hero-stats {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 20px;
  }
  .hero-stat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: var(--fs-base);
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
  }
  .hero-stat strong {
    color: var(--slate-900);
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .hero-stat .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px var(--green-50);
  }
  .hero-stat svg {
    width: 13px; height: 13px;
    stroke: var(--slate-500); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  /* ================================================================
     LAYOUT — sidebar + main
     ================================================================ */
  .layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    margin: 24px 0 80px;
  }

  /* ================================================================
     FILTERS SIDEBAR
     ================================================================ */
  .filters {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    align-self: start;
    overflow: hidden;
  }
  .filters-head {
    display: flex; align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--slate-100);
  }
  .filters-title {
    flex: 1; min-width: 0;
    font-size: var(--fs-base); font-weight: 700;
    color: var(--slate-900);
    display: flex; align-items: center; gap: 8px;
  }
  .filters-title svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    color: var(--slate-600);
  }
  .filter-count-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px;
    background: var(--green); color: var(--white);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 700;
  }
  .clear-filters {
    background: transparent;
    border: none;
    font-size: var(--fs-xs); font-weight: 500;
    color: var(--slate-500);
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 6px;
    border-radius: var(--radius-xs);
    transition: all .15s var(--ease);
  }
  .clear-filters:hover { background: var(--slate-100); color: var(--slate-900); }
  .clear-filters svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
  }

  .filter-group {
    padding: 16px 18px;
    border-bottom: 1px solid var(--slate-100);
  }
  .filter-group:last-child { border-bottom: none; }
  .filter-group-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
  }
  .filter-group-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--slate-500);
    display: flex; align-items: center; gap: 6px;
  }

  /* Info tooltip on filter labels */
  .label-tip {
    position: relative;
    display: inline-flex; align-items: center;
    cursor: help;
    color: var(--slate-300);
    transition: color .15s var(--ease);
  }
  .label-tip:hover { color: var(--slate-600); }
  .label-tip svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
  .label-tip::before {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    background: var(--slate-900);
    color: var(--white);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.45;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s var(--ease), visibility .15s var(--ease);
    z-index: 20;
    box-shadow: 0 8px 24px -6px rgba(0,0,0,.25);
  }
  .label-tip::after {
    content: '';
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--slate-900);
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s var(--ease), visibility .15s var(--ease);
  }
  .label-tip:hover::before, .label-tip:hover::after {
    opacity: 1; visibility: visible;
  }

  /* Categories hierarchical navigation */
  .cat-back {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    margin: 0 -8px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--slate-600);
    transition: all .15s var(--ease);
    border: 1px dashed var(--slate-200);
  }
  .cat-back:hover {
    background: var(--slate-50);
    color: var(--slate-900);
    border-color: var(--slate-300);
    border-style: solid;
  }
  .cat-back svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s var(--ease);
  }
  .cat-back:hover svg { transform: translateX(-2px); }
  .cat-back .back-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate-400);
    line-height: 1;
    margin-bottom: 2px;
  }
  .cat-back .back-name { display: block; line-height: 1.2; }

  .cat-list {
    display: flex; flex-direction: column;
    gap: 1px;
    margin: 0 -8px;
  }
  .cat-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-base);
    color: var(--slate-700);
    transition: all .15s var(--ease);
    position: relative;
  }
  .cat-item:hover {
    background: var(--slate-50);
    color: var(--slate-900);
  }
  .cat-item .cat-name { flex: 1; min-width: 0; }
  .cat-item .cat-count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 999px;
    font-feature-settings: 'tnum';
    font-weight: 500;
  }
  .cat-item .cat-arrow {
    width: 13px; height: 13px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s var(--ease);
    opacity: 0;
  }
  .cat-item:hover .cat-arrow { opacity: 1; transform: translateX(2px); }

  .cat-item.is-active {
    color: var(--green-dark);
    font-weight: 700;
  }
  .filter-toggle {
    background: transparent; border: none;
    color: var(--slate-400);
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-xs);
    transition: all .15s var(--ease);
  }
  .filter-toggle:hover { background: var(--slate-100); color: var(--slate-700); }
  .filter-toggle svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    transition: transform .2s var(--ease);
  }
  .filter-group.is-collapsed .filter-toggle svg { transform: rotate(-90deg); }
  .filter-group.is-collapsed .filter-body { display: none; }

  /* Search input within sidebar */
  .filter-search-wrap {
    position: relative;
  }
  .filter-search-wrap input {
    width: 100%; height: 38px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    font-family: inherit; font-size: var(--fs-base);
    color: var(--slate-900);
    transition: all .15s var(--ease);
  }
  .filter-search-wrap input::placeholder { color: var(--slate-400); }
  .filter-search-wrap input:focus {
    outline: none; background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(56,173,78,.12);
  }
  .filter-search-wrap svg {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    pointer-events: none;
  }

  /* Score segmented pills - one row */
  .score-segment {
    display: flex;
    gap: 4px;
    align-items: stretch;
  }
  .score-seg-mark {
    width: 34px; height: 34px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .score-seg-mark img { width: 20px; height: 20px; object-fit: contain; }
  .score-seg-btn {
    flex: 1;
    min-width: 0;
    height: 34px;
    padding: 0 4px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs); font-weight: 600;
    color: var(--slate-700);
    transition: all .15s var(--ease);
    font-family: inherit;
    cursor: pointer;
  }
  .score-seg-btn:hover {
    border-color: var(--slate-300);
    color: var(--slate-900);
  }
  .score-seg-btn.is-active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: var(--white);
  }

  /* Star rating filter */
  .star-filter {
    display: flex; flex-direction: column; gap: 6px;
  }
  .star-filter-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    transition: all .15s var(--ease);
  }
  .star-filter-row:hover { border-color: var(--slate-300); background: var(--slate-50); }
  .star-filter-row input { display: none; }
  .star-filter-row .stars { display: inline-flex; gap: 1px; }
  .star-filter-row .stars svg { width: 13px; height: 13px; fill: var(--amber-500); }
  .star-filter-row .stars svg.empty { fill: var(--slate-200); }
  .star-filter-row .label {
    font-size: var(--fs-xs);
    color: var(--slate-700);
    flex: 1;
  }
  .star-filter-row .count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-feature-settings: 'tnum';
  }
  .star-filter-row.is-active {
    border-color: var(--green);
    background: var(--green-50);
  }
  .star-filter-row.is-active .label { color: var(--green-dark); font-weight: 600; }

  /* Checkbox list */
  .check-list {
    display: flex; flex-direction: column;
    gap: 2px;
    margin: 0 -6px;
  }
  .check-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .15s var(--ease);
    user-select: none;
  }
  .check-item:hover { background: var(--slate-50); }
  .check-item input { display: none; }
  .check-box {
    width: 16px; height: 16px;
    border: 1.5px solid var(--slate-300);
    border-radius: var(--radius-xs);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .15s var(--ease);
  }
  .check-box svg {
    width: 10px; height: 10px;
    stroke: var(--white); fill: none; stroke-width: 3;
    stroke-linecap: round; stroke-linejoin: round;
    opacity: 0;
    transition: opacity .12s var(--ease);
  }
  .check-item input:checked + .check-box {
    background: var(--green);
    border-color: var(--green);
  }
  .check-item input:checked + .check-box svg { opacity: 1; }
  .check-item .check-label {
    font-size: var(--fs-base);
    color: var(--slate-700);
    flex: 1;
  }
  .check-item input:checked ~ .check-label { color: var(--slate-900); font-weight: 500; }
  .check-item .check-count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-feature-settings: 'tnum';
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 999px;
  }

  /* See more link */
  .see-more {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 10px;
    font-size: var(--fs-xs); font-weight: 500;
    color: var(--green-600);
    background: transparent; border: none;
    padding: 4px 0;
  }
  .see-more svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
    transition: transform .2s var(--ease);
  }
  .see-more:hover svg { transform: translateY(1px); }

  /* ================================================================
     RESULTS TOOLBAR
     ================================================================ */
  .results-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .results-count {
    font-size: var(--fs-base);
    color: var(--slate-600);
  }
  .results-count strong {
    color: var(--slate-900);
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .toolbar-right {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
  }

  .view-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 3px;
    box-shadow: var(--shadow-sm);
  }
  .view-btn {
    width: 32px; height: 30px;
    background: transparent; border: none;
    border-radius: var(--radius-xs);
    color: var(--slate-500);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .15s var(--ease);
  }
  .view-btn:hover { color: var(--slate-900); }
  .view-btn.is-active {
    background: var(--slate-900);
    color: var(--white);
  }
  .view-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

  .sort-select {
    appearance: none;
    height: 36px;
    padding: 0 32px 0 14px;
    background: var(--white)
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="%2364748B" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>')
      no-repeat right 10px center / 12px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: var(--fs-base);
    color: var(--slate-700);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }
  .sort-select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(56,173,78,.15);
  }

  /* Active filter chips */
  .active-filters {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 16px;
  }
  .active-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 6px 5px 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 500;
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
  }
  .active-chip .chip-key {
    color: var(--slate-500);
    font-weight: 400;
  }
  .active-chip .chip-x {
    width: 18px; height: 18px;
    background: var(--slate-100);
    border: none; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--slate-500);
    transition: all .15s var(--ease);
  }
  .active-chip .chip-x:hover { background: var(--slate-900); color: var(--white); }
  .active-chip .chip-x svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* ================================================================
     COMPANY CARD
     ================================================================ */
  .companies-list {
    display: flex; flex-direction: column;
    gap: 12px;
  }

  .company-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
    transition: all .2s var(--ease);
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    position: relative;
  }
  .company-card:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-1px);
  }

  .company-card.is-claimed {
    border-color: var(--green-100);
    background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 30%);
  }
  .company-card.is-claimed:hover { border-color: var(--green-200); }

  .cc-logo {
    width: 72px; height: 72px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .cc-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .cc-body {
    display: flex; flex-direction: column;
    gap: 14px;
    min-width: 0;
  }

  .cc-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px;
  }
  .cc-id { min-width: 0; }
  .cc-title-row {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
  }
  .cc-name {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.005em;
    transition: color .15s var(--ease);
  }
  .cc-name a:hover { color: var(--green-600); }

  .badge-verified {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px 2px 6px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--green-dark);
  }
  .badge-verified svg { width: 11px; height: 11px; fill: var(--green); }

  .badge-claimed {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px;
    background: var(--blue-50);
    border: 1px solid #DBEAFE;
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: #1D4ED8;
  }
  .badge-claimed svg { width: 11px; height: 11px; fill: var(--blue-500); }

  /* .badge-pending — REMOVED (was duplicating design-system.css with the
     same colors + an animated dot). Single source of truth is now
     design-system.css → .badge-pending / ::before. If you need the pulse
     animation here, scope it to a different class (e.g. .badge-pending--pulse)
     so it doesn't shadow the canonical rule. */

  .cc-meta-row {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 4px 12px;
    font-size: var(--fs-xs);
    color: var(--slate-500);
  }
  .cc-meta-pill {
    display: inline-flex; align-items: center; gap: 5px;
  }
  .cc-meta-pill svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .8; }
  .cc-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-300); }

  .cc-actions {
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
  }
  .cc-icon-btn {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--slate-500);
    transition: all .15s var(--ease);
  }
  .cc-icon-btn:hover {
    border-color: var(--slate-300);
    color: var(--slate-900);
    background: var(--slate-50);
  }
  .cc-icon-btn.is-saved {
    background: var(--green-50);
    border-color: var(--green-200);
    color: var(--green-dark);
  }
  .cc-icon-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .cc-icon-btn.is-saved svg { fill: currentColor; }

  /* Stats row */
  .cc-stats {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .cc-stat {
    padding: 10px 14px;
    border-right: 1px solid var(--slate-100);
    display: flex; flex-direction: column; gap: 3px;
  }
  .cc-stat:last-child { border-right: none; }

  /* Featured FB-Score stat: big icon on the left, label + value stacked on the right. */
  .cc-stat-fb {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .cc-stat-fb-mark {
    width: 40px; height: 40px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .cc-stat-fb-body {
    display: flex; flex-direction: column; gap: 3px;
    min-width: 0;
  }
  .cc-stat-fb .cc-stat-value { display: inline-flex; align-items: center; gap: 6px; }
  .cc-stat-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate-500);
  }
  .cc-stat-value {
    display: flex; align-items: center; gap: 6px;
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--slate-900);
    font-feature-settings: 'tnum';
    letter-spacing: -.005em;
  }
  .cc-stat-value .fb-mark {
    width: 16px; height: 16px;
    object-fit: contain;
  }
  .cc-stat-value .grade {
    font-size: var(--fs-xs); font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
    background: var(--green-50);
    color: var(--green-dark);
    border: 1px solid var(--green-200);
  }
  .cc-stat-value .grade.muted {
    background: var(--slate-100);
    color: var(--slate-500);
    border-color: var(--slate-200);
  }
  .cc-stat-value .stars { display: inline-flex; gap: 1px; margin-right: 2px; }
  .cc-stat-value .stars svg { width: 11px; height: 11px; fill: var(--amber-500); }
  .cc-stat-value .stars svg.empty { fill: var(--slate-200); }
  .cc-stat-sub {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-weight: 400;
  }

  /* Footer row of card */
  .cc-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cc-contacts {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 4px 6px;
  }
  .cc-contact {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    color: var(--slate-600);
    transition: all .15s var(--ease);
  }
  .cc-contact:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: var(--green-50);
  }
  .cc-contact svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .cc-cta-row {
    display: flex; align-items: center; gap: 8px;
  }
  .cc-compare {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--fs-xs);
    color: var(--slate-600);
    cursor: pointer;
    user-select: none;
  }
  .cc-compare:hover { color: var(--slate-900); }
  .cc-compare input { display: none; }
  .cc-compare .check-box { width: 14px; height: 14px; }
  .cc-compare .check-box svg { width: 8px; height: 8px; stroke-width: 3.5; }

  .cc-view-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    background: var(--slate-900);
    color: var(--white);
    border: none; border-radius: var(--radius-sm);
    font-size: var(--fs-xs); font-weight: 600;
    transition: all .15s var(--ease);
  }
  .cc-view-btn:hover { background: var(--slate-800); }
  .cc-view-btn svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
    transition: transform .2s var(--ease);
  }
  .cc-view-btn:hover svg { transform: translateX(2px); }

  /* ================================================================
     PAGINATION
     ================================================================ */
  .pagination {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
    flex-wrap: wrap;
    gap: 16px;
  }
  .pagination-info {
    font-size: var(--fs-base);
    color: var(--slate-500);
  }
  .pagination-info strong { color: var(--slate-900); font-weight: 600; }
  .pager {
    display: flex; gap: 4px;
  }
  .pager-btn {
    min-width: 36px; height: 36px;
    padding: 0 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: var(--fs-base); font-weight: 500;
    color: var(--slate-600);
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
    transition: all .15s var(--ease);
  }
  .pager-btn:hover:not(:disabled) {
    border-color: var(--slate-300);
    color: var(--slate-900);
  }
  .pager-btn.is-active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: var(--white);
  }
  .pager-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
  }
  .pager-btn svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
  }

  /* ================================================================
     COMPARE BAR (sticky bottom when items selected)
     ================================================================ */
  .compare-bar {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--slate-900);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 12px 12px 12px 20px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,.4);
    z-index: 50;
    transition: transform .3s var(--ease-out);
    max-width: calc(100% - 48px);
  }
  .compare-bar.is-active { transform: translateX(-50%) translateY(0); }
  .compare-bar-text { font-size: var(--fs-base); }
  .compare-bar-text strong { font-weight: 700; }
  .compare-stack {
    display: flex; align-items: center;
    margin: 0 4px;
  }
  .compare-stack img {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--white);
    padding: 3px;
    margin-left: -8px;
    border: 2px solid var(--slate-900);
    object-fit: contain;
  }
  .compare-stack img:first-child { margin-left: 0; }
  .compare-bar .compare-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green); color: var(--white);
    border: none; padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-base); font-weight: 600;
    transition: background .15s var(--ease);
  }
  .compare-bar .compare-cta:hover { background: var(--green-hover); }
  .compare-bar .compare-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
  .compare-bar .clear-x {
    width: 32px; height: 32px;
    background: rgba(255,255,255,.1);
    border: none; border-radius: var(--radius-sm);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s var(--ease);
  }
  .compare-bar .clear-x:hover { background: rgba(255,255,255,.2); }
  .compare-bar .clear-x svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* ================================================================
     MOBILE HEADER ELEMENTS (hidden on desktop)
     ================================================================ */
  body.has-drawer-open, body.has-filters-open { overflow: hidden; }

  .mobile-toggle, .avatar-btn-mobile, .lang-toggle-mobile,
  .mobile-search-row, .mobile-login {
    display: none;
  }

  .mobile-toggle {
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    background: transparent; border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background .15s var(--ease);
  }
  .mobile-toggle:hover { background: var(--slate-100); }
  .mt-line { width: 22px; height: 2px; background: var(--slate-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
  .mobile-toggle.is-active .mt-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.is-active .mt-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-toggle.is-active .mt-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .avatar-btn-mobile {
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: transparent; border: none;
    border-radius: 50%;
    padding: 0;
  }
  .avatar-btn-mobile .avatar-img { width: 32px; height: 32px; }

  .lang-toggle-mobile {
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: transparent; border: none;
    border-radius: var(--radius-sm);
    padding: 0;
    transition: background .15s var(--ease);
  }
  .lang-toggle-mobile:hover { background: var(--slate-100); }
  .lang-toggle-mobile .flag { width: 22px; height: 22px; }

  .mobile-login {
    height: 40px; padding: 0 12px;
    align-items: center;
    font-size: var(--fs-base); font-weight: 600;
    color: var(--slate-900);
    border-radius: var(--radius-sm);
  }
  .mobile-login:hover { background: var(--slate-100); }

  /* Mobile search row (separate row beneath main header) */
  .mobile-search-row {
    border-top: 1px solid var(--slate-100);
    background: var(--white);
  }
  .mobile-search-inner {
    display: flex; align-items: center; gap: 8px;
    height: var(--mobile-row2);
    padding: 0 16px;
  }
  .mobile-search-wrap {
    flex: 1; position: relative;
  }
  .mobile-search-wrap input {
    width: 100%;
    height: 40px;
    padding: 0 14px 0 40px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    font-family: inherit; font-size: var(--fs-md);
    color: var(--slate-900);
    transition: all .15s var(--ease);
  }
  .mobile-search-wrap input::placeholder { color: var(--slate-400); }
  .mobile-search-wrap input:focus { outline: none; background: var(--white); border-color: var(--green); box-shadow: 0 0 0 3px rgba(56,173,78,.15); }
  .mobile-search-wrap > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--slate-400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
  .mobile-cta-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green); color: white;
    border: none; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }
  .mobile-cta-icon:hover { background: var(--green-hover); }
  .mobile-cta-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

  /* Mobile drawer */
  .md-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.55);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility 0s linear .3s;
  }
  .md-backdrop.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }

  .mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 380px;
    background: var(--white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-drawer);
  }
  .mobile-drawer.is-open { transform: translateX(0); }
  .md-header {
    position: sticky; top: 0;
    background: var(--white); z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--slate-200);
  }
  .md-header .logo img { height: 30px; }
  .md-close {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    border-radius: var(--radius-sm);
    color: var(--slate-700);
    transition: background .15s var(--ease);
  }
  .md-close:hover { background: var(--slate-100); color: var(--slate-900); }
  .md-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

  .md-body { flex: 1; padding-bottom: 16px; }
  .md-section { padding: 8px; border-bottom: 1px solid var(--slate-100); }
  .md-section:last-of-type { border-bottom: none; }
  .md-section-label {
    font-size: var(--fs-xs); font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--slate-400);
    padding: 14px 12px 6px;
  }
  .md-nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 12px;
    font-size: var(--fs-lg); font-weight: 600;
    color: var(--slate-900);
    border-radius: var(--radius-sm);
    transition: background .15s var(--ease);
  }
  .md-nav-item:hover { background: var(--slate-50); }
  .md-nav-item.is-active { color: var(--green-600); }
  .md-nav-item .arrow-right {
    margin-left: auto;
    width: 16px; height: 16px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .md-actions { padding: 8px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
  .md-action-card {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: background .15s var(--ease), border-color .15s var(--ease), transform .1s var(--ease);
  }
  .md-action-card:active { transform: translateY(1px); }
  .md-action-primary { background: var(--green); color: white; box-shadow: var(--shadow-sm); }
  .md-action-primary:hover { background: var(--green-hover); }
  .md-action-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.2); color: white;
  }
  .md-action-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .md-action-text { flex: 1; min-width: 0; }
  .md-action-title { display: block; font-size: var(--fs-md); font-weight: 600; line-height: 1.3; }
  .md-action-desc { display: block; font-size: var(--fs-xs); line-height: 1.35; margin-top: 2px; opacity: .85; }

  .md-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px;
    font-size: var(--fs-md); color: var(--slate-700); font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background .15s var(--ease);
  }
  .md-link:hover { background: var(--slate-50); color: var(--slate-900); }
  .md-link svg.md-link-icon { width: 18px; height: 18px; stroke: var(--slate-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
  .md-link .md-link-arrow { margin-left: auto; width: 14px; height: 14px; stroke: var(--slate-400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .md-lang-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; gap: 12px;
  }
  .md-lang-row > span {
    font-size: var(--fs-base); font-weight: 500; color: var(--slate-700);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .md-lang-row > span svg { width: 16px; height: 16px; stroke: var(--slate-500); fill: none; stroke-width: 2; }
  .md-lang-toggle {
    display: inline-flex;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 3px; gap: 2px;
  }
  .md-lang-toggle button {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: none;
    padding: 8px 14px;
    font-size: var(--fs-base); font-weight: 600; color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: all .15s var(--ease);
    font-family: inherit; cursor: pointer;
  }
  .md-lang-toggle button.is-active { background: white; color: var(--slate-900); box-shadow: var(--shadow-sm); }
  .md-lang-toggle button .flag { width: 16px; height: 16px; }

  .md-footer {
    padding: 18px 16px;
    background: var(--green-50);
    display: flex; flex-direction: column; gap: 12px;
    border-top: 1px solid var(--green-100);
  }
  .md-contact {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--slate-700); font-size: var(--fs-base);
  }
  .md-contact:hover { color: var(--green-600); }
  .md-contact svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .7; }

  /* ================================================================
     FILTERS — MOBILE BOTTOM SHEET
     ================================================================ */
  .filters-trigger {
    display: none;
    align-items: center; justify-content: center; gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: var(--slate-900);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-base); font-weight: 600;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: background .15s var(--ease);
  }
  .filters-trigger:hover { background: var(--slate-800); }
  .filters-trigger svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .filters-trigger .trigger-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px;
    padding: 0 6px;
    background: var(--green); color: var(--white);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 700;
  }

  .filters-mobile-close {
    display: none;
    width: 36px; height: 36px;
    background: var(--slate-100); border: none;
    border-radius: 50%;
    color: var(--slate-700);
    align-items: center; justify-content: center;
    transition: background .15s var(--ease);
  }
  .filters-mobile-close:hover { background: var(--slate-200); }
  .filters-mobile-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

  .filters-grab {
    display: none;
    width: 40px; height: 4px;
    background: var(--slate-300);
    border-radius: 999px;
    margin: 10px auto 6px;
  }

  .filters-mobile-foot {
    display: none;
    position: sticky; bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--slate-100);
    padding: 12px 16px;
    gap: 8px;
  }
  .filters-apply-btn {
    flex: 1;
    height: 44px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-base); font-weight: 600;
    box-shadow: var(--shadow-cta);
    transition: background .15s var(--ease);
  }
  .filters-apply-btn:hover { background: var(--green-hover); }

  /* ================================================================
     RESPONSIVE
     ================================================================ */
  @media (max-width: 1024px) {
    /* Layout single column; filters become bottom sheet */
    .layout { grid-template-columns: 1fr; }
    .filters {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      top: auto;
      width: 100%; max-width: none;
      max-height: 88vh;
      border-radius: 18px 18px 0 0;
      border-bottom: none;
      transform: translateY(100%);
      visibility: hidden;
      pointer-events: none;
      z-index: 1000;
      transition: transform .35s var(--ease-out), visibility 0s linear .35s;
      overflow-y: auto;
      overscroll-behavior: contain;
      box-shadow: var(--shadow-bottom-sheet);
      display: flex; flex-direction: column;
    }
    .filters.is-open {
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
      transition: transform .35s var(--ease-out), visibility 0s linear 0s;
    }
    .filters-grab { display: block; }
    .filters-head {
      position: sticky; top: 0;
      background: var(--white); z-index: 5;
      padding: 14px 22px 16px;
    }
    .filters-mobile-close { display: inline-flex; }
    .filters-mobile-foot { display: flex; }
    .filters-trigger { display: inline-flex; }

    /* Lock body scroll when filter sheet is open */
    body.has-filters-open { overflow: hidden; }

    /* Toolbar */
    .results-toolbar { gap: 8px; flex-wrap: wrap; }
    .results-count { width: 100%; order: -1; }
    .toolbar-right { width: 100%; gap: 8px; }
    .toolbar-right .sort-select { flex: 1; min-width: 0; }
  }

  /* === MOBILE: ≤ 860px === */
  @media (max-width: 860px) {
    /* Hide desktop header bits */
    .utility-bar,
    .main-nav,
    .header-search,
    .header-actions .cta-primary,
    .header-actions .lang-toggle,
    .header-actions .avatar-btn { display: none; }

    /* Show mobile header bits */
    .mobile-toggle, .lang-toggle-mobile, .avatar-btn-mobile { display: inline-flex; }
    .mobile-search-row { display: block; }

    .main-header-inner { height: var(--mobile-row1); gap: 0; justify-content: space-between; }
    .logo img { height: 28px; }
    .container { padding: 0 16px; }
    .header-actions { gap: 2px; }

    /* Page hero */
    .page-hero { padding: 22px 20px 24px; margin-top: 16px; }
    .page-title { font-size: 26px; letter-spacing: -.02em; }
    .page-subtitle { font-size: var(--fs-base); }
    .page-hero::before { width: 240px; height: 240px; top: -50px; right: -40px; }

    /* Hero stats — wrap into pills */
    .hero-stats { gap: 6px 8px; }
    .hero-stat { padding: 6px 10px; font-size: var(--fs-xs); }

    /* Cards — compact mobile layout.
       Layout shift vs desktop: the card becomes a 3-row grid where stats and
       footer span the FULL card width (not offset by the logo column). Logo
       and head stay on the top row, side by side. Without this, stats and
       contacts were squeezed into ~264px (card minus logo+gap) leaving the
       left edge under the logo unused. */
    .company-card {
      display: grid;
      grid-template-areas:
        "logo head"
        "stats stats"
        "foot foot";
      grid-template-columns: 56px 1fr;
      column-gap: 12px;
      row-gap: 12px;
      padding: 14px;
    }
    .cc-logo  { grid-area: logo; width: 56px; height: 56px; }
    /* display:contents lets .cc-body's children participate directly in
       the parent grid, so we can place them in grid-areas without changing
       the HTML structure. */
    .cc-body  { display: contents; }
    .cc-head  { grid-area: head; }
    .cc-stats { grid-area: stats; }
    .cc-foot  { grid-area: foot; }

    .cc-name { font-size: var(--fs-md); }

    /* Meta row — tighter, hide dot separators (chips with spacing read fine). */
    .cc-meta-row { gap: 4px 8px; font-size: var(--fs-xs); }
    .cc-meta-pill svg { width: 10px; height: 10px; }
    .cc-meta-dot { display: none; }

    /* STATS — horizontal 3-column on mobile (was stacked 1fr).
       Stays LEFT-aligned, not centered — matches the desktop concept. */
    .cc-stats {
      grid-template-columns: 1.2fr 1fr 1fr;
    }
    .cc-stat {
      padding: 8px 10px;
      border-right: 1px solid var(--slate-100);
      border-bottom: none !important;
      /* No text-align or align-items overrides — inherit the desktop
         left-alignment, since center-aligned labels broke the visual concept. */
    }
    .cc-stat:last-child { border-right: none; }

    /* FB Score cell — keep desktop's icon-LEFT row layout (icon | label/value).
       Shrink the icon (40 → 28) so it fits the narrower mobile column without
       changing the concept. */
    .cc-stat-fb { gap: 8px; }
    .cc-stat-fb-mark { width: 28px; height: 28px; }

    /* Stat label/value/sub — smaller on mobile, still left-aligned */
    .cc-stat-label { font-size: 9px; }
    .cc-stat-value { font-size: var(--fs-base); gap: 4px; }
    .cc-stat-value .grade { font-size: 10px; padding: 1px 5px; }
    .cc-stat-value .stars svg { width: 9px; height: 9px; }
    /* Sub-text ("8 reviews", "2 closed cases") drops on mobile — the value
       alone is the trust signal; the explainer belongs on the detail page. */
    .cc-stat-sub { display: none; }
    /* Hide the FB grade pill on mobile to leave room for "10" in the narrow
       column. The grade is decorative on the listing view. */
    .cc-stat-fb .cc-stat-value .grade { display: none; }

    /* Footer: full-width row (contacts left, View profile right). */
    .cc-foot {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
    .cc-cta-row { justify-content: flex-end; }
    .cc-actions { display: none; }

    /* Contacts: icon-only round buttons (was: text+icon pills).
       Saves ~80px per card by hiding the URL/email/phone text. */
    .cc-contacts { gap: 6px; }
    .cc-contact {
      width: 34px; height: 34px;
      padding: 0;
      justify-content: center;
      font-size: 0;
      border-radius: 50%;
      gap: 0;
    }
    .cc-contact svg { width: 14px; height: 14px; }

    .cc-view-btn { padding: 8px 12px; font-size: var(--fs-xs); }

    /* Toolbar: Filters + Sort SIDE BY SIDE (was: stacked vertically). */
    .toolbar-right { flex-wrap: nowrap; }
    .toolbar-right .filters-trigger { flex: 0 0 auto; }
    .toolbar-right .sort-form { flex: 1; min-width: 0; }
    .toolbar-right .sort-form .sort-select { width: 100%; }

    /* Pagination */
    .pagination { flex-direction: column; align-items: stretch; }
    .pager { justify-content: center; flex-wrap: wrap; }
  }

  @media (max-width: 480px) {
    .mobile-drawer { max-width: 100%; }
    .lang-toggle-mobile { width: 36px; height: 36px; }
    .lang-toggle-mobile .flag { width: 20px; height: 20px; }
    .mobile-toggle { width: 36px; }
    .logo img { height: 26px; }
    .page-title { font-size: 22px; }
    .compare-bar { padding: 10px; gap: 10px; }
    .compare-bar .compare-cta { padding: 8px 10px; font-size: var(--fs-xs); }
    .compare-bar-text { font-size: var(--fs-xs); }
  }

  /* ================================================================
     INTRO ANIMATIONS
     ================================================================ */
  .anim-in {
    opacity: 0; transform: translateY(8px);
    animation: fadeUp .6s var(--ease-out) forwards;
  }
  .anim-in.d1 { animation-delay: .04s; }
  .anim-in.d2 { animation-delay: .08s; }
  .anim-in.d3 { animation-delay: .12s; }
  .anim-in.d4 { animation-delay: .16s; }
  .anim-in.d5 { animation-delay: .20s; }
  .anim-in.d6 { animation-delay: .24s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

