  /* MAIN LAYOUT — SIDEBAR + CONTENT */
  .ywp-help .help-layout {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 40px 24px 60px;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
      align-items: flex-start;
  }

  help-left-menu {
      position: sticky;
      top: 20px;
  }

  /* SIDEBAR */
  .ywp-help .help-sidebar {
      background: var(--bg-sidebar);
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      padding: 20px;

  }

  .ywp-help .help-sidebar-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
      padding: 0 8px;
  }

  .ywp-help .help-sidebar-home {
      display: block;
      padding: 10px 12px;
      font-size: 15px;
      font-weight: 700;
      color: var(--primary);
      border-radius: 6px;
      margin-bottom: 12px;
      background: var(--primary-light);
  }

  .ywp-help .help-sidebar-home:hover {
      background: var(--primary);
      color: white;
      text-decoration: none;
  }

  .ywp-help .help-sidebar-home.current {
      background: var(--primary);
      color: white;
      cursor: default;
  }

  .ywp-help .help-sidebar-home.current:hover {
      background: var(--primary);
      text-decoration: none;
  }

  .ywp-help .help-sidebar-nav {
      list-style: none;
  }

  .ywp-help .help-sidebar-category {
      border-top: 1px solid var(--border-soft);
  }

  .ywp-help .help-sidebar-category:first-child {
      border-top: none;
  }

  .ywp-help .help-sidebar-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 8px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
      font-family: inherit;
      transition: color 0.15s;
  }

  .ywp-help .help-sidebar-toggle:hover {
      color: var(--primary);
  }

  .ywp-help .help-sidebar-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      color: var(--text-muted);
      transition: transform 0.2s ease;
      flex-shrink: 0;
  }

  .ywp-help .help-sidebar-toggle-icon svg {
      width: 14px;
      height: 14px;
      stroke-width: 2.5;
  }

  .ywp-help .help-sidebar-category.expanded .help-sidebar-toggle-icon {
      transform: rotate(180deg);
      color: var(--primary);
  }

  .ywp-help .help-sidebar-articles {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  .ywp-help .help-sidebar-category.expanded .help-sidebar-articles {
      max-height: 600px;
      padding-bottom: 8px;
  }

  .ywp-help .help-sidebar-articles li {
      margin: 0;
  }

  .ywp-help .help-sidebar-articles a {
      display: block;
      padding: 7px 12px 7px 24px;
      font-size: 13.5px;
      color: var(--text-body);
      border-radius: 4px;
      line-height: 1.4;
      transition: all 0.15s;
  }

  .ywp-help .help-sidebar-articles a:hover {
      background: white;
      color: var(--primary);
      text-decoration: none;
  }

  .ywp-help .help-sidebar-articles a.current {
      background: var(--primary);
      color: white;
      font-weight: 600;
  }

  .ywp-help .help-sidebar-articles a.coming-soon {
      color: var(--text-muted);
      cursor: default;
      opacity: 0.7;
  }

  .ywp-help .help-sidebar-articles a.coming-soon::after {
      content: ' (soon)';
      font-size: 11px;
      color: var(--text-muted);
  }

  .ywp-help .help-sidebar-articles a.coming-soon:hover {
      background: transparent;
      color: var(--text-muted);
      text-decoration: none;
  }

  /* MOBILE SIDEBAR TOGGLE */
  .ywp-help .help-sidebar-mobile-toggle {
      display: none;
      width: 100%;
      padding: 14px 16px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      margin-bottom: 16px;
      align-items: center;
      justify-content: space-between;
  }

  .ywp-help .help-sidebar-mobile-toggle svg {
      width: 18px;
      height: 18px;
      stroke-width: 2.5;
      transition: transform 0.2s;
  }

  .ywp-help .help-sidebar-mobile-toggle.open svg {
      transform: rotate(180deg);
  }