
  html, body { background: var(--slate-50); }
  .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
  main.container { padding-bottom: 32px; }

  /* ============================================================
     PAGE HERO (matches archives)
     ============================================================ */
  .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;
  }

  /* Inline search inside hero */
  .cat-hero-search {
    margin-top: 22px;
    max-width: 480px;
    position: relative;
  }
  .cat-hero-search svg.icon {
    position: absolute;
    left: 14px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    pointer-events: none;
  }
  .cat-hero-search input {
    width: 100%; height: 42px;
    padding: 0 14px 0 40px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: inherit;
    font-size: var(--fs-base);
    color: var(--slate-900);
    outline: none;
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  }
  .cat-hero-search input::placeholder { color: var(--slate-400); }
  .cat-hero-search input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(56,173,78,.15);
  }

  /* ============================================================
     SECTION HEADS
     ============================================================ */
  .home-section { padding: 40px 0 0; }
  .section-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.012em;
  }
  .section-head p {
    font-size: var(--fs-base);
    color: var(--slate-500);
    margin-top: 4px;
  }

  /* ============================================================
     FEATURED ROW (top 4 categories with hero treatment)
     ============================================================ */
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }
  @media (max-width: 1024px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .featured-grid { grid-template-columns: 1fr; } }

  .featured-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }
  .featured-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .featured-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(56,173,78,.08), transparent 70%);
    pointer-events: none;
  }
  .featured-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .featured-icon svg {
    width: 22px; height: 22px;
    stroke: currentColor; fill: none; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .featured-name {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.3;
  }
  .featured-stats {
    display: flex; align-items: center; gap: 6px;
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-feature-settings: 'tnum';
  }
  .featured-stats b { color: var(--slate-900); font-weight: 700; }
  .featured-stats .meta-dot { width: 3px; height: 3px; background: var(--slate-300); border-radius: 50%; }

  /* ============================================================
     ALL CATEGORIES GRID
     ============================================================ */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 1024px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px)  { .cat-grid { grid-template-columns: 1fr; } }

  .cat-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column; gap: 14px;
  }
  .cat-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .cat-head {
    display: flex; align-items: center; gap: 12px;
  }
  .cat-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    color: var(--slate-700);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .15s var(--ease);
  }
  .cat-card:hover .cat-icon {
    background: var(--green-50);
    color: var(--green-dark);
  }
  .cat-icon svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none; stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .cat-info { flex: 1; min-width: 0; }
  .cat-name {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.3;
  }
  .cat-stats {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    margin-top: 2px;
    display: flex; align-items: center; gap: 6px;
    font-feature-settings: 'tnum';
  }
  .cat-stats b { color: var(--slate-700); font-weight: 600; }
  .cat-stats .meta-dot { width: 3px; height: 3px; background: var(--slate-300); border-radius: 50%; }
  .cat-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--slate-50);
    color: var(--slate-500);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .15s var(--ease);
  }
  .cat-card:hover .cat-arrow {
    background: var(--green);
    color: var(--white);
    transform: translateX(2px);
  }
  .cat-arrow svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2.2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  .cat-desc {
    font-size: var(--fs-base);
    color: var(--slate-600);
    line-height: 1.55;
  }

  .cat-subs {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--slate-100);
  }
  .cat-sub {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: var(--fs-xs);
    color: var(--slate-700);
    font-weight: 500;
    transition: all .12s var(--ease);
  }
  .cat-sub:hover {
    border-color: var(--green-200);
    color: var(--green-dark);
    background: var(--green-50);
  }
  .cat-sub-count {
    color: var(--slate-400);
    font-size: 10px;
    font-feature-settings: 'tnum';
  }
  .cat-sub:hover .cat-sub-count { color: var(--green-dark); }

  /* CTA at bottom */
  .request-cat {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .request-cat-text {
    flex: 1; min-width: 220px;
  }
  .request-cat-title {
    font-size: var(--fs-md); font-weight: 700; color: var(--slate-900);
    margin-bottom: 4px;
  }
  .request-cat-sub {
    font-size: var(--fs-base); color: var(--slate-600); line-height: 1.5;
  }
  .request-cat-btn {
    display: inline-flex; align-items: center; gap: 6px;
    height: 38px;
    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;
    text-decoration: none;
    transition: background .15s var(--ease);
    cursor: pointer;
  }
  .request-cat-btn:hover { background: var(--slate-800); }
  .request-cat-btn svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  @media (max-width: 768px) {
    .home-section { padding: 32px 0 0; }
    .section-head h2 { font-size: 20px; }
    .page-title { font-size: 28px; }
  }

  /* ============================================================
     MOBILE — comprehensive padding/gap pass
     ============================================================ */
  @media (max-width: 600px) {
    .container { padding: 0 16px; }
    .page-hero { padding: 28px 16px 24px; }
    .page-title { font-size: 24px; }
    .featured-grid { gap: 12px; }
    .featured-card { padding: 16px; }
    .cat-grid { gap: 10px; }
    .cat-card { padding: 16px; }
    .request-cat-btn { height: 38px; padding: 0 16px; font-size: var(--fs-base); }
  }

